diff --git a/.github/release-please.yml b/.github/release-please.yml index b524fabde98a..d3b1697635a3 100644 --- a/.github/release-please.yml +++ b/.github/release-please.yml @@ -3,33 +3,19 @@ releaseType: java-yoshi manifest: true handleGHRelease: true branches: - - branch: 1.0.x - releaseType: java-backport - bumpMinorPreMajor: true - handleGHRelease: true - - branch: 1.13.x - releaseType: java-backport - manifest: true - handleGHRelease: true - - branch: 1.25.x - releaseType: java-backport - manifest: true - handleGHRelease: true - - branch: 1.37.x - releaseType: java-backport - manifest: true - handleGHRelease: true - - releaseType: java-backport - manifest: true - handleGHRelease: true - branch: 1.53.x - - primaryBranch: main - releaseType: java-backport - manifest: true - handleGHRelease: true - branch: 1.61.x - - primaryBranch: main - releaseType: java-backport - manifest: true - handleGHRelease: true - branch: 1.58.x + - branch: 1.0.x + releaseType: java-backport + bumpMinorPreMajor: true + - branch: 1.13.x + releaseType: java-backport + - branch: 1.25.x + releaseType: java-backport + - branch: 1.37.x + releaseType: java-backport + - branch: 1.53.x + releaseType: java-backport + - branch: 1.61.x + releaseType: java-backport + - branch: 1.58.x + releaseType: java-backport + - branch: protobuf-4.x-rc diff --git a/.github/release/fixture/snapshot/versions-snapshot.txt b/.github/release/fixture/snapshot/versions-snapshot.txt new file mode 100644 index 000000000000..f34ed1cac069 --- /dev/null +++ b/.github/release/fixture/snapshot/versions-snapshot.txt @@ -0,0 +1 @@ +google-cloud-asset:1.2.3:1.2.3 diff --git a/.github/release/partial_release.py b/.github/release/partial_release.py index 3800a164ac9c..b1f4723ca7f1 100644 --- a/.github/release/partial_release.py +++ b/.github/release/partial_release.py @@ -24,7 +24,8 @@ class VersionType(Enum): MAJOR = (1,) MINOR = (2,) - PATCH = 3 + PATCH = (3,) + SNAPSHOT = (4,) @click.group(invoke_without_command=False) @@ -34,6 +35,27 @@ def main(ctx): pass +@main.command() +@click.option( + "--artifact-ids", + required=True, + type=str, + help=""" + Artifact IDs whose version needs to update, separated by comma. + """, +) +@click.option( + "--versions", + required=False, + default="./versions.txt", + type=str, + help=""" + The path to the versions.txt. + """, +) +def bump_snapshot_version(artifact_ids: str, versions: str) -> None: + bump_version(artifact_ids, "snapshot", versions) + @main.command() @click.option( "--artifact-ids", @@ -49,7 +71,7 @@ def main(ctx): default="patch", type=str, help=""" - The type of version bump, one of major, minor or patch. + The type of version bump, one of major, minor, patch. """, ) @click.option( @@ -62,6 +84,9 @@ def main(ctx): """, ) def bump_released_version(artifact_ids: str, version_type: str, versions: str) -> None: + bump_version(artifact_ids, version_type, versions) + +def bump_version(artifact_ids: str, version_type: str, versions: str) -> None: target_artifact_ids = set(artifact_ids.split(",")) version_enum = _parse_type_or_raise(version_type) newlines = [] @@ -95,6 +120,12 @@ def bump_released_version(artifact_ids: str, version_type: str, versions: str) - minor += 1 case VersionType.PATCH: patch += 1 + case VersionType.SNAPSHOT: + # Keep the released version as is. + newlines.append( + f"{artifact_id}:{major}.{minor}.{patch}:{major}.{minor + 1}.0-SNAPSHOT" + ) + continue newlines.append( f"{artifact_id}:{major}.{minor}.{patch}:{major}.{minor}.{patch}" ) diff --git a/.github/release/release_unit_tests.py b/.github/release/release_unit_tests.py index e46192a6c2dd..5cac7dc6dfdd 100644 --- a/.github/release/release_unit_tests.py +++ b/.github/release/release_unit_tests.py @@ -4,7 +4,7 @@ import shutil import tempfile import unittest -from partial_release import bump_released_version +from partial_release import bump_released_version, bump_snapshot_version SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) GOLDEN = os.path.join(SCRIPT_DIR, "testdata") @@ -45,6 +45,22 @@ def test_bump_multiple_versions_success(self): actual = f.read() self.assertEqual(expected, actual) + def test_bump_snapshot_version_success(self): + golden = f"{GOLDEN}/snapshot/versions-snapshot-golden.txt" + with copied_fixtures_dir(f"{FIXTURES}/snapshot"): + runner.invoke( + bump_snapshot_version, + [ + "--artifact-ids=google-cloud-asset", + "--versions=versions-snapshot.txt", + ], + ) + with open(golden) as g: + expected = g.read() + with open("./versions-snapshot.txt") as f: + actual = f.read() + self.assertEqual(expected, actual) + @contextlib.contextmanager def change_dir_to(path: str) -> str: diff --git a/.github/release/testdata/snapshot/versions-snapshot-golden.txt b/.github/release/testdata/snapshot/versions-snapshot-golden.txt new file mode 100644 index 000000000000..db7e117dfa73 --- /dev/null +++ b/.github/release/testdata/snapshot/versions-snapshot-golden.txt @@ -0,0 +1 @@ +google-cloud-asset:1.2.3:1.3.0-SNAPSHOT \ No newline at end of file diff --git a/.github/scripts/update_generation_config.sh b/.github/scripts/update_generation_config.sh index a0b95de6c0df..3f7f46c1c257 100755 --- a/.github/scripts/update_generation_config.sh +++ b/.github/scripts/update_generation_config.sh @@ -18,7 +18,17 @@ function get_latest_released_version() { group_id_url_path="$(sed 's|\.|/|g' <<< "${group_id}")" url="https://repo1.maven.org/maven2/${group_id_url_path}/${artifact_id}/maven-metadata.xml" xml_content=$(curl -s --fail "${url}") - latest=$(xmllint --xpath 'metadata/versioning/latest/text()' - <<< "${xml_content}") + + # 1. Extract all version tags + # 2. Strip the XML tags to leave just the version numbers + # 3. Filter for strictly numbers.numbers.numbers (e.g., 2.54.0) + # 4. Sort by version (V) and take the last one (tail -n 1) + latest=$(echo "${xml_content}" \ + | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' \ + | sed -E 's/<[^>]+>//g' \ + | sort -V \ + | tail -n 1) + if [[ -z "${latest}" ]]; then echo "The latest version of ${group_id}:${artifact_id} is empty." echo "The returned json from maven.org is invalid: ${json_content}" @@ -174,4 +184,4 @@ if [ -z "${pr_num}" ]; then else git push gh pr edit "${pr_num}" --title "${title}" --body "${title}" -fi \ No newline at end of file +fi diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f32c6f561839..8bf29cb93ee1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -127,7 +127,7 @@ jobs: gcr.io/cloud-devrel-public-resources/java-library-generation:"${library_generation_image_tag}" \ /src/library_generation/cli/entry_point.py validate-generation-config env: - library_generation_image_tag: 2.62.3 + library_generation_image_tag: 2.64.2 workspace_name: /workspace # TODO: Uncomment the needed Github Actions diff --git a/.github/workflows/generated_files_sync.yaml b/.github/workflows/generated_files_sync.yaml index 51fa950857e6..bdc114044709 100644 --- a/.github/workflows/generated_files_sync.yaml +++ b/.github/workflows/generated_files_sync.yaml @@ -17,7 +17,7 @@ on: pull_request: name: generation diff env: - library_generation_image_tag: 2.62.3 + library_generation_image_tag: 2.64.2 jobs: root-pom: # root pom.xml does not have diff from generated one diff --git a/.github/workflows/hermetic_library_generation.yaml b/.github/workflows/hermetic_library_generation.yaml index 31a38fbb06be..1716ff0b495d 100644 --- a/.github/workflows/hermetic_library_generation.yaml +++ b/.github/workflows/hermetic_library_generation.yaml @@ -37,7 +37,7 @@ jobs: with: fetch-depth: 0 token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }} - - uses: googleapis/sdk-platform-java/.github/scripts@v2.64.1 + - uses: googleapis/sdk-platform-java/.github/scripts@v2.65.1 if: env.SHOULD_RUN == 'true' with: base_ref: ${{ github.base_ref }} diff --git a/.github/workflows/unmanaged_dependency_check.yaml b/.github/workflows/unmanaged_dependency_check.yaml index fc37c3aea72a..09a7350bf23d 100644 --- a/.github/workflows/unmanaged_dependency_check.yaml +++ b/.github/workflows/unmanaged_dependency_check.yaml @@ -14,6 +14,6 @@ jobs: shell: bash run: mvn install -B -ntp -T 1C -DskipTests -Dclirr.skip -Dcheckstyle.skip -Denforcer.skip - name: Unmanaged dependency check - uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.54.1 + uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.55.1 with: bom-path: gapic-libraries-bom/pom.xml diff --git a/.kokoro/nightly/graalvm-native-a.cfg b/.kokoro/nightly/graalvm-native-a.cfg index ba362fe8a6dc..6a744647a39a 100644 --- a/.kokoro/nightly/graalvm-native-a.cfg +++ b/.kokoro/nightly/graalvm-native-a.cfg @@ -3,7 +3,7 @@ # Configure the docker image for kokoro-trampoline. env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.55.1" } env_vars: { diff --git a/.kokoro/nightly/graalvm-native-b.cfg b/.kokoro/nightly/graalvm-native-b.cfg index 244f14cafcbe..a9ab43dfe9cb 100644 --- a/.kokoro/nightly/graalvm-native-b.cfg +++ b/.kokoro/nightly/graalvm-native-b.cfg @@ -3,7 +3,7 @@ # Configure the docker image for kokoro-trampoline. env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.55.1" } env_vars: { diff --git a/.kokoro/nightly/graalvm-native-c.cfg b/.kokoro/nightly/graalvm-native-c.cfg index c0ee80bbf1a5..1319963ce15a 100644 --- a/.kokoro/nightly/graalvm-native-c.cfg +++ b/.kokoro/nightly/graalvm-native-c.cfg @@ -3,7 +3,7 @@ # Configure the docker image for kokoro-trampoline. env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.55.1" } env_vars: { diff --git a/.kokoro/nightly/graalvm-sub-jobs/native-a/common.cfg b/.kokoro/nightly/graalvm-sub-jobs/native-a/common.cfg index 1b86bf259bf1..17fc76b847ad 100644 --- a/.kokoro/nightly/graalvm-sub-jobs/native-a/common.cfg +++ b/.kokoro/nightly/graalvm-sub-jobs/native-a/common.cfg @@ -29,7 +29,7 @@ env_vars: { env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.55.1" } # TODO: remove this after we've migrated all tests and scripts diff --git a/.kokoro/nightly/graalvm-sub-jobs/native-b/common.cfg b/.kokoro/nightly/graalvm-sub-jobs/native-b/common.cfg index bd3a807ca3eb..5d6ee62a804c 100644 --- a/.kokoro/nightly/graalvm-sub-jobs/native-b/common.cfg +++ b/.kokoro/nightly/graalvm-sub-jobs/native-b/common.cfg @@ -24,7 +24,7 @@ env_vars: { env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.55.1" } env_vars: { diff --git a/.kokoro/nightly/graalvm-sub-jobs/native-c/common.cfg b/.kokoro/nightly/graalvm-sub-jobs/native-c/common.cfg index b34813b74439..3993c2784391 100644 --- a/.kokoro/nightly/graalvm-sub-jobs/native-c/common.cfg +++ b/.kokoro/nightly/graalvm-sub-jobs/native-c/common.cfg @@ -24,7 +24,7 @@ env_vars: { env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.55.1" } env_vars: { diff --git a/.kokoro/presubmit/graalvm-native-a-presubmit.cfg b/.kokoro/presubmit/graalvm-native-a-presubmit.cfg index 18d07c473e81..cdcad6b35771 100644 --- a/.kokoro/presubmit/graalvm-native-a-presubmit.cfg +++ b/.kokoro/presubmit/graalvm-native-a-presubmit.cfg @@ -3,7 +3,7 @@ # Configure the docker image for kokoro-trampoline. env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.55.1" } env_vars: { diff --git a/.kokoro/presubmit/graalvm-native-b-presubmit.cfg b/.kokoro/presubmit/graalvm-native-b-presubmit.cfg index 2f308560ad0c..dce0a3c7d62e 100644 --- a/.kokoro/presubmit/graalvm-native-b-presubmit.cfg +++ b/.kokoro/presubmit/graalvm-native-b-presubmit.cfg @@ -3,7 +3,7 @@ # Configure the docker image for kokoro-trampoline. env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.55.1" } env_vars: { diff --git a/.kokoro/presubmit/graalvm-native-c-presubmit.cfg b/.kokoro/presubmit/graalvm-native-c-presubmit.cfg index 03473de22507..fde3814b9b8f 100644 --- a/.kokoro/presubmit/graalvm-native-c-presubmit.cfg +++ b/.kokoro/presubmit/graalvm-native-c-presubmit.cfg @@ -3,7 +3,7 @@ # Configure the docker image for kokoro-trampoline. env_vars: { key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.54.1" + value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.55.1" } env_vars: { diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 687da3a5c89a..2a3c6b6aeceb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.74.0" + ".": "1.76.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a7c73bfa71..8c086b3b669c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,121 @@ # Changelog +## [1.76.0](https://github.com/googleapis/google-cloud-java/compare/v1.75.0...v1.76.0) (2026-01-15) + + +### Features + +* [aiplatform] Add Lustre support to the Vertex Training Custom Job API ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [aiplatform] Add Lustre support to the Vertex Training Custom Job API ([c70c873](https://github.com/googleapis/google-cloud-java/commit/c70c8739f2caffdc87535f2e729c1d967d550e8c)) +* [aiplatform] add streaming function call argument API changes ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [alloydb] add POSTGRES_18 to DatabaseVersion ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [alloydb] add POSTGRES_18 to DatabaseVersion ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [artifact-registry] add Fingerprint to Artifact Registry Version resource ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [backupdr] A new service `BackupDrProtectionSummary` is added ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [cloudapiregistry] new module for cloudapiregistry ([#11864](https://github.com/googleapis/google-cloud-java/issues/11864)) ([37c933f](https://github.com/googleapis/google-cloud-java/commit/37c933fa582fe273b83bf86e940545ea68a31307)) +* [compute] Update Compute Engine v1 API to revision 20251210 ([#1137](https://github.com/googleapis/google-cloud-java/issues/1137)) ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [compute] Update Compute Engine v1 API to revision 20251230 ([#1144](https://github.com/googleapis/google-cloud-java/issues/1144)) ([bb0102d](https://github.com/googleapis/google-cloud-java/commit/bb0102d7dbf545cce9dc0349358e071b58167e51)) +* [databasecenter] Adding Method AggregateFleet of Database Center API v1beta ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [databasecenter] Adding Method QueryDatabaseResourceGroups of Database Center API v1beta ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [geminidataanalytics] add LookerGoldenQuery to Context ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [geminidataanalytics] added sync APIs for the CRUD operations of Data Agent ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [grafeas] A new message `File` is added ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [infra-manager] add support for enabling automigration from deprecated Terraform versions ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [netapp] Update NetApp v1 API with Host Groups, Block Volumes, Cache Volumes, and Backup Restore ([bb0102d](https://github.com/googleapis/google-cloud-java/commit/bb0102d7dbf545cce9dc0349358e071b58167e51)) +* [speech] add custom prompt config in the request and return prompt in the response ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) + + +### Bug Fixes + +* **deps:** update the Java code generator (gapic-generator-java) to 2.65.1 ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +### Documentation + +* [bigqueryreservation] change comment indicating `enable_gemini_in_bigquery` field for BigQuery Reservation Assignments is deprecated ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [chat] Improve documentation of attachment.proto, event_payload.proto and space.proto ([c70c873](https://github.com/googleapis/google-cloud-java/commit/c70c8739f2caffdc87535f2e729c1d967d550e8c)) +* [geminidataanalytics] specify the data sources supported only by the QueryData API ([c70c873](https://github.com/googleapis/google-cloud-java/commit/c70c8739f2caffdc87535f2e729c1d967d550e8c)) +* [kms] Marking MODIFIED_CUSTOMER_INITIATED_ACCESS and MODIFIED_GOOGLE_INITIATED_SYSTEM_OPERATION Key Access Justification codes as deprecated in favor of GOOGLE_RESPONSE_TO_PRODUCTION_ALERT ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* [maintenance] A comment for field `filter` in message `.google.cloud.maintenance.api.v1.SummarizeMaintenancesRequest` is changed ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) + +## [1.75.0](https://github.com/googleapis/google-cloud-java/compare/v1.74.0...v1.75.0) (2025-12-16) + + +### ⚠ BREAKING CHANGES + +* [admanager] Added proto3 optional to Network primitive fields +* [aiplatform] fix issue when using UrlContext tool + +### Features + +* [aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec` ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] add `gpu_partition_size` in `machine_spec` v1 api ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] add streaming function call argument API changes ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) +* [aiplatform] Add support for developer connect based deployment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] Add support for developer connect based deployment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] Expose FullFineTunedResources for full fine tuned deployments ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] Expose zone when creating a FeatureOnlineStore ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [artifact-registry] add ExportArtifact API ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [artifact-registry] add image_manifest field in DockerImage ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [backupdr] Adding new fields for CMEK and Retention Inheritance features ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [batch] added new provisioning models ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [cloudbuild] Update GCB with latest proto changes ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [compute] [DIREGAPIC] Update v1 API definitions to revision 20251202 ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [compute] Update Compute Engine v1 API to revision 20251031 ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [dialogflow-cx] updated v3beta1 dialogflow client libraries ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [dialogflow] updated v2 dialogflow client libraries ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [dialogflow] updated v2beta1 dialogflow client libraries ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [eventarc] add wide-scope Eventarc GoogleApiSource flags ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [geminidataanalytics] add a QueryData API for NL2SQL conversion ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) +* [gke-multi-cloud] added custom tolerations and labels support for Attached Clusters ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [gkerecommender] new module for gkerecommender ([#11828](https://github.com/googleapis/google-cloud-java/issues/11828)) ([c65852e](https://github.com/googleapis/google-cloud-java/commit/c65852e94987e9d0cbc03451f106a4b088ffeb3b)) +* [hypercomputecluster] new module for hypercomputecluster ([#11821](https://github.com/googleapis/google-cloud-java/issues/11821)) ([b3789bd](https://github.com/googleapis/google-cloud-java/commit/b3789bdbde94f55a0ddac72e2938d3c9eaf7a64b)) +* [java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [netapp] Add Squash Mode to Export Policy ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [network-security] publish networksecurity v1beta1 api ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [parallelstore] add transfer metadata options proto definition ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [run] add SourceCode proto to Run container config ([2f0f298](https://github.com/googleapis/google-cloud-java/commit/2f0f2982905cbbdccd4bce9bf5fb801512ee42c2)) +* [shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region` ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [storagebatchoperations] Add support for creating Job resource in dry-run mode ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.` ([02a9cd4](https://github.com/googleapis/google-cloud-java/commit/02a9cd49fcb54515e6094af962ef34f37740a498)) +* [vectorsearch] Added TextSearch support to the batch search API ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* Generate Maintenance V1 library ([#11824](https://github.com/googleapis/google-cloud-java/issues/11824)) ([2eadab5](https://github.com/googleapis/google-cloud-java/commit/2eadab502590fc3beb367e8f3a47b47c3f8cc6ce)) + + +### Bug Fixes + +* [admanager] Added proto3 optional to Network primitive fields ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) +* [aiplatform] fix issue when using UrlContext tool ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig` ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* **deps:** update dependency com.google.cloud:libraries-bom to v26.72.0 ([#11664](https://github.com/googleapis/google-cloud-java/issues/11664)) ([6854bbe](https://github.com/googleapis/google-cloud-java/commit/6854bbe08d3e785b9df14b43b3c1cbb105960c5e)) +* **deps:** update first-party storage dependencies ([#11657](https://github.com/googleapis/google-cloud-java/issues/11657)) ([f89945c](https://github.com/googleapis/google-cloud-java/commit/f89945c6ff6847a37dea304fa71eb080da2eb0dd)) +* **deps:** update the Java code generator (gapic-generator-java) to 2.64.2 ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) +* partial release of java-asset and gapic-libraries-bom ([ce3d3fb](https://github.com/googleapis/google-cloud-java/commit/ce3d3fbf5f0f205a38309afc827a7b3d4a230e3c)) +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + +### Documentation + +* [aiplatform] update `ReplicatedVoiceConfig.mime_type` comment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [aiplatform] update `ReplicatedVoiceConfig.mime_type` comment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [alloydb] Clarify that [initial_user](http://_vscodecontentref_/3) is not required in Cluster ([2f0f298](https://github.com/googleapis/google-cloud-java/commit/2f0f2982905cbbdccd4bce9bf5fb801512ee42c2)) +* [dlp] add messages stating that Data Catalog actions are deprecated ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) +* [parallelstore] update tickets component number ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* [shopping-merchant-accounts] A comment for enum `AccessRight` is changed ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) + ## [1.74.0](https://github.com/googleapis/google-cloud-java/compare/v1.73.0...v1.74.0) (2025-11-14) diff --git a/changelog.json b/changelog.json index 7ca9b77d114b..ecf43700e143 100644 --- a/changelog.json +++ b/changelog.json @@ -1,6 +1,18563 @@ { "repository": "googleapis/google-cloud-java", "entries": [ + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-workstations", + "id": "67f301e3-5014-4844-a636-dddc89cb2bf3", + "createTime": "2026-01-15T03:30:52.629Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-workspaceevents", + "id": "978035ca-8d8d-4f2a-83d7-1ccc35f0915d", + "createTime": "2026-01-15T03:30:52.156Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-workflows", + "id": "952f4923-32a6-47fa-8f9a-67d313b6bb4a", + "createTime": "2026-01-15T03:30:51.569Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-workflow-executions", + "id": "91d139ce-5cd2-482d-bfcf-05dfa9fdb92b", + "createTime": "2026-01-15T03:30:50.856Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-websecurityscanner", + "id": "3996b23e-6938-497f-9023-3c6da4659490", + "createTime": "2026-01-15T03:30:50.346Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-webrisk", + "id": "4c71c8c5-0f25-466d-be2f-f0c186953d9d", + "createTime": "2026-01-15T03:30:49.702Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-vpcaccess", + "id": "e1e89fe1-c44d-4e38-976a-8b678909baeb", + "createTime": "2026-01-15T03:30:49.013Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-vmwareengine", + "id": "aa40a019-b0b2-495d-90d9-f137a57fa458", + "createTime": "2026-01-15T03:30:48.552Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-vmmigration", + "id": "3420f4a9-d16a-45ed-bf41-740ab4de7def", + "createTime": "2026-01-15T03:30:47.983Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-visionai", + "id": "64b1a363-cdee-44c6-8725-57ab6883ad83", + "createTime": "2026-01-15T03:30:47.293Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-vision", + "id": "15298a36-eee4-4940-ab7f-f4fbcbfbb46c", + "createTime": "2026-01-15T03:30:46.807Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-video-transcoder", + "id": "2bb142e0-1f7b-42b2-a375-037af87dc206", + "createTime": "2026-01-15T03:30:46.198Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-video-stitcher", + "id": "ad6669b1-3711-4e48-9499-c9df6a15476f", + "createTime": "2026-01-15T03:30:45.559Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-live-stream", + "id": "7be503a9-ae09-44ee-9fc0-e6fe5e8a3f58", + "createTime": "2026-01-15T03:30:45.061Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-video-intelligence", + "id": "06407d98-13f9-4998-8e74-7a5a4c18f7f3", + "createTime": "2026-01-15T03:30:44.498Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-vectorsearch", + "id": "1741fd65-e154-468d-a6d6-19332eed2696", + "createTime": "2026-01-15T03:30:43.765Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-valkey", + "id": "5d9473a2-37da-4d92-b189-e0fbf3c02050", + "createTime": "2026-01-15T03:30:43.273Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-translate", + "id": "205edd1f-ac7c-4130-888f-eb9f36ef3000", + "createTime": "2026-01-15T03:30:42.640Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-trace", + "id": "fd9c506f-a259-4ad5-8ea2-0e47e5bab3fe", + "createTime": "2026-01-15T03:30:41.954Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-tpu", + "id": "eb14f419-c42e-4a37-9514-72ffc83f5b76", + "createTime": "2026-01-15T03:30:41.468Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-texttospeech", + "id": "490d5d68-fa69-4a84-8b8b-07ae3645fc99", + "createTime": "2026-01-15T03:30:40.869Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-telcoautomation", + "id": "62467349-6941-4cf6-a0e6-da1bc155a0fd", + "createTime": "2026-01-15T03:30:40.154Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-tasks", + "id": "35078c84-db92-429f-a82f-8170ced88451", + "createTime": "2026-01-15T03:30:39.643Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-talent", + "id": "744349cc-d76e-4165-8b84-3785cd7c5f87", + "createTime": "2026-01-15T03:30:38.996Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-storageinsights", + "id": "8f0b244d-f9c8-4217-bb9a-c9488c51fe43", + "createTime": "2026-01-15T03:30:38.329Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-storagebatchoperations", + "id": "92f4714e-fb69-42c2-a874-275931e1f06c", + "createTime": "2026-01-15T03:30:37.839Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-storage-transfer", + "id": "4d0dd192-aeec-4e94-8ccd-c11ce8747bb9", + "createTime": "2026-01-15T03:30:37.247Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-speech", + "id": "26f386f6-56a3-4de8-b29f-f48139a278f6", + "createTime": "2026-01-15T03:30:36.540Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-spanneradapter", + "id": "8f286142-e89d-4493-9ceb-75ae10cf0f69", + "createTime": "2026-01-15T03:30:36.045Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-reviews", + "id": "73e13a43-5a98-4c8d-9b2b-6bcfb5f84eab", + "createTime": "2026-01-15T03:30:35.376Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-reports", + "id": "53534d90-3d6d-4ba8-9911-59914d8a29fc", + "createTime": "2026-01-15T03:30:34.704Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-quota", + "id": "d44838b4-08ab-42ab-a0af-147cd80722f3", + "createTime": "2026-01-15T03:30:34.229Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-promotions", + "id": "0aa80431-a9ea-4530-983f-33a561369137", + "createTime": "2026-01-15T03:30:33.656Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-products", + "id": "644286e5-a5d8-4ef3-9520-2cc0586c0520", + "createTime": "2026-01-15T03:30:32.963Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-productstudio", + "id": "08a7c0be-8ce6-4a80-bc25-b03f8d28fdf3", + "createTime": "2026-01-15T03:30:32.477Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-notifications", + "id": "5909ed68-8797-4440-8508-28956cc132c5", + "createTime": "2026-01-15T03:30:31.873Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-lfp", + "id": "dda599b6-05a5-40a1-9074-64eae2758985", + "createTime": "2026-01-15T03:30:31.189Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-inventories", + "id": "1396ef38-df27-4752-8452-4a1ca025f6a0", + "createTime": "2026-01-15T03:30:30.741Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-datasources", + "id": "da3c930d-e3a8-4df6-bb7c-51ea7c476371", + "createTime": "2026-01-15T03:30:30.192Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-conversions", + "id": "40695c1f-00e7-4e1c-8fdd-997c9860be3a", + "createTime": "2026-01-15T03:30:29.533Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-accounts", + "id": "55223f95-d74d-42a0-9aa3-fe01b52daad6", + "createTime": "2026-01-15T03:30:29.066Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-css", + "id": "dd544267-d286-4b86-995e-015b5fe0652d", + "createTime": "2026-01-15T03:30:28.472Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-shell", + "id": "b91cbe43-ae0d-4821-abd5-0207d64613d8", + "createTime": "2026-01-15T03:30:27.783Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-servicehealth", + "id": "4b7210c3-1094-4145-b4fc-539001dceb75", + "createTime": "2026-01-15T03:30:27.318Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-servicedirectory", + "id": "8dbf74aa-b4e6-4361-82de-3465845fe382", + "createTime": "2026-01-15T03:30:26.788Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-service-usage", + "id": "4ed77544-11a5-46e0-9fcd-b883a287d926", + "createTime": "2026-01-15T03:30:26.114Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-service-management", + "id": "a363e079-2d45-43cd-b8c8-3beca19d696a", + "createTime": "2026-01-15T03:30:25.647Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-service-control", + "id": "cb071a54-a22a-47d9-ab1c-cdec1ae7e251", + "createTime": "2026-01-15T03:30:25.004Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-securityposture", + "id": "a2f68ce7-d752-4f79-b450-f6d324c90477", + "createTime": "2026-01-15T03:30:24.359Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-securitycentermanagement", + "id": "461f43d4-381e-477d-89a2-f2eacd0cf57e", + "createTime": "2026-01-15T03:30:23.873Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-securitycenter", + "id": "eb9df8a5-2069-45aa-9860-7ae52a23e04e", + "createTime": "2026-01-15T03:30:23.372Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-securitycenter-settings", + "id": "fd40e188-5e06-4bb4-9416-599d2f9864a8", + "createTime": "2026-01-15T03:30:22.694Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-security-private-ca", + "id": "d3f6ea56-cfa3-4855-851b-e3b021a4077c", + "createTime": "2026-01-15T03:30:22.237Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-securesourcemanager", + "id": "400ff75e-5ed3-4dbe-9665-dec2cdefc34c", + "createTime": "2026-01-15T03:30:21.659Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-secretmanager", + "id": "7f5292fc-5b3c-4cb9-a119-06a676157cb5", + "createTime": "2026-01-15T03:30:20.964Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-scheduler", + "id": "5aef7dd4-403c-4d91-bac6-98be908b78db", + "createTime": "2026-01-15T03:30:20.516Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-saasservicemgmt", + "id": "ed1fc32f-55d8-40dd-bd22-d6b84d291c21", + "createTime": "2026-01-15T03:30:19.970Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-run", + "id": "55d70d6e-8ffc-4dc0-87fd-2acc26fa4fac", + "createTime": "2026-01-15T03:30:19.268Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-retail", + "id": "252f24b0-14f3-40f7-87b4-a4017e93dd92", + "createTime": "2026-01-15T03:30:18.786Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-resourcemanager", + "id": "062d1206-d111-4047-a483-2b94bcda9eb7", + "createTime": "2026-01-15T03:30:18.191Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-redis", + "id": "273d8af2-f6ae-4e3c-a0c4-5cedd468b04d", + "createTime": "2026-01-15T03:30:17.554Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-redis-cluster", + "id": "f9d23d87-d2f8-486f-bce0-f3af7bff5b95", + "createTime": "2026-01-15T03:30:17.088Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-recommender", + "id": "904ecee4-2f79-434e-b87f-1bf495622522", + "createTime": "2026-01-15T03:30:16.563Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-recommendations-ai", + "id": "9ae716d4-c7bf-4e64-b917-6b64fcd87ae8", + "createTime": "2026-01-15T03:30:15.855Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-recaptchaenterprise", + "id": "6beec898-e471-4e13-a528-e597590ed8a9", + "createTime": "2026-01-15T03:30:15.368Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-rapidmigrationassessment", + "id": "cb61b7c9-ad8e-4ded-8e23-5cc1aad000c5", + "createTime": "2026-01-15T03:30:14.751Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-publicca", + "id": "bec8c5b7-be99-4df6-8e51-0f92c714cb94", + "createTime": "2026-01-15T03:30:14.083Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-profiler", + "id": "f2d7c237-5314-44cf-b974-0e41d2b4c1ef", + "createTime": "2026-01-15T03:30:13.626Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-privilegedaccessmanager", + "id": "f16b79c1-04e8-49a2-bcd6-a4e49364b78c", + "createTime": "2026-01-15T03:30:13.051Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-private-catalog", + "id": "122f1de1-b7f7-4520-afe5-23726ae5b726", + "createTime": "2026-01-15T03:30:12.355Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-policysimulator", + "id": "ecff80b1-6a14-4237-b33c-8bd37e7ff97c", + "createTime": "2026-01-15T03:30:11.870Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-policy-troubleshooter", + "id": "a4079e1d-997a-4fd1-9b77-596e7665b853", + "createTime": "2026-01-15T03:30:11.260Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-phishingprotection", + "id": "59e48a9f-1f52-42ca-a87e-8005eb587134", + "createTime": "2026-01-15T03:30:10.579Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-parametermanager", + "id": "c97867b5-686a-42d8-8726-3dd9e6b483f5", + "createTime": "2026-01-15T03:30:10.061Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-parallelstore", + "id": "8fb371d8-fd7a-4793-ae5a-4f6528f958d7", + "createTime": "2026-01-15T03:30:09.479Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-os-login", + "id": "4e7c399c-eb8e-4b67-8b8d-939eda3f7307", + "createTime": "2026-01-15T03:30:08.781Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-os-config", + "id": "7b2d18e2-ef1e-41ce-bd77-59eb6a3e0897", + "createTime": "2026-01-15T03:30:08.278Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-orgpolicy", + "id": "96e9896b-cdc2-439d-ae2f-af52432bb4ee", + "createTime": "2026-01-15T03:30:07.668Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-orchestration-airflow", + "id": "0933637f-7468-485d-bf7d-6bd84b356d73", + "createTime": "2026-01-15T03:30:07.001Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-oracledatabase", + "id": "8cd98ee1-9e69-45bc-ab69-cbc60cddac6a", + "createTime": "2026-01-15T03:30:06.537Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-optimization", + "id": "82bb2052-910d-407d-9c4f-b11541f820b0", + "createTime": "2026-01-15T03:30:05.984Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-notebooks", + "id": "b9c17a16-3460-42b8-a52f-31496cadf214", + "createTime": "2026-01-15T03:30:05.299Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-networkservices", + "id": "c23f5b45-b289-4f86-afd8-f9cff7cd04cb", + "createTime": "2026-01-15T03:30:04.793Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-networkconnectivity", + "id": "6801ddb0-6787-4d19-bd06-72dbfb703b0f", + "createTime": "2026-01-15T03:30:04.179Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-network-security", + "id": "45f8df94-d83a-4fb8-928c-9886cc928b1f", + "createTime": "2026-01-15T03:30:03.484Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-network-management", + "id": "b0650147-eb54-4f99-95b5-e2466cc584ac", + "createTime": "2026-01-15T03:30:03.009Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-monitoring", + "id": "777b6019-fdfa-4656-9e95-c3e40273c353", + "createTime": "2026-01-15T03:30:02.469Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-monitoring-metricsscope", + "id": "8c643932-aefe-4b91-95e7-35e5305ac932", + "createTime": "2026-01-15T03:30:01.763Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-monitoring-dashboard", + "id": "8f334d8a-32c0-403d-b425-6350165e9c08", + "createTime": "2026-01-15T03:30:01.224Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-modelarmor", + "id": "11bacc83-40b6-4aa7-807b-82a765f73a2b", + "createTime": "2026-01-15T03:30:00.573Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-migrationcenter", + "id": "9ffab4ad-511a-4b34-891b-fbff04c3f8e5", + "createTime": "2026-01-15T03:29:59.910Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-memcache", + "id": "f562d86e-a2f4-4140-90af-74db07f2b624", + "createTime": "2026-01-15T03:29:59.444Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-meet", + "id": "a6f63957-3e99-4c47-8f29-18927243f306", + "createTime": "2026-01-15T03:29:58.872Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-mediatranslation", + "id": "8868c460-32f6-4841-8ce0-9fbc17f21fbd", + "createTime": "2026-01-15T03:29:58.205Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.ads-marketingplatform:admin", + "id": "46798c0d-4aa9-4c0a-b7b9-b54423cdadae", + "createTime": "2026-01-15T03:29:57.714Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-solar", + "id": "cccf4a1c-1d1b-4f19-9c75-0ce8a5b2db0f", + "createTime": "2026-01-15T03:29:57.087Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-routing", + "id": "444cd085-daa3-46b0-9d8e-b146aeb2814b", + "createTime": "2026-01-15T03:29:56.431Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-routeoptimization", + "id": "4f2cb9f4-be82-480c-b40a-5133f9fd6047", + "createTime": "2026-01-15T03:29:55.963Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-places", + "id": "05af22e5-1e3f-4632-9023-5caf3c8001bb", + "createTime": "2026-01-15T03:29:55.386Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-mapsplatformdatasets", + "id": "5004b07a-6833-4887-95df-552c24cb3cea", + "createTime": "2026-01-15T03:29:54.694Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-fleetengine", + "id": "af2ea3ec-51cf-4d8d-84cf-d13f4a1f4420", + "createTime": "2026-01-15T03:29:54.200Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-fleetengine-delivery", + "id": "cd9ef33e-dc4d-4b46-914b-b1438199689e", + "createTime": "2026-01-15T03:29:53.574Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-area-insights", + "id": "feb7588f-651c-4b06-9329-b27a44a36743", + "createTime": "2026-01-15T03:29:52.901Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.maps:google-maps-addressvalidation", + "id": "a1ff063f-58cb-438c-9bb5-60059569d62d", + "createTime": "2026-01-15T03:29:52.443Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-managedkafka", + "id": "bad2100a-c0f9-4361-af86-c134ce08ec79", + "createTime": "2026-01-15T03:29:51.872Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-managed-identities", + "id": "08050915-4c25-4026-a4fc-94cc4ba3eb60", + "createTime": "2026-01-15T03:29:51.191Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-maintenance", + "id": "a8aeb346-e6b3-41dc-88d2-6fa8ec536216", + "createTime": "2026-01-15T03:29:50.698Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-lustre", + "id": "e147f602-d417-4475-b184-3bc8ac175cfc", + "createTime": "2026-01-15T03:29:50.082Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-locationfinder", + "id": "87619c5d-e3cc-4ef9-b648-e5629774a97b", + "createTime": "2026-01-15T03:29:49.394Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-life-sciences", + "id": "4ca9b2ec-dd11-44c9-994c-75b9d4509df5", + "createTime": "2026-01-15T03:29:48.929Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-licensemanager", + "id": "58c14263-2f9b-40be-bd0a-7515e152a674", + "createTime": "2026-01-15T03:29:48.361Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-language", + "id": "d7d97edd-3a33-4415-97e5-aaedcc51e1a6", + "createTime": "2026-01-15T03:29:47.662Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-kmsinventory", + "id": "08fd12d6-60fc-4a8f-8533-726145d08dfe", + "createTime": "2026-01-15T03:29:47.174Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-kms", + "id": "f0461e48-3c5c-4479-8d3c-57ff6c55ca7b", + "createTime": "2026-01-15T03:29:46.566Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-order-tracking", + "id": "b1f8dedd-92fe-41e7-bbd5-b1386a6279c4", + "createTime": "2026-01-15T03:29:45.878Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.shopping:google-shopping-merchant-issue-resolution", + "id": "769b2286-122f-40a7-8150-1dc324dfe77b", + "createTime": "2026-01-15T03:29:45.430Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-iot", + "id": "a65b76f0-c615-4438-82a0-111a8c0bdcd7", + "createTime": "2026-01-15T03:29:44.860Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-infra-manager", + "id": "0fe2293b-a3d8-4060-8827-b1e1ae1d9b38", + "createTime": "2026-01-15T03:29:44.155Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-ids", + "id": "6099c987-dcff-4e95-ace5-17a248b02278", + "createTime": "2026-01-15T03:29:43.686Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-iap", + "id": "1ce97e57-5ede-4caf-9f26-e5cadde25b08", + "createTime": "2026-01-15T03:29:43.069Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-iamcredentials", + "id": "018a43a9-c163-43e4-a23f-7d17d067554c", + "createTime": "2026-01-15T03:29:42.385Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-iam-policy", + "id": "cd4d1924-6c1c-4abd-b60a-f0d817029389", + "createTime": "2026-01-15T03:29:41.921Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-iam-admin", + "id": "c3663605-c9fd-41c2-95ed-e77f897c45ce", + "createTime": "2026-01-15T03:29:41.371Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-hypercomputecluster", + "id": "48dbd588-9bbd-49cd-8a1e-9a0411174175", + "createTime": "2026-01-15T03:29:40.670Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gsuite-addons", + "id": "beab7a56-79fc-4aab-8b15-282be35368d8", + "createTime": "2026-01-15T03:29:40.180Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "io.grafeas:grafeas", + "id": "4a7406d4-4676-4144-acdc-626e4afc96ad", + "createTime": "2026-01-15T03:29:39.569Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gkerecommender", + "id": "f39d28df-c161-478c-9400-40b2fb5ca984", + "createTime": "2026-01-15T03:29:38.898Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gkehub", + "id": "0d98559d-8fae-4815-af12-f564d649a8cc", + "createTime": "2026-01-15T03:29:38.450Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gke-multi-cloud", + "id": "1f346e0b-2ee8-4c7b-ab9b-30df6d6d0361", + "createTime": "2026-01-15T03:29:37.941Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gke-connect-gateway", + "id": "c9cd1116-0b0e-4082-aa9c-49717a6e4317", + "createTime": "2026-01-15T03:29:37.266Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gke-backup", + "id": "25d0326b-bd3d-49bf-a37e-b7df036cca48", + "createTime": "2026-01-15T03:29:36.764Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-geminidataanalytics", + "id": "b9a780cf-8e47-4b5c-b377-3f70c58ee71c", + "createTime": "2026-01-15T03:29:36.165Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gdchardwaremanagement", + "id": "8c3f7236-82ef-4b60-b615-97522b8c5bb0", + "createTime": "2026-01-15T03:29:35.502Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-functions", + "id": "8bfd4c34-4c31-48e1-a4b9-8864c7430b4e", + "createTime": "2026-01-15T03:29:35.033Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-financialservices", + "id": "b5ab8065-ba99-435c-a46e-103ec0e15ecc", + "createTime": "2026-01-15T03:29:34.474Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-filestore", + "id": "2b92c578-de84-4ce5-9c56-7be5a099beb6", + "createTime": "2026-01-15T03:29:33.801Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-eventarc", + "id": "955a09be-e4cb-453b-ad5c-4dc15789cd4e", + "createTime": "2026-01-15T03:29:33.343Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-eventarc-publishing", + "id": "01422c76-bc15-40a1-9cc4-1781b89d0279", + "createTime": "2026-01-15T03:29:32.767Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-essential-contacts", + "id": "31653b57-d1d9-44b4-a28e-fafa14118872", + "createTime": "2026-01-15T03:29:32.082Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-errorreporting", + "id": "24d1c91d-6983-4b4e-8422-28d2799a1804", + "createTime": "2026-01-15T03:29:31.636Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-enterpriseknowledgegraph", + "id": "d733a12a-1542-4f14-a504-c0b37b816924", + "createTime": "2026-01-15T03:29:31.074Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-edgenetwork", + "id": "f1e5012a-0506-4226-a9d4-e7050b1c5f5b", + "createTime": "2026-01-15T03:29:30.352Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-domains", + "id": "b0e00a36-a43e-4fbe-b506-474865a3d6bd", + "createTime": "2026-01-15T03:29:29.871Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-document-ai", + "id": "daa6501a-96b6-4747-82d2-fc4631ebb05a", + "createTime": "2026-01-15T03:29:29.278Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dms", + "id": "28ed4a2d-28c1-47ed-b801-08e517ba11b9", + "createTime": "2026-01-15T03:29:28.606Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dlp", + "id": "2cb3c0c9-cd02-43f1-9219-ab5ab862ee09", + "createTime": "2026-01-15T03:29:28.140Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-distributedcloudedge", + "id": "fc40268d-51cd-443a-a08f-dd6f05b0a11a", + "createTime": "2026-01-15T03:29:27.572Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-discoveryengine", + "id": "f67d6869-8f26-442d-b26c-bbab45eada24", + "createTime": "2026-01-15T03:29:26.908Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dialogflow", + "id": "ab14f62d-3250-4896-acbe-f1bf538181d9", + "createTime": "2026-01-15T03:29:26.457Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dialogflow-cx", + "id": "4de43983-5bcf-47b8-a29f-9b66bed0168e", + "createTime": "2026-01-15T03:29:25.850Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-devicestreaming", + "id": "bef5480a-2b91-462c-9b7d-8a33e1e30099", + "createTime": "2026-01-15T03:29:25.172Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-developerconnect", + "id": "256189f4-ae1a-4cfa-b519-dbd62c4f8fc6", + "createTime": "2026-01-15T03:29:24.706Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-deploy", + "id": "46e6d574-cea7-4476-973b-b0a71eebeac8", + "createTime": "2026-01-15T03:29:24.167Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-datastream", + "id": "049ff531-02a0-4191-8629-f4f8227ccf33", + "createTime": "2026-01-15T03:29:23.470Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dataproc", + "id": "019008b5-9797-40e0-98d5-82ba88c9c27a", + "createTime": "2026-01-15T03:29:22.992Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dataproc-metastore", + "id": "b29507ec-d5aa-481d-b831-1019828e053a", + "createTime": "2026-01-15T03:29:22.387Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dataplex", + "id": "df1bcf34-0df9-4357-9086-f63667c285e6", + "createTime": "2026-01-15T03:29:21.764Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.api-ads:data-manager", + "id": "ac08f1de-d241-4d46-a31d-77bed5290709", + "createTime": "2026-01-15T03:29:21.302Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-datalineage", + "id": "92342eb4-8cc5-4a1f-ac68-b1bcd03af07c", + "createTime": "2026-01-15T03:29:20.690Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-datalabeling", + "id": "d085e7aa-02e0-424f-a454-8cc3af2962b9", + "createTime": "2026-01-15T03:29:20.052Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dataform", + "id": "eb941c01-03ee-4910-8733-67a8e1046f25", + "createTime": "2026-01-15T03:29:19.566Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dataflow", + "id": "463e8ddc-61ba-493c-9df3-5c4fedc3e907", + "createTime": "2026-01-15T03:29:18.967Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-datacatalog", + "id": "f3eb8875-9677-485c-8e07-b7430110e8cb", + "createTime": "2026-01-15T03:29:18.266Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-databasecenter", + "id": "207493c3-1ca8-401a-8ab8-d24379bb1e86", + "createTime": "2026-01-15T03:29:17.757Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-data-fusion", + "id": "8d0e0ee8-1a58-44ed-8526-d5e9ba1b8a30", + "createTime": "2026-01-15T03:29:17.168Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-contentwarehouse", + "id": "c68e49ea-6d32-4010-b45b-fd094fe491f4", + "createTime": "2026-01-15T03:29:16.428Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-containeranalysis", + "id": "8283f736-ffa8-457f-8891-d9e3f4cad058", + "createTime": "2026-01-15T03:29:15.939Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-container", + "id": "4f49da8c-7d83-4199-a930-059e8374e04d", + "createTime": "2026-01-15T03:29:15.255Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-contact-center-insights", + "id": "e586858f-622f-4ed2-90a7-a28275e28c97", + "createTime": "2026-01-15T03:29:14.549Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-connectgateway", + "id": "fd1fda98-295c-4cdf-aeef-977bfde04ad6", + "createTime": "2026-01-15T03:29:14.038Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-configdelivery", + "id": "628975fa-fe43-46a1-b115-0ffbc229d5c8", + "createTime": "2026-01-15T03:29:13.469Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-confidentialcomputing", + "id": "b53bbd7d-0506-4e69-8937-6207f054f886", + "createTime": "2026-01-15T03:29:12.792Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudsupport", + "id": "cb52a78a-fb43-4022-bfdf-258ebfd172df", + "createTime": "2026-01-15T03:29:12.292Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudsecuritycompliance", + "id": "79392887-b46b-41d3-80cb-f858ab5e90f0", + "createTime": "2026-01-15T03:29:11.690Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudquotas", + "id": "cc9b62af-3bbf-4b06-948e-49c7edbd5dd6", + "createTime": "2026-01-15T03:29:11.058Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudcontrolspartner", + "id": "3e083052-84e0-4889-8495-e3a985183ec8", + "createTime": "2026-01-15T03:29:10.580Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudcommerceconsumerprocurement", + "id": "4d24777d-1081-44df-93e6-ab92b881d495", + "createTime": "2026-01-15T03:29:10.068Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-build", + "id": "aaa48788-2601-4cdc-a328-fa31f9688d33", + "createTime": "2026-01-15T03:29:09.389Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-chronicle", + "id": "3560c82a-9401-4040-a3b2-4d966c341aa5", + "createTime": "2026-01-15T03:29:08.909Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-chat", + "id": "eae8a306-8758-41f5-9a7d-9c8b0a4da9d2", + "createTime": "2026-01-15T03:29:08.295Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-channel", + "id": "0c69025b-1589-46ac-a54e-f6ff044846b9", + "createTime": "2026-01-15T03:29:07.654Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-certificate-manager", + "id": "239dadba-93b2-45ea-92f4-36cffbd2c3fd", + "createTime": "2026-01-15T03:29:07.148Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-capacityplanner", + "id": "b1228b67-93f7-40c1-bd3d-d6b0c57fdeec", + "createTime": "2026-01-15T03:29:06.572Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-binary-authorization", + "id": "db278d9b-f603-41a6-81fb-668eb1246284", + "createTime": "2026-01-15T03:29:05.860Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-billingbudgets", + "id": "fb20263b-e899-492b-8817-48b0cd58542d", + "createTime": "2026-01-15T03:29:05.352Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-billing", + "id": "243fa8eb-ac0a-4298-b353-3be44e57eb87", + "createTime": "2026-01-15T03:29:04.692Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigqueryreservation", + "id": "db1f6b03-4c4d-4f3b-aafc-0e94646a2faf", + "createTime": "2026-01-15T03:29:04.018Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquerymigration", + "id": "98dffb8e-d812-4caf-9e69-61dafeebd995", + "createTime": "2026-01-15T03:29:03.562Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquerydatatransfer", + "id": "523c54f4-f143-4496-9654-1ba9a92b8b1b", + "createTime": "2026-01-15T03:29:02.975Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquerydatapolicy", + "id": "f3d6e5bf-1336-4676-97a0-3349b98ed4c0", + "createTime": "2026-01-15T03:29:02.325Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigqueryconnection", + "id": "39a4eefc-2daa-4bad-b88b-f41bb3b17f97", + "createTime": "2026-01-15T03:29:01.854Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquery-data-exchange", + "id": "1297383c-4e22-40ae-a9df-365e9215c6b2", + "createTime": "2026-01-15T03:29:01.195Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-biglake", + "id": "5f13d1e9-2959-4ca9-8740-9e632bb2249c", + "createTime": "2026-01-15T03:29:00.551Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-clientgateways", + "id": "b74b39aa-8373-4c62-8551-632f35aae706", + "createTime": "2026-01-15T03:29:00.084Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-clientconnectorservices", + "id": "a0875535-aef6-4d33-900f-c1caa755eb45", + "createTime": "2026-01-15T03:28:59.557Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-appgateways", + "id": "b523d731-64e6-4552-84dc-8d31959b6a2c", + "createTime": "2026-01-15T03:28:58.883Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-appconnectors", + "id": "e875b873-6f27-46e6-9df3-fdcd595dd1a3", + "createTime": "2026-01-15T03:28:58.444Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-appconnections", + "id": "a2ff686f-3172-46ac-bf04-0b1af6df7ddc", + "createTime": "2026-01-15T03:28:57.869Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-batch", + "id": "7c879f0c-7eec-4bb0-a3f4-55bf85952f0b", + "createTime": "2026-01-15T03:28:57.205Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bare-metal-solution", + "id": "e420b712-58d9-4bc1-a8b8-5898d57ade11", + "createTime": "2026-01-15T03:28:56.738Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-backupdr", + "id": "b1c4dd80-77df-4aa4-a4e6-b233e61e2273", + "createTime": "2026-01-15T03:28:56.173Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-automl", + "id": "50db308b-bbda-4c89-9b8f-7547f87b2c18", + "createTime": "2026-01-15T03:28:55.525Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-assured-workloads", + "id": "d9dd13c2-a752-40e8-ab07-049a8db5074b", + "createTime": "2026-01-15T03:28:55.043Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-asset", + "id": "f24bf26b-4c24-4345-8eb8-888ff504ee01", + "createTime": "2026-01-15T03:28:54.397Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-artifact-registry", + "id": "152a8b17-632e-4334-b9dd-b94ab3859913", + "createTime": "2026-01-15T03:28:53.765Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.area120:google-area120-tables", + "id": "2cdbfbbe-5be5-4417-b501-88975fd6224e", + "createTime": "2026-01-15T03:28:53.279Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apphub", + "id": "d83e34fa-b793-4715-86da-e7ef3b9878f9", + "createTime": "2026-01-15T03:28:52.694Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-appengine-admin", + "id": "56786fff-8692-4cf1-b2cb-35bd2be2a330", + "createTime": "2026-01-15T03:28:52.032Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apikeys", + "id": "0ddc5e3b-4b3d-4781-aa27-7bdaae2d1dd9", + "createTime": "2026-01-15T03:28:51.537Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apihub", + "id": "17aa37af-9654-439e-a372-1a4731b98b40", + "createTime": "2026-01-15T03:28:50.910Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apigee-registry", + "id": "c069412d-95e7-4fcd-8fda-9137900e9d99", + "createTime": "2026-01-15T03:28:50.264Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apigee-connect", + "id": "8682cc7e-1290-45e5-a5a7-a441f5d0606c", + "createTime": "2026-01-15T03:28:49.815Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-api-gateway", + "id": "51eea25c-825e-4da3-aef9-698d663d363f", + "createTime": "2026-01-15T03:28:49.269Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-analyticshub", + "id": "baf06ed4-93e1-4770-a470-158c881e58bd", + "createTime": "2026-01-15T03:28:48.593Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.analytics:google-analytics-data", + "id": "24218dd9-8b71-4c64-8932-e15d3bb7b2a9", + "createTime": "2026-01-15T03:28:48.092Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.analytics:google-analytics-admin", + "id": "01454977-39a9-4ad4-b96e-2c2eaba90cd9", + "createTime": "2026-01-15T03:28:47.492Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-alloydb", + "id": "577bbda8-233d-403c-8bf2-6b407173fc84", + "createTime": "2026-01-15T03:28:46.798Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-alloydb-connectors", + "id": "844bdb4a-c7f8-4368-a236-1eb13add6a33", + "createTime": "2026-01-15T03:28:46.340Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-aiplatform", + "id": "b864da2d-f154-49e5-ad77-2d0ae26d87cd", + "createTime": "2026-01-15T03:28:45.776Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-advisorynotifications", + "id": "59a7568c-a988-4935-9538-cdf74074d188", + "createTime": "2026-01-15T03:28:45.097Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.api-ads:ad-manager", + "id": "9cc845b4-d7bd-4c38-b8c9-524ab961ea22", + "createTime": "2026-01-15T03:28:44.580Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-identity-accesscontextmanager", + "id": "3a45ce2a-b92d-4501-9321-150dc3bde132", + "createTime": "2026-01-15T03:28:43.960Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-accessapproval", + "id": "d126013f-bdce-41da-b34a-c36f6ebf8d89", + "createTime": "2026-01-15T03:28:43.308Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "bb0102d7dbf545cce9dc0349358e071b58167e51", + "message": "[compute] Update Compute Engine v1 API to revision 20251230", + "issues": [ + "1144" + ] + }, + { + "type": "feat", + "sha": "bb0102d7dbf545cce9dc0349358e071b58167e51", + "message": "[netapp] Update NetApp v1 API with Host Groups, Block Volumes, Cache Volumes, and Backup Restore", + "issues": [] + }, + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-netapp", + "id": "62db5d8a-77ec-42c3-b23d-5ad0f0b0292a", + "createTime": "2026-01-15T03:28:42.838Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "bb0102d7dbf545cce9dc0349358e071b58167e51", + "message": "[compute] Update Compute Engine v1 API to revision 20251230", + "issues": [ + "1144" + ] + }, + { + "type": "feat", + "sha": "bb0102d7dbf545cce9dc0349358e071b58167e51", + "message": "[netapp] Update NetApp v1 API with Host Groups, Block Volumes, Cache Volumes, and Backup Restore", + "issues": [] + }, + { + "type": "feat", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[aiplatform] Add Lustre support to the Vertex Training Custom Job API", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[chat] Improve documentation of attachment.proto, event_payload.proto and space.proto", + "issues": [] + }, + { + "type": "docs", + "sha": "c70c8739f2caffdc87535f2e729c1d967d550e8c", + "message": "[geminidataanalytics] specify the data sources supported only by the QueryData API", + "issues": [] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-compute", + "id": "fa9d0a3e-efae-4aad-a5d5-b3d0d7981224", + "createTime": "2026-01-15T03:28:42.386Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "bb0102d7dbf545cce9dc0349358e071b58167e51", + "message": "[compute] Update Compute Engine v1 API to revision 20251230", + "issues": [ + "1144" + ] + }, + { + "type": "feat", + "sha": "bb0102d7dbf545cce9dc0349358e071b58167e51", + "message": "[netapp] Update NetApp v1 API with Host Groups, Block Volumes, Cache Volumes, and Backup Restore", + "issues": [] + }, + { + "type": "feat", + "sha": "37c933fa582fe273b83bf86e940545ea68a31307", + "message": "[cloudapiregistry] new module for cloudapiregistry", + "issues": [ + "11864" + ] + } + ], + "version": "1.76.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudapiregistry", + "id": "5ad453b7-41d6-4744-8cc1-13e7b26fde82", + "createTime": "2026-01-15T03:28:41.659Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudsupport", + "id": "45715853-f8b3-4bf3-aedb-fbc274d86f36", + "createTime": "2025-12-16T17:45:30.076Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudsecuritycompliance", + "id": "6e7ce173-74db-4ae8-81ce-7fd187127ddf", + "createTime": "2025-12-16T17:45:29.541Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudquotas", + "id": "f9d66596-3c70-40e8-9821-e6568f5e895d", + "createTime": "2025-12-16T17:45:28.960Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudcontrolspartner", + "id": "5cd3e613-2533-4189-92ed-b8f9f92398cc", + "createTime": "2025-12-16T17:45:28.205Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-cloudcommerceconsumerprocurement", + "id": "efe0c404-6d7f-44e8-98da-1e771bd678e6", + "createTime": "2025-12-16T17:45:27.669Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-build", + "id": "efa0756f-e080-4729-99f6-cd52bdbc06c5", + "createTime": "2025-12-16T17:45:26.876Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-chronicle", + "id": "ebe807dd-a53b-4a1f-b6b9-4db193e25d5f", + "createTime": "2025-12-16T17:45:26.358Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-channel", + "id": "5f7c98bc-6d11-467d-be12-028f2a0fe434", + "createTime": "2025-12-16T17:45:25.706Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-certificate-manager", + "id": "3577a451-a6f0-45e3-ad1a-7e9c991b4666", + "createTime": "2025-12-16T17:45:25.163Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-capacityplanner", + "id": "90788494-f1e8-484b-a714-302c3c1ae4dc", + "createTime": "2025-12-16T17:45:24.618Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-binary-authorization", + "id": "7171858a-defb-4f28-aa92-7136e9dd80e2", + "createTime": "2025-12-16T17:45:23.894Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-billingbudgets", + "id": "5b2a92b7-ae38-48a9-877b-9f28c52d5c01", + "createTime": "2025-12-16T17:45:23.434Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-billing", + "id": "64692ff4-df4d-4bcf-9b1c-ae3675a2be1e", + "createTime": "2025-12-16T17:45:22.737Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigqueryreservation", + "id": "fe61e597-abdb-4c14-bc01-a3e1af61de31", + "createTime": "2025-12-16T17:45:22.208Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquerymigration", + "id": "e9610c1f-9adc-45a9-9810-e9aafb4aec1b", + "createTime": "2025-12-16T17:45:21.560Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquerydatatransfer", + "id": "98422976-3461-4e4e-8f56-b72069c285b0", + "createTime": "2025-12-16T17:45:21.012Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquerydatapolicy", + "id": "90dbae6e-f1ee-4e52-b327-6821cb9a9f10", + "createTime": "2025-12-16T17:45:20.420Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigqueryconnection", + "id": "5fc9f05d-eb1e-4a95-b454-459aae0b6f39", + "createTime": "2025-12-16T17:45:19.714Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bigquery-data-exchange", + "id": "1fdb81fe-63dd-46da-a987-4a63a7a93faf", + "createTime": "2025-12-16T17:45:19.258Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-biglake", + "id": "99a14e03-fde3-4f6f-977d-14579edd74ab", + "createTime": "2025-12-16T17:45:18.543Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-clientgateways", + "id": "4f05095d-1289-44d6-ab05-c1af268e1f49", + "createTime": "2025-12-16T17:45:17.970Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-clientconnectorservices", + "id": "9bc3b549-2adc-4c7f-afe0-14677994c962", + "createTime": "2025-12-16T17:45:17.342Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-appgateways", + "id": "3a11d143-7475-4fe8-adb2-211813661f39", + "createTime": "2025-12-16T17:45:16.796Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-appconnectors", + "id": "84d191e2-e2df-45c6-8b29-490d08c0fd7a", + "createTime": "2025-12-16T17:45:16.188Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-beyondcorp-appconnections", + "id": "2a1a8033-1d55-4937-a739-8229ee973572", + "createTime": "2025-12-16T17:45:15.478Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-batch", + "id": "6ea85143-2545-4cf3-8c33-db545e817f46", + "createTime": "2025-12-16T17:45:14.955Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-bare-metal-solution", + "id": "8729e59b-2ab8-4c41-b632-851012ebb770", + "createTime": "2025-12-16T17:45:14.270Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-backupdr", + "id": "8fbf4a3c-1bef-45d6-b397-8ee20ebefac0", + "createTime": "2025-12-16T17:45:13.698Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-automl", + "id": "929a5112-13b0-4679-9725-bcf7955d2316", + "createTime": "2025-12-16T17:45:13.067Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-assured-workloads", + "id": "e393453e-d8b4-4471-8bec-9a2ed9de1ba8", + "createTime": "2025-12-16T17:45:12.531Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "fix", + "sha": "ce3d3fbf5f0f205a38309afc827a7b3d4a230e3c", + "message": "partial release of java-asset and gapic-libraries-bom", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-asset", + "id": "3b63ab86-7586-4060-bf8f-1726b9a35dbd", + "createTime": "2025-12-16T17:45:11.906Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-artifact-registry", + "id": "f7a7ffbd-8eea-4fb5-bfab-685040407816", + "createTime": "2025-12-16T17:45:11.244Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.area120:google-area120-tables", + "id": "8189ac91-5874-47dd-ae07-4280931cedaf", + "createTime": "2025-12-16T17:45:10.738Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apphub", + "id": "64ca6d45-3c7e-476f-8f99-53deef191fc7", + "createTime": "2025-12-16T17:45:10.019Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-appengine-admin", + "id": "9333460a-5fda-455f-bb05-1151d0bff71b", + "createTime": "2025-12-16T17:45:09.322Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apikeys", + "id": "369dd924-a14a-43b9-bbfc-e2cdb2fb75a0", + "createTime": "2025-12-16T17:45:08.803Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apihub", + "id": "a1fdd63a-625c-4857-8d7f-5fb1d72cbf2f", + "createTime": "2025-12-16T17:45:08.181Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apigee-registry", + "id": "c4cefa2e-f5dd-4c1f-bac2-6d6766805000", + "createTime": "2025-12-16T17:45:07.667Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-apigee-connect", + "id": "6676a28d-8b2d-4bb3-9424-7713cdc7a0bb", + "createTime": "2025-12-16T17:45:07.154Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-api-gateway", + "id": "a18eeefc-0fe4-4916-bca1-5e0b7278c4ae", + "createTime": "2025-12-16T17:45:06.475Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-analyticshub", + "id": "bdaefc2c-5213-4a2f-9251-8334b2a909e4", + "createTime": "2025-12-16T17:45:05.956Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.analytics:google-analytics-data", + "id": "12ecd23f-acab-4dec-9c31-8fd2ec1d4da1", + "createTime": "2025-12-16T17:45:05.363Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.analytics:google-analytics-admin", + "id": "b1b6b524-fa3c-4f4c-ac16-bf79748bf783", + "createTime": "2025-12-16T17:45:04.681Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-alloydb-connectors", + "id": "b1358793-9007-4503-ae54-3ee50486504c", + "createTime": "2025-12-16T17:45:04.150Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-advisorynotifications", + "id": "7d777ae6-44b9-4699-8904-fd912b699d82", + "createTime": "2025-12-16T17:45:03.474Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-identity-accesscontextmanager", + "id": "c0689569-9611-4b62-a002-791a309eb1d6", + "createTime": "2025-12-16T17:45:02.787Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-accessapproval", + "id": "313bad82-0354-4836-bd97-b67a6ef2e099", + "createTime": "2025-12-16T17:45:02.278Z" + }, + { + "changes": [ + { + "type": "docs", + "sha": "2f0f2982905cbbdccd4bce9bf5fb801512ee42c2", + "message": "[alloydb] Clarify that [initial_user](http://_vscodecontentref_/3) is not required in Cluster", + "issues": [] + }, + { + "type": "feat", + "sha": "2f0f2982905cbbdccd4bce9bf5fb801512ee42c2", + "message": "[run] add SourceCode proto to Run container config", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-run", + "id": "cdcbb42d-bd6e-4a8f-8e48-31b8b8ae2830", + "createTime": "2025-12-16T17:45:01.662Z" + }, + { + "changes": [ + { + "type": "docs", + "sha": "2f0f2982905cbbdccd4bce9bf5fb801512ee42c2", + "message": "[alloydb] Clarify that [initial_user](http://_vscodecontentref_/3) is not required in Cluster", + "issues": [] + }, + { + "type": "feat", + "sha": "2f0f2982905cbbdccd4bce9bf5fb801512ee42c2", + "message": "[run] add SourceCode proto to Run container config", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-alloydb", + "id": "28884ff7-838a-4167-a79d-a32ad0595f9d", + "createTime": "2025-12-16T17:45:01.015Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "update the Java code generator (gapic-generator-java) to 2.64.2", + "issues": [], + "scope": "deps" + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[geminidataanalytics] add a QueryData API for NL2SQL conversion", + "issues": [] + }, + { + "type": "docs", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[dlp] add messages stating that Data Catalog actions are deprecated", + "issues": [] + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[aiplatform] add streaming function call argument API changes", + "issues": [] + }, + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[admanager] Added proto3 optional to Network primitive fields", + "issues": [], + "breakingChangeNote": "[admanager] Added proto3 optional to Network primitive fields" + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-geminidataanalytics", + "id": "f8be7f5d-157b-43ef-ad9a-4acf8492f13c", + "createTime": "2025-12-16T17:45:00.481Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "update the Java code generator (gapic-generator-java) to 2.64.2", + "issues": [], + "scope": "deps" + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[geminidataanalytics] add a QueryData API for NL2SQL conversion", + "issues": [] + }, + { + "type": "docs", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[dlp] add messages stating that Data Catalog actions are deprecated", + "issues": [] + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[aiplatform] add streaming function call argument API changes", + "issues": [] + }, + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[admanager] Added proto3 optional to Network primitive fields", + "issues": [], + "breakingChangeNote": "[admanager] Added proto3 optional to Network primitive fields" + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dlp", + "id": "bd94f5e3-a22e-49a5-95e4-8a08ba28c7ba", + "createTime": "2025-12-16T17:44:59.858Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "update the Java code generator (gapic-generator-java) to 2.64.2", + "issues": [], + "scope": "deps" + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[geminidataanalytics] add a QueryData API for NL2SQL conversion", + "issues": [] + }, + { + "type": "docs", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[dlp] add messages stating that Data Catalog actions are deprecated", + "issues": [] + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[aiplatform] add streaming function call argument API changes", + "issues": [] + }, + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[admanager] Added proto3 optional to Network primitive fields", + "issues": [], + "breakingChangeNote": "[admanager] Added proto3 optional to Network primitive fields" + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-aiplatform", + "id": "c80ebc27-edda-4ff4-a54d-efc051154871", + "createTime": "2025-12-16T17:44:59.188Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "update the Java code generator (gapic-generator-java) to 2.64.2", + "issues": [], + "scope": "deps" + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[geminidataanalytics] add a QueryData API for NL2SQL conversion", + "issues": [] + }, + { + "type": "docs", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[dlp] add messages stating that Data Catalog actions are deprecated", + "issues": [] + }, + { + "type": "feat", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[aiplatform] add streaming function call argument API changes", + "issues": [] + }, + { + "type": "fix", + "sha": "ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4", + "message": "[admanager] Added proto3 optional to Network primitive fields", + "issues": [], + "breakingChangeNote": "[admanager] Added proto3 optional to Network primitive fields" + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.api-ads:ad-manager", + "id": "72cb39df-380b-4a41-ad10-82ba6daa1f41", + "createTime": "2025-12-16T17:44:58.656Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "6854bbe08d3e785b9df14b43b3c1cbb105960c5e", + "message": "update dependency com.google.cloud:libraries-bom to v26.72.0", + "issues": [ + "11664" + ], + "scope": "deps" + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-vertexai", + "id": "3a1cc453-be2e-474b-82b8-91dce33743e0", + "createTime": "2025-12-16T17:44:58.038Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "6854bbe08d3e785b9df14b43b3c1cbb105960c5e", + "message": "update dependency com.google.cloud:libraries-bom to v26.72.0", + "issues": [ + "11664" + ], + "scope": "deps" + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-notification", + "id": "0ea99170-c4b2-41a0-a399-b3e8e2f3d609", + "createTime": "2025-12-16T17:44:57.464Z" + }, + { + "changes": [ + { + "type": "fix", + "sha": "6854bbe08d3e785b9df14b43b3c1cbb105960c5e", + "message": "update dependency com.google.cloud:libraries-bom to v26.72.0", + "issues": [ + "11664" + ], + "scope": "deps" + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dns", + "id": "e4a185a4-873e-4f81-bb44-6238feebcf50", + "createTime": "2025-12-16T17:44:56.975Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "b3789bdbde94f55a0ddac72e2938d3c9eaf7a64b", + "message": "[hypercomputecluster] new module for hypercomputecluster", + "issues": [ + "11821" + ] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-hypercomputecluster", + "id": "e448998a-fdcc-4b7b-8037-41883cc48c3a", + "createTime": "2025-12-16T17:44:56.406Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "c65852e94987e9d0cbc03451f106a4b088ffeb3b", + "message": "[gkerecommender] new module for gkerecommender", + "issues": [ + "11828" + ] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-gkerecommender", + "id": "a28ede08-db66-4463-ae3f-da429319eafe", + "createTime": "2025-12-16T17:44:55.773Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "2eadab502590fc3beb367e8f3a47b47c3f8cc6ce", + "message": "Generate Maintenance V1 library", + "issues": [ + "11824" + ] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-maintenance", + "id": "487c4adc-a978-40bf-855f-b83369f5fdb5", + "createTime": "2025-12-16T17:44:55.271Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-valkey", + "id": "2e6e98ef-7093-4129-9bd6-eb59f7768a30", + "createTime": "2025-12-16T17:44:54.689Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-storagebatchoperations", + "id": "68215bb9-c785-409a-a5f3-ffdba6b6d971", + "createTime": "2025-12-16T17:44:54.095Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-recaptchaenterprise", + "id": "8f436035-e8cb-4272-b37a-f8adcb70aee9", + "createTime": "2025-12-16T17:44:53.624Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dialogflow", + "id": "0480bcd8-670b-4613-8ed1-725b7dd428f9", + "createTime": "2025-12-16T17:44:53.053Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-dialogflow-cx", + "id": "4cd4040c-8c9c-45eb-8c2e-d44116150d30", + "createTime": "2025-12-16T17:44:52.553Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-compute", + "id": "79816c40-2302-49f0-a134-f238dffe7457", + "createTime": "2025-12-16T17:44:52.061Z" + }, + { + "changes": [ + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[valkey] A new field `Instance.simulate_maintenance_event` is added to message `.google.cloud.memorystore.v1.`", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[chat] Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[compute] [DIREGAPIC] Update v1 API definitions to revision 20251202", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[recaptchaenterprise] add verifiedBots field to RiskAnalysis and definitions for a Bot object to store metadata for a detected bot", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[storagebatchoperations] Add support for creating Job resource in dry-run mode", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow-cx] updated v3beta1 dialogflow client libraries", + "issues": [] + }, + { + "type": "feat", + "sha": "02a9cd49fcb54515e6094af962ef34f37740a498", + "message": "[dialogflow] updated v2 dialogflow client libraries", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] fix issue when using UrlContext tool", + "issues": [], + "breakingChangeNote": "[aiplatform] fix issue when using UrlContext tool" + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[compute] Update Compute Engine v1 API to revision 20251031", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add ExportArtifact API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Introduce RagManagedVertexVectorSearch as a new vector db option", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose FullFineTunedResources for full fine tuned deployments", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[gke-multi-cloud] added custom tolerations and labels support for Attached Clusters", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] update `ReplicatedVoiceConfig.mime_type` comment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] add transfer metadata options proto definition", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[parallelstore] update tickets component number", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[network-security] publish networksecurity v1beta1 api", + "issues": [] + }, + { + "type": "fix", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[channel] Changed field behavior for an existing field `entitlement_granularity` in message `.google.cloud.channel.v1.RepricingConfig`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A new field `radius_area` is added to message `.google.shopping.merchant.accounts.v1.Region`", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Expose zone when creating a FeatureOnlineStore", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[cloudbuild] Update GCB with latest proto changes", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[eventarc] add wide-scope Eventarc GoogleApiSource flags", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vectorsearch] Added TextSearch support to the batch search API", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[netapp] Add Squash Mode to Export Policy", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] Add support for developer connect based deployment", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `gpu_partition_size` in `machine_spec` v1 api", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[batch] added new provisioning models", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[backupdr] Adding new fields for CMEK and Retention Inheritance features", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[aiplatform] add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[vmmigration] add adaptation modifiers and storage pools to MigratingVM target defaults", + "issues": [] + }, + { + "type": "docs", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-accounts] A comment for enum `AccessRight` is changed", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[artifact-registry] add image_manifest field in DockerImage", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-products] Added the `product_id_base64_url_encoded` field to `InsertProductInputRequest`, `DeleteProductInputRequest`, and `GetProductRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-quota] Add the AccountLimit resource and its service to the quota bundle", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[shopping-merchant-inventories] Added the `product_id_base64_url_encoded` field to `ListLocalInventoriesRequest`, `InsertLocalInventoryRequest`, `DeleteLocalInventoryRequest`, `ListRegionalInventoriesRequest`, `InsertRegionalInventoryRequest`, and `DeleteRegionalInventoryRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + }, + { + "type": "feat", + "sha": "b8870346a399a02bdcca72ec064911bd51dbe532", + "message": "[java-shopping-merchant-issue-resolution] Added the `product_id_base64_url_encoded` field to `RenderProductIssuesRequest`. This allows for product IDs containing special characters to be correctly handled when unpadded base64url-encoded", + "issues": [] + } + ], + "version": "1.75.0", + "language": "JAVA", + "artifactName": "com.google.cloud:google-cloud-chat", + "id": "5dfe2fec-0eca-4067-93ee-8d27ea10fedc", + "createTime": "2025-12-16T17:44:51.380Z" + }, { "changes": [ { @@ -1054744,5 +1073301,5 @@ "createTime": "2023-02-03T16:27:23.198Z" } ], - "updateTime": "2025-11-14T23:05:18.676Z" + "updateTime": "2026-01-15T03:30:52.629Z" } \ No newline at end of file diff --git a/gapic-libraries-bom/pom.xml b/gapic-libraries-bom/pom.xml index a79f79ff0e68..0073fd1321aa 100644 --- a/gapic-libraries-bom/pom.xml +++ b/gapic-libraries-bom/pom.xml @@ -4,7 +4,7 @@ com.google.cloud gapic-libraries-bom pom - 1.75.0-SNAPSHOT + 1.76.0 Google Cloud Java BOM BOM for the libraries in google-cloud-java repository. Users should not @@ -15,7 +15,7 @@ google-cloud-pom-parent com.google.cloud - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-pom-parent/pom.xml @@ -24,1389 +24,1410 @@ com.google.analytics google-analytics-admin-bom - 0.91.0-SNAPSHOT + 0.92.0 pom import com.google.analytics google-analytics-data-bom - 0.92.0-SNAPSHOT + 0.93.0 pom import com.google.area120 google-area120-tables-bom - 0.85.0-SNAPSHOT + 0.86.0 pom import com.google.cloud google-cloud-accessapproval-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-advisorynotifications-bom - 0.70.0-SNAPSHOT + 0.71.0 pom import com.google.cloud google-cloud-aiplatform-bom - 3.82.0-SNAPSHOT + 3.83.0 pom import com.google.cloud google-cloud-alloydb-bom - 0.70.0-SNAPSHOT + 0.71.0 pom import com.google.cloud google-cloud-alloydb-connectors-bom - 0.59.0-SNAPSHOT + 0.60.0 pom import com.google.cloud google-cloud-analyticshub-bom - 0.78.0-SNAPSHOT + 0.79.0 pom import com.google.cloud google-cloud-api-gateway-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-apigee-connect-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-apigee-registry-bom - 0.81.0-SNAPSHOT + 0.82.0 pom import com.google.cloud google-cloud-apihub-bom - 0.34.0-SNAPSHOT + 0.35.0 pom import com.google.cloud google-cloud-apikeys-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-appengine-admin-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-apphub-bom - 0.45.0-SNAPSHOT + 0.46.0 pom import com.google.cloud google-cloud-artifact-registry-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-asset-bom - 3.85.0-SNAPSHOT + 3.86.0 pom import com.google.cloud google-cloud-assured-workloads-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-automl-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-backupdr-bom - 0.40.0-SNAPSHOT + 0.41.0 pom import com.google.cloud google-cloud-bare-metal-solution-bom - 0.81.0-SNAPSHOT + 0.82.0 pom import com.google.cloud google-cloud-batch-bom - 0.81.0-SNAPSHOT + 0.82.0 pom import com.google.cloud google-cloud-beyondcorp-appconnections-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-beyondcorp-appconnectors-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-beyondcorp-appgateways-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-beyondcorp-clientconnectorservices-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-beyondcorp-clientgateways-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-biglake-bom - 0.69.0-SNAPSHOT + 0.70.0 pom import com.google.cloud google-cloud-bigquery-data-exchange-bom - 2.76.0-SNAPSHOT + 2.77.0 pom import com.google.cloud google-cloud-bigqueryconnection-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-bigquerydatapolicy-bom - 0.78.0-SNAPSHOT + 0.79.0 pom import com.google.cloud google-cloud-bigquerydatatransfer-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-bigquerymigration-bom - 0.84.0-SNAPSHOT + 0.85.0 pom import com.google.cloud google-cloud-bigqueryreservation-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-billing-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-billingbudgets-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-binary-authorization-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-build-bom - 3.83.0-SNAPSHOT + 3.84.0 pom import com.google.cloud google-cloud-capacityplanner-bom - 0.4.0-SNAPSHOT + 0.5.0 pom import com.google.cloud google-cloud-certificate-manager-bom - 0.84.0-SNAPSHOT + 0.85.0 pom import com.google.cloud google-cloud-channel-bom - 3.85.0-SNAPSHOT + 3.86.0 pom import com.google.cloud google-cloud-chat-bom - 0.45.0-SNAPSHOT + 0.46.0 pom import com.google.cloud google-cloud-chronicle-bom - 0.19.0-SNAPSHOT + 0.20.0 + pom + import + + + com.google.cloud + google-cloud-cloudapiregistry-bom + 0.1.0 pom import com.google.cloud google-cloud-cloudcommerceconsumerprocurement-bom - 0.79.0-SNAPSHOT + 0.80.0 pom import com.google.cloud google-cloud-cloudcontrolspartner-bom - 0.45.0-SNAPSHOT + 0.46.0 pom import com.google.cloud google-cloud-cloudquotas-bom - 0.49.0-SNAPSHOT + 0.50.0 pom import com.google.cloud google-cloud-cloudsecuritycompliance-bom - 0.8.0-SNAPSHOT + 0.9.0 pom import com.google.cloud google-cloud-cloudsupport-bom - 0.65.0-SNAPSHOT + 0.66.0 pom import com.google.cloud google-cloud-compute-bom - 1.91.0-SNAPSHOT + 1.92.0 pom import com.google.cloud google-cloud-confidentialcomputing-bom - 0.67.0-SNAPSHOT + 0.68.0 pom import com.google.cloud google-cloud-configdelivery-bom - 0.15.0-SNAPSHOT + 0.16.0 pom import com.google.cloud google-cloud-connectgateway-bom - 0.33.0-SNAPSHOT + 0.34.0 pom import com.google.cloud google-cloud-contact-center-insights-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-container-bom - 2.84.0-SNAPSHOT + 2.85.0 pom import com.google.cloud google-cloud-containeranalysis-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-contentwarehouse-bom - 0.77.0-SNAPSHOT + 0.78.0 pom import com.google.cloud google-cloud-data-fusion-bom - 1.81.0-SNAPSHOT + 1.82.0 pom import com.google.cloud google-cloud-databasecenter-bom - 0.2.0-SNAPSHOT + 0.3.0 pom import com.google.cloud google-cloud-datacatalog-bom - 1.87.0-SNAPSHOT + 1.88.0 pom import com.google.cloud google-cloud-dataflow-bom - 0.85.0-SNAPSHOT + 0.86.0 pom import com.google.cloud google-cloud-dataform-bom - 0.80.0-SNAPSHOT + 0.81.0 pom import com.google.cloud google-cloud-datalabeling-bom - 0.201.0-SNAPSHOT + 0.202.0 pom import com.google.cloud google-cloud-datalineage-bom - 0.73.0-SNAPSHOT + 0.74.0 pom import com.google.cloud google-cloud-dataplex-bom - 1.79.0-SNAPSHOT + 1.80.0 pom import com.google.cloud google-cloud-dataproc-bom - 4.78.0-SNAPSHOT + 4.79.0 pom import com.google.cloud google-cloud-dataproc-metastore-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-datastream-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-deploy-bom - 1.79.0-SNAPSHOT + 1.80.0 pom import com.google.cloud google-cloud-developerconnect-bom - 0.38.0-SNAPSHOT + 0.39.0 pom import com.google.cloud google-cloud-devicestreaming-bom - 0.21.0-SNAPSHOT + 0.22.0 pom import com.google.cloud google-cloud-dialogflow-bom - 4.87.0-SNAPSHOT + 4.88.0 pom import com.google.cloud google-cloud-dialogflow-cx-bom - 0.92.0-SNAPSHOT + 0.93.0 pom import com.google.cloud google-cloud-discoveryengine-bom - 0.77.0-SNAPSHOT + 0.78.0 pom import com.google.cloud google-cloud-distributedcloudedge-bom - 0.78.0-SNAPSHOT + 0.79.0 pom import com.google.cloud google-cloud-dlp-bom - 3.85.0-SNAPSHOT + 3.86.0 pom import com.google.cloud google-cloud-dms-bom - 2.80.0-SNAPSHOT + 2.81.0 pom import com.google.cloud google-cloud-dns - 2.79.0-SNAPSHOT + 2.80.0 com.google.cloud google-cloud-document-ai-bom - 2.85.0-SNAPSHOT + 2.86.0 pom import com.google.cloud google-cloud-domains-bom - 1.78.0-SNAPSHOT + 1.79.0 pom import com.google.cloud google-cloud-edgenetwork-bom - 0.49.0-SNAPSHOT + 0.50.0 pom import com.google.cloud google-cloud-enterpriseknowledgegraph-bom - 0.77.0-SNAPSHOT + 0.78.0 pom import com.google.cloud google-cloud-errorreporting-bom - 0.202.0-beta-SNAPSHOT + 0.203.0-beta pom import com.google.cloud google-cloud-essential-contacts-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-eventarc-bom - 1.81.0-SNAPSHOT + 1.82.0 pom import com.google.cloud google-cloud-eventarc-publishing-bom - 0.81.0-SNAPSHOT + 0.82.0 pom import com.google.cloud google-cloud-filestore-bom - 1.82.0-SNAPSHOT + 1.83.0 pom import com.google.cloud google-cloud-financialservices-bom - 0.22.0-SNAPSHOT + 0.23.0 pom import com.google.cloud google-cloud-functions-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-gdchardwaremanagement-bom - 0.36.0-SNAPSHOT + 0.37.0 pom import com.google.cloud google-cloud-geminidataanalytics-bom - 0.9.0-SNAPSHOT + 0.10.0 pom import com.google.cloud google-cloud-gke-backup-bom - 0.80.0-SNAPSHOT + 0.81.0 pom import com.google.cloud google-cloud-gke-connect-gateway-bom - 0.82.0-SNAPSHOT + 0.83.0 pom import com.google.cloud google-cloud-gke-multi-cloud-bom - 0.80.0-SNAPSHOT + 0.81.0 pom import com.google.cloud google-cloud-gkehub-bom - 1.81.0-SNAPSHOT + 1.82.0 + pom + import + + + com.google.cloud + google-cloud-gkerecommender-bom + 0.2.0 pom import com.google.cloud google-cloud-gsuite-addons-bom - 2.81.0-SNAPSHOT + 2.82.0 + pom + import + + + com.google.cloud + google-cloud-hypercomputecluster-bom + 0.2.0 pom import com.google.cloud google-cloud-iamcredentials-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-iap-bom - 0.37.0-SNAPSHOT + 0.38.0 pom import com.google.cloud google-cloud-ids-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-infra-manager-bom - 0.58.0-SNAPSHOT + 0.59.0 pom import com.google.cloud google-cloud-iot-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-kms-bom - 2.84.0-SNAPSHOT + 2.85.0 pom import com.google.cloud google-cloud-kmsinventory-bom - 0.70.0-SNAPSHOT + 0.71.0 pom import com.google.cloud google-cloud-language-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-licensemanager-bom - 0.14.0-SNAPSHOT + 0.15.0 pom import com.google.cloud google-cloud-life-sciences-bom - 0.83.0-SNAPSHOT + 0.84.0 pom import com.google.cloud google-cloud-live-stream-bom - 0.83.0-SNAPSHOT + 0.84.0 pom import com.google.cloud google-cloud-locationfinder-bom - 0.6.0-SNAPSHOT + 0.7.0 pom import com.google.cloud google-cloud-lustre-bom - 0.21.0-SNAPSHOT + 0.22.0 pom import com.google.cloud google-cloud-maintenance-bom - 0.15.0-SNAPSHOT + 0.16.0 pom import com.google.cloud google-cloud-managed-identities-bom - 1.79.0-SNAPSHOT + 1.80.0 pom import com.google.cloud google-cloud-managedkafka-bom - 0.37.0-SNAPSHOT + 0.38.0 pom import com.google.cloud google-cloud-mediatranslation-bom - 0.87.0-SNAPSHOT + 0.88.0 pom import com.google.cloud google-cloud-meet-bom - 0.48.0-SNAPSHOT + 0.49.0 pom import com.google.cloud google-cloud-memcache-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-migrationcenter-bom - 0.63.0-SNAPSHOT + 0.64.0 pom import com.google.cloud google-cloud-modelarmor-bom - 0.22.0-SNAPSHOT + 0.23.0 pom import com.google.cloud google-cloud-monitoring-bom - 3.82.0-SNAPSHOT + 3.83.0 pom import com.google.cloud google-cloud-monitoring-dashboard-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-monitoring-metricsscope-bom - 0.75.0-SNAPSHOT + 0.76.0 pom import com.google.cloud google-cloud-netapp-bom - 0.60.0-SNAPSHOT + 0.61.0 pom import com.google.cloud google-cloud-network-management-bom - 1.82.0-SNAPSHOT + 1.83.0 pom import com.google.cloud google-cloud-network-security-bom - 0.84.0-SNAPSHOT + 0.85.0 pom import com.google.cloud google-cloud-networkconnectivity-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-networkservices-bom - 0.37.0-SNAPSHOT + 0.38.0 pom import com.google.cloud google-cloud-notebooks-bom - 1.79.0-SNAPSHOT + 1.80.0 pom import com.google.cloud google-cloud-notification - 0.199.0-beta-SNAPSHOT + 0.200.0-beta com.google.cloud google-cloud-optimization-bom - 1.79.0-SNAPSHOT + 1.80.0 pom import com.google.cloud google-cloud-oracledatabase-bom - 0.30.0-SNAPSHOT + 0.31.0 pom import com.google.cloud google-cloud-orchestration-airflow-bom - 1.81.0-SNAPSHOT + 1.82.0 pom import com.google.cloud google-cloud-orgpolicy-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-os-config-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-os-login-bom - 2.80.0-SNAPSHOT + 2.81.0 pom import com.google.cloud google-cloud-parallelstore-bom - 0.44.0-SNAPSHOT + 0.45.0 pom import com.google.cloud google-cloud-parametermanager-bom - 0.25.0-SNAPSHOT + 0.26.0 pom import com.google.cloud google-cloud-phishingprotection-bom - 0.112.0-SNAPSHOT + 0.113.0 pom import com.google.cloud google-cloud-policy-troubleshooter-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-policysimulator-bom - 0.60.0-SNAPSHOT + 0.61.0 pom import com.google.cloud google-cloud-private-catalog-bom - 0.83.0-SNAPSHOT + 0.84.0 pom import com.google.cloud google-cloud-privilegedaccessmanager-bom - 0.35.0-SNAPSHOT + 0.36.0 pom import com.google.cloud google-cloud-profiler-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-publicca-bom - 0.78.0-SNAPSHOT + 0.79.0 pom import com.google.cloud google-cloud-rapidmigrationassessment-bom - 0.64.0-SNAPSHOT + 0.65.0 pom import com.google.cloud google-cloud-recaptchaenterprise-bom - 3.78.0-SNAPSHOT + 3.79.0 pom import com.google.cloud google-cloud-recommendations-ai-bom - 0.88.0-SNAPSHOT + 0.89.0 pom import com.google.cloud google-cloud-recommender-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-redis-bom - 2.84.0-SNAPSHOT + 2.85.0 pom import com.google.cloud google-cloud-redis-cluster-bom - 0.53.0-SNAPSHOT + 0.54.0 pom import com.google.cloud google-cloud-resourcemanager-bom - 1.83.0-SNAPSHOT + 1.84.0 pom import com.google.cloud google-cloud-retail-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-run-bom - 0.81.0-SNAPSHOT + 0.82.0 pom import com.google.cloud google-cloud-saasservicemgmt-bom - 0.11.0-SNAPSHOT + 0.12.0 pom import com.google.cloud google-cloud-scheduler-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-secretmanager-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-securesourcemanager-bom - 0.51.0-SNAPSHOT + 0.52.0 pom import com.google.cloud google-cloud-security-private-ca-bom - 2.83.0-SNAPSHOT + 2.84.0 pom import com.google.cloud google-cloud-securitycenter-bom - 2.89.0-SNAPSHOT + 2.90.0 pom import com.google.cloud google-cloud-securitycenter-settings-bom - 0.84.0-SNAPSHOT + 0.85.0 pom import com.google.cloud google-cloud-securitycentermanagement-bom - 0.49.0-SNAPSHOT + 0.50.0 pom import com.google.cloud google-cloud-securityposture-bom - 0.46.0-SNAPSHOT + 0.47.0 pom import com.google.cloud google-cloud-service-control-bom - 1.81.0-SNAPSHOT + 1.82.0 pom import com.google.cloud google-cloud-service-management-bom - 3.79.0-SNAPSHOT + 3.80.0 pom import com.google.cloud google-cloud-service-usage-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-servicedirectory-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-servicehealth-bom - 0.48.0-SNAPSHOT + 0.49.0 pom import com.google.cloud google-cloud-shell-bom - 2.80.0-SNAPSHOT + 2.81.0 pom import com.google.cloud google-cloud-spanneradapter-bom - 0.17.0-SNAPSHOT + 0.18.0 pom import com.google.cloud google-cloud-speech-bom - 4.76.0-SNAPSHOT + 4.77.0 pom import com.google.cloud google-cloud-storage-transfer-bom - 1.81.0-SNAPSHOT + 1.82.0 pom import com.google.cloud google-cloud-storagebatchoperations-bom - 0.21.0-SNAPSHOT + 0.22.0 pom import com.google.cloud google-cloud-storageinsights-bom - 0.66.0-SNAPSHOT + 0.67.0 pom import com.google.cloud google-cloud-talent-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-tasks-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-telcoautomation-bom - 0.51.0-SNAPSHOT + 0.52.0 pom import com.google.cloud google-cloud-texttospeech-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-tpu-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-trace-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-translate-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-valkey-bom - 0.27.0-SNAPSHOT + 0.28.0 pom import com.google.cloud google-cloud-vectorsearch-bom - 0.2.0-SNAPSHOT + 0.3.0 pom import com.google.cloud google-cloud-vertexai-bom - 1.41.0-SNAPSHOT + 1.42.0 pom import com.google.cloud google-cloud-video-intelligence-bom - 2.80.0-SNAPSHOT + 2.81.0 pom import com.google.cloud google-cloud-video-stitcher-bom - 0.81.0-SNAPSHOT + 0.82.0 pom import com.google.cloud google-cloud-video-transcoder-bom - 1.80.0-SNAPSHOT + 1.81.0 pom import com.google.cloud google-cloud-vision-bom - 3.79.0-SNAPSHOT + 3.80.0 pom import com.google.cloud google-cloud-visionai-bom - 0.38.0-SNAPSHOT + 0.39.0 pom import com.google.cloud google-cloud-vmmigration-bom - 1.81.0-SNAPSHOT + 1.82.0 pom import com.google.cloud google-cloud-vmwareengine-bom - 0.75.0-SNAPSHOT + 0.76.0 pom import com.google.cloud google-cloud-vpcaccess-bom - 2.82.0-SNAPSHOT + 2.83.0 pom import com.google.cloud google-cloud-webrisk-bom - 2.80.0-SNAPSHOT + 2.81.0 pom import com.google.cloud google-cloud-websecurityscanner-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-workflow-executions-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-workflows-bom - 2.81.0-SNAPSHOT + 2.82.0 pom import com.google.cloud google-cloud-workspaceevents-bom - 0.45.0-SNAPSHOT + 0.46.0 pom import com.google.cloud google-cloud-workstations-bom - 0.69.0-SNAPSHOT + 0.70.0 pom import com.google.cloud google-iam-admin-bom - 3.76.0-SNAPSHOT + 3.77.0 pom import com.google.cloud google-iam-policy-bom - 1.79.0-SNAPSHOT + 1.80.0 pom import com.google.cloud google-identity-accesscontextmanager-bom - 1.82.0-SNAPSHOT + 1.83.0 pom import io.grafeas grafeas - 2.82.0-SNAPSHOT + 2.83.0 diff --git a/generation/apply_current_versions.sh b/generation/apply_current_versions.sh deleted file mode 100644 index 7c87a8f60a14..000000000000 --- a/generation/apply_current_versions.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# This script sets the "current-version" written in versions.txt applied to all -# pom.xml files in this monorepo. -# This script plays supplemental role just in case Release Please pull request -# fails to update all files. - -# Usage: -# # Run this script at the root of the monorepo -# bash generation/apply_current_versions.sh - -set -e - -SED_OPTIONS="" -for versions_file in $(find . -mindepth 0 -maxdepth 2 -name versions.txt \ - |sort --dictionary-order); do - for KV in $(cut -f1,3 -d: $versions_file |grep -v "#"); do - K=${KV%:*}; V=${KV#*:} - echo Key:$K, Value:$V; - SED_OPTIONS="$SED_OPTIONS -e /x-version-update:$K:current/{s|.*<\/version>|$V<\/version>|;}" - done -done - -echo "Running sed command. It may take few minutes." -find . -maxdepth 3 -name pom.xml |sort --dictionary-order |xargs sed -i.bak $SED_OPTIONS -find . -maxdepth 3 -name pom.xml.bak |xargs rm diff --git a/generation/apply_versions.sh b/generation/apply_versions.sh new file mode 100755 index 000000000000..99d1ab3a3109 --- /dev/null +++ b/generation/apply_versions.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +# This script sets the "current-version" written in versions.txt applied to all +# pom.xml files in this monorepo. +# This script plays supplemental role just in case Release Please pull request +# fails to update all files. + +# Usage: +# # Run this script at the root of the monorepo +# bash generation/apply_current_versions.sh + +set -e + +versions_file=$1 +column_name=$2 +if [[ -z "$versions_file" || -z "$column_name" ]]; then + echo "Replaces the versions annotated with the x-version-update tag in" + echo "all pom.xml files in the current working directory and its subdirectories" + echo "with the versions specified in the versions.txt file (current or released)." + echo + echo "Usage: $0 path/to/versions.txt (released|current)" + exit 1 +fi +if [[ "$column_name" == "released" ]]; then + column_index=2 +elif [[ "$column_name" == "current" ]]; then + column_index=3 +elif "$column_name" != "current" ]]; then + echo "Error: column_name must be either 'released' or 'current'" + exit 1 +fi + + +SED_OPTIONS="" + +# The second column is +for KV in $(cut -f1,"${column_index}" -d: $versions_file |grep -v "#"); do + K=${KV%:*}; V=${KV#*:} + echo Key:$K, Value:$V; + SED_OPTIONS="$SED_OPTIONS -e /x-version-update:$K:current/{s|.*<\/version>|$V<\/version>|;}" +done + +echo "Running sed command. It may take few minutes." +find . -maxdepth 3 -name pom.xml |sort --dictionary-order |xargs sed -i.bak $SED_OPTIONS +find . -maxdepth 3 -name pom.xml.bak |xargs rm diff --git a/generation_config.yaml b/generation_config.yaml index d400f1a2fb44..76a9c95606a8 100644 --- a/generation_config.yaml +++ b/generation_config.yaml @@ -1,6 +1,6 @@ -gapic_generator_version: 2.64.1 -googleapis_commitish: ba80e9b5251c974d18c3c25fa905e2d0ae4a0f02 -libraries_bom_version: 26.71.0 +gapic_generator_version: 2.65.1 +googleapis_commitish: 415914bd49d41beaae8a9adb348ee2587c93aa70 +libraries_bom_version: 26.73.0 # the libraries are ordered with respect to library name, which is # java-{library.library_name} or java-{library.api-shortname} when @@ -532,6 +532,23 @@ libraries: GAPICs: - proto_path: google/cloud/chronicle/v1 requires_billing: true +- api_shortname: cloudapiregistry + name_pretty: Cloud API Registry API + product_documentation: https://docs.cloud.google.com/api-registry/docs/overview + api_description: Cloud API Registry lets you discover, govern, use, and monitor + Model Context Protocol (MCP) servers and tools provided by Google, or by your + organization through Apigee API hub. + client_documentation: + https://cloud.google.com/java/docs/reference/google-cloud-cloudapiregistry/latest/overview + release_level: preview + distribution_name: com.google.cloud:google-cloud-cloudapiregistry + api_id: cloudapiregistry.googleapis.com + library_type: GAPIC_AUTO + group_id: com.google.cloud + cloud_api: true + GAPICs: + - proto_path: google/cloud/apiregistry/v1beta + requires_billing: true - api_shortname: cloudbuild name_pretty: Cloud Build product_documentation: https://cloud.google.com/cloud-build/ @@ -1209,6 +1226,24 @@ libraries: - proto_path: google/cloud/gkehub/policycontroller/v1beta - proto_path: google/cloud/gkehub/servicemesh/v1beta +- api_shortname: gkerecommender + name_pretty: GKE Recommender API + product_documentation: + https://cloud.google.com/kubernetes-engine/docs/how-to/machine-learning/inference-quickstart + api_description: lets you analyze the performance and cost-efficiency of your inference + workloads, and make data-driven decisions about resource allocation and model + deployment strategies. + client_documentation: + https://cloud.google.com/java/docs/reference/google-cloud-gkerecommender/latest/overview + release_level: preview + distribution_name: com.google.cloud:google-cloud-gkerecommender + api_id: gkerecommender.googleapis.com + library_type: GAPIC_AUTO + group_id: com.google.cloud + cloud_api: true + GAPICs: + - proto_path: google/cloud/gkerecommender/v1 + requires_billing: true - api_shortname: containeranalysis name_pretty: Grafeas product_documentation: https://grafeas.io @@ -1237,6 +1272,22 @@ libraries: - proto_path: google/apps/script/type/sheets - proto_path: google/apps/script/type/slides +- api_shortname: hypercomputecluster + name_pretty: Cluster Director API + product_documentation: + https://cloud.google.com/blog/products/compute/managed-slurm-and-other-cluster-director-enhancements + api_description: simplifies cluster management across compute, network, and storage + client_documentation: + https://cloud.google.com/java/docs/reference/google-cloud-hypercomputecluster/latest/overview + release_level: preview + distribution_name: com.google.cloud:google-cloud-hypercomputecluster + api_id: hypercomputecluster.googleapis.com + library_type: GAPIC_AUTO + group_id: com.google.cloud + cloud_api: true + GAPICs: + - proto_path: google/cloud/hypercomputecluster/v1beta + requires_billing: true - api_shortname: iam name_pretty: IAM product_documentation: n/a @@ -1471,6 +1522,7 @@ libraries: cloud_api: true GAPICs: - proto_path: google/cloud/maintenance/api/v1beta + - proto_path: google/cloud/maintenance/api/v1 requires_billing: true rpc_documentation: https://cloud.google.com/unified-maintenance/docs/reference/rpc - api_shortname: managedidentities diff --git a/google-cloud-jar-parent/pom.xml b/google-cloud-jar-parent/pom.xml index 40663ed33585..d6527b5e3fd3 100644 --- a/google-cloud-jar-parent/pom.xml +++ b/google-cloud-jar-parent/pom.xml @@ -5,7 +5,7 @@ 4.0.0 google-cloud-jar-parent com.google.cloud - 1.75.0-SNAPSHOT + 1.76.0 pom Google Cloud JAR Parent @@ -15,7 +15,7 @@ com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-pom-parent/pom.xml @@ -46,7 +46,7 @@ com.google.cloud google-cloud-storage - 2.52.3 + 2.60.0 com.google.apis @@ -66,7 +66,7 @@ com.google.apis google-api-services-storage - v1-rev20250524-2.0.0 + v1-rev20251118-2.0.0 diff --git a/google-cloud-pom-parent/pom.xml b/google-cloud-pom-parent/pom.xml index 5422521813b3..fb54eb496f26 100644 --- a/google-cloud-pom-parent/pom.xml +++ b/google-cloud-pom-parent/pom.xml @@ -5,7 +5,7 @@ 4.0.0 google-cloud-pom-parent com.google.cloud - 1.75.0-SNAPSHOT + 1.76.0 pom Google Cloud POM Parent https://github.com/googleapis/google-cloud-java @@ -15,7 +15,7 @@ com.google.cloud sdk-platform-java-config - 3.54.1 + 3.55.1 diff --git a/java-accessapproval/CHANGELOG.md b/java-accessapproval/CHANGELOG.md index ccacc20c47ca..7e31fcf84b95 100644 --- a/java-accessapproval/CHANGELOG.md +++ b/java-accessapproval/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 2.83.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 2.82.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 2.79.0 (2025-10-21) ### Dependencies diff --git a/java-accessapproval/README.md b/java-accessapproval/README.md index bb2c8954a83c..9d0d8149473a 100644 --- a/java-accessapproval/README.md +++ b/java-accessapproval/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-accessapproval - 2.79.0 + 2.82.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-accessapproval:2.79.0' +implementation 'com.google.cloud:google-cloud-accessapproval:2.82.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-accessapproval" % "2.79.0" +libraryDependencies += "com.google.cloud" % "google-cloud-accessapproval" % "2.82.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/access-approval/docs/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-accessapproval/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-accessapproval.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-accessapproval/2.79.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-accessapproval/2.82.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-accessapproval/google-cloud-accessapproval-bom/pom.xml b/java-accessapproval/google-cloud-accessapproval-bom/pom.xml index 46f97fb0540a..a127cfa438bc 100644 --- a/java-accessapproval/google-cloud-accessapproval-bom/pom.xml +++ b/java-accessapproval/google-cloud-accessapproval-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-accessapproval-bom - 2.82.0-SNAPSHOT + 2.83.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -23,17 +23,17 @@ com.google.cloud google-cloud-accessapproval - 2.82.0-SNAPSHOT + 2.83.0 com.google.api.grpc grpc-google-cloud-accessapproval-v1 - 2.82.0-SNAPSHOT + 2.83.0 com.google.api.grpc proto-google-cloud-accessapproval-v1 - 2.82.0-SNAPSHOT + 2.83.0 diff --git a/java-accessapproval/google-cloud-accessapproval/pom.xml b/java-accessapproval/google-cloud-accessapproval/pom.xml index 93a5eb5f61fc..064f8d632bc2 100644 --- a/java-accessapproval/google-cloud-accessapproval/pom.xml +++ b/java-accessapproval/google-cloud-accessapproval/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-accessapproval - 2.82.0-SNAPSHOT + 2.83.0 jar Google Cloud Access Approval Java idiomatic client for Google Cloud accessapproval com.google.cloud google-cloud-accessapproval-parent - 2.82.0-SNAPSHOT + 2.83.0 google-cloud-accessapproval diff --git a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClient.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClient.java index a1f91335882c..ffd61f9facc4 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClient.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminSettings.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminSettings.java index 9f997cddaf78..bf0db413e9a9 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminSettings.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccessApprovalAdminSettings extends ClientSettings { diff --git a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/package-info.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/package-info.java index aad15ac94927..63fbeb5dbd19 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/package-info.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStub.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStub.java index ffe0fe6ce171..13a6ce5efb57 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStub.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStubSettings.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStubSettings.java index 14e628bdcb79..f21f3651ab23 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStubSettings.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/AccessApprovalStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -116,8 +116,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccessApprovalStubSettings extends StubSettings { diff --git a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalCallableFactory.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalCallableFactory.java index 012eaee9e46e..d779978da6ff 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalCallableFactory.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalStub.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalStub.java index 62342bdeb81f..d8eab392b6ce 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalStub.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/GrpcAccessApprovalStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalCallableFactory.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalCallableFactory.java index 13d72c240731..03ef3e7e9227 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalCallableFactory.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalStub.java b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalStub.java index 334f189781af..c7b181a56aa1 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalStub.java +++ b/java-accessapproval/google-cloud-accessapproval/src/main/java/com/google/cloud/accessapproval/v1/stub/HttpJsonAccessApprovalStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientHttpJsonTest.java b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientHttpJsonTest.java index 333651fbd366..1ec7516549c7 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientHttpJsonTest.java +++ b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientTest.java b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientTest.java index 654d3d7ec599..0021e6caa5e6 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientTest.java +++ b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/AccessApprovalAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApproval.java b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApproval.java index b4bdc0131ac3..d394f3b90df9 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApproval.java +++ b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApproval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApprovalImpl.java b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApprovalImpl.java index e80aaa5d1647..3969f6fb6c54 100644 --- a/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApprovalImpl.java +++ b/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/MockAccessApprovalImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/grpc-google-cloud-accessapproval-v1/pom.xml b/java-accessapproval/grpc-google-cloud-accessapproval-v1/pom.xml index 8af4ea3f28fa..8c45b9e99b35 100644 --- a/java-accessapproval/grpc-google-cloud-accessapproval-v1/pom.xml +++ b/java-accessapproval/grpc-google-cloud-accessapproval-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-accessapproval-v1 - 2.82.0-SNAPSHOT + 2.83.0 grpc-google-cloud-accessapproval-v1 GRPC library for grpc-google-cloud-accessapproval-v1 com.google.cloud google-cloud-accessapproval-parent - 2.82.0-SNAPSHOT + 2.83.0 diff --git a/java-accessapproval/grpc-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalGrpc.java b/java-accessapproval/grpc-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalGrpc.java index 5a091588c09c..dfe99b46aa0a 100644 --- a/java-accessapproval/grpc-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalGrpc.java +++ b/java-accessapproval/grpc-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/pom.xml b/java-accessapproval/pom.xml index 9b2b9dd93d4b..ba1e3c2cb4ae 100644 --- a/java-accessapproval/pom.xml +++ b/java-accessapproval/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-accessapproval-parent pom - 2.82.0-SNAPSHOT + 2.83.0 Google Cloud Access Approval Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.api.grpc proto-google-cloud-accessapproval-v1 - 2.82.0-SNAPSHOT + 2.83.0 com.google.api.grpc grpc-google-cloud-accessapproval-v1 - 2.82.0-SNAPSHOT + 2.83.0 com.google.cloud google-cloud-accessapproval - 2.82.0-SNAPSHOT + 2.83.0 diff --git a/java-accessapproval/proto-google-cloud-accessapproval-v1/pom.xml b/java-accessapproval/proto-google-cloud-accessapproval-v1/pom.xml index a2d4d2e0d6b6..150759496e3a 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/pom.xml +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-accessapproval-v1 - 2.82.0-SNAPSHOT + 2.83.0 proto-google-cloud-accessapproval-v1beta1 PROTO library for proto-google-cloud-accessapproval-v1 com.google.cloud google-cloud-accessapproval-parent - 2.82.0-SNAPSHOT + 2.83.0 diff --git a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalProto.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalProto.java index 5b365bb8caf7..9fed624b715d 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalProto.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccount.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccount.java index f7b316ce1dc5..3628f7822aa5 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccount.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccountOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccountOrBuilder.java index dbc13d50f117..d37bedaff67e 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccountOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalServiceAccountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettings.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettings.java index db53a83ba345..8cb658e79b42 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettings.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsName.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsName.java index ccf844c24064..6f0ef43b31f3 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsName.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsOrBuilder.java index bb30f35f32ed..a047dbee98ee 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessApprovalSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocations.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocations.java index 46985bc6101b..f64b07b52e0e 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocations.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocationsOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocationsOrBuilder.java index 23e7b0104bf8..400862fdd5f3 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocationsOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessLocationsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReason.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReason.java index 1fd2aaf12681..9ff6151e2d59 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReason.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReason.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReasonOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReasonOrBuilder.java index beb11bccde1c..389cdde39a58 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReasonOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/AccessReasonOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequest.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequest.java index 15046fe53eae..862d53a23b18 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequest.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestName.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestName.java index 107ece60a6ae..b09cf8b95502 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestName.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestOrBuilder.java index b12a5a6811ca..787727f05157 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApprovalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessage.java index 36fce2c85ce2..b16dce9011f2 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessageOrBuilder.java index d55f87859782..b26e5d1e153c 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveApprovalRequestMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecision.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecision.java index 5e7a9ed1dc6e..abab939a2b39 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecision.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecisionOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecisionOrBuilder.java index 7219bbd2517d..f9238a2786b0 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecisionOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ApproveDecisionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessage.java index 277d1c712a46..965a712771dc 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessageOrBuilder.java index 63f859b7b1ba..2af05c04d93f 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DeleteAccessApprovalSettingsMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessage.java index 688d65dc25ff..bc30c438bbab 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessageOrBuilder.java index ae18ab56d639..da589ff49d7c 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissApprovalRequestMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecision.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecision.java index 282bb9a8e77d..b8d006920fd1 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecision.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecisionOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecisionOrBuilder.java index ebd0039ac0e1..503b32990674 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecisionOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/DismissDecisionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledService.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledService.java index b8fd3a1643a1..f2996e9d6d02 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledService.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledServiceOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledServiceOrBuilder.java index 47c1e1001d6e..063b07192b92 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledServiceOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrolledServiceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrollmentLevel.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrollmentLevel.java index f70e9867cf0a..d77683d53dd7 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrollmentLevel.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/EnrollmentLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/FolderName.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/FolderName.java index 825aac232b57..7dd43e9c6d58 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/FolderName.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/FolderName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessage.java index b96dabf1fb2f..5de2121f63fc 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessageOrBuilder.java index e7623f706905..ce75ab92b54a 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalServiceAccountMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessage.java index f130ced749c5..1235e08b12cd 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessageOrBuilder.java index 105adb679a88..8b6949d2e2ee 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetAccessApprovalSettingsMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessage.java index c5172e94dfe7..48a29de04359 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessageOrBuilder.java index ab5fe085e8f4..c1dc77ce6f23 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/GetApprovalRequestMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessage.java index 8e9add3eef7f..65b6be58bde5 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessageOrBuilder.java index 6121fea67526..1ebec5ca0e5c 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/InvalidateApprovalRequestMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessage.java index 21760a179609..95276fddbb38 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessageOrBuilder.java index d9d3fcd72bae..99200ba62f17 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponse.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponse.java index 614eaa4b214d..576831136cdd 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponse.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponseOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponseOrBuilder.java index 87943062fb05..ccd3a60613e2 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponseOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ListApprovalRequestsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/OrganizationName.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/OrganizationName.java index 54aad9f31bf1..2a242502f043 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/OrganizationName.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/OrganizationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ProjectName.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ProjectName.java index 67ed0bfbd679..bf848751a3ad 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ProjectName.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ProjectName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourceProperties.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourceProperties.java index 35b4d1d64b09..b3809d034147 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourceProperties.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourceProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourcePropertiesOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourcePropertiesOrBuilder.java index 77682cc0194f..0f958abbb329 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourcePropertiesOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/ResourcePropertiesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfo.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfo.java index 8977451626d9..268c202dff52 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfo.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfoOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfoOrBuilder.java index da40d5c32e12..9f81e5f9e053 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfoOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/SignatureInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessage.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessage.java index 72e65067576e..73cb7382a80e 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessage.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessageOrBuilder.java b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessageOrBuilder.java index 646dbb9bbd6e..e5ea29dee4ca 100644 --- a/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessageOrBuilder.java +++ b/java-accessapproval/proto-google-cloud-accessapproval-v1/src/main/java/com/google/cloud/accessapproval/v1/UpdateAccessApprovalSettingsMessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/AsyncApproveApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/AsyncApproveApprovalRequest.java index 71f9a5bb44db..b474e86cd0d2 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/AsyncApproveApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/AsyncApproveApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/SyncApproveApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/SyncApproveApprovalRequest.java index e3cb10a04ff4..62b0826bbf19 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/SyncApproveApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/approveapprovalrequest/SyncApproveApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetCredentialsProvider.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetCredentialsProvider.java index 64581832fef7..659feb281819 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetCredentialsProvider.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetEndpoint.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetEndpoint.java index f4f612518578..3d30749f3022 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetEndpoint.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateUseHttpJsonTransport.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateUseHttpJsonTransport.java index 5358ee86155d..97339f1c47cf 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateUseHttpJsonTransport.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/AsyncDeleteAccessApprovalSettings.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/AsyncDeleteAccessApprovalSettings.java index a2a4062d4543..6fefb4515038 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/AsyncDeleteAccessApprovalSettings.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/AsyncDeleteAccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettings.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettings.java index 2aebbdf07a1d..fb5bd8bccc8d 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettings.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsAccessapprovalsettingsname.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsAccessapprovalsettingsname.java index c0ab6e12a5fc..31ecc22a6394 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsAccessapprovalsettingsname.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsAccessapprovalsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsString.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsString.java index 4efd65a9c2cb..556add504461 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsString.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/deleteaccessapprovalsettings/SyncDeleteAccessApprovalSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/AsyncDismissApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/AsyncDismissApprovalRequest.java index 9ed0097a872b..91fcb70febf6 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/AsyncDismissApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/AsyncDismissApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/SyncDismissApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/SyncDismissApprovalRequest.java index 0922019a8bbf..194940c6b8da 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/SyncDismissApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/dismissapprovalrequest/SyncDismissApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/AsyncGetAccessApprovalServiceAccount.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/AsyncGetAccessApprovalServiceAccount.java index c215333a0fca..34f6272ccb15 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/AsyncGetAccessApprovalServiceAccount.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/AsyncGetAccessApprovalServiceAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccount.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccount.java index 7294af1d1acd..e77e9e914369 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccount.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccountString.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccountString.java index 3df92327cce7..36d36656e367 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccountString.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalserviceaccount/SyncGetAccessApprovalServiceAccountString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/AsyncGetAccessApprovalSettings.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/AsyncGetAccessApprovalSettings.java index efb0454db523..0650a42e09fc 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/AsyncGetAccessApprovalSettings.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/AsyncGetAccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettings.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettings.java index 79f1937bf8c7..79b5af5d17b6 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettings.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsAccessapprovalsettingsname.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsAccessapprovalsettingsname.java index c31aa07f49f7..eb4d64db2e23 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsAccessapprovalsettingsname.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsAccessapprovalsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsString.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsString.java index c35786ffdb0c..9903173e9846 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsString.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getaccessapprovalsettings/SyncGetAccessApprovalSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/AsyncGetApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/AsyncGetApprovalRequest.java index f21dc9d809c6..2e4d2f4ffa29 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/AsyncGetApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/AsyncGetApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequest.java index aa04cae4dfa4..a4bb9d0c20e9 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestApprovalrequestname.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestApprovalrequestname.java index b10f4df4cf62..dbac156a31ee 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestApprovalrequestname.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestApprovalrequestname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestString.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestString.java index f15c9e2d5cc6..f9e18a0ae891 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestString.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/getapprovalrequest/SyncGetApprovalRequestString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/AsyncInvalidateApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/AsyncInvalidateApprovalRequest.java index b1b82579381f..c28dbd15ff23 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/AsyncInvalidateApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/AsyncInvalidateApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/SyncInvalidateApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/SyncInvalidateApprovalRequest.java index 89868fb52932..5d53d87c6577 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/SyncInvalidateApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/invalidateapprovalrequest/SyncInvalidateApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequests.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequests.java index 54e791447bd4..bb6af2d4e656 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequests.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequestsPaged.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequestsPaged.java index 5b3668b2b76e..4704dd608703 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequestsPaged.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/AsyncListApprovalRequestsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequests.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequests.java index 9d2ceeccc5a4..b1ebf6b88622 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequests.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsFoldername.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsFoldername.java index 995b642b3162..5db78da7853a 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsFoldername.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsFoldername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsOrganizationname.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsOrganizationname.java index b1e0ef25ed68..93461710e384 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsOrganizationname.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsOrganizationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsProjectname.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsProjectname.java index edd491c3b9b0..d8d5ee79d8f1 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsProjectname.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsProjectname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsString.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsString.java index f3149b257f07..8afb7ea72020 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsString.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/listapprovalrequests/SyncListApprovalRequestsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/AsyncUpdateAccessApprovalSettings.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/AsyncUpdateAccessApprovalSettings.java index a6983dae474f..f73ec0f3eeed 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/AsyncUpdateAccessApprovalSettings.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/AsyncUpdateAccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettings.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettings.java index 44febb70f1f3..96811222fbfa 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettings.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettingsAccessapprovalsettingsFieldmask.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettingsAccessapprovalsettingsFieldmask.java index 28c131d2ecd4..9899fd72bd84 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettingsAccessapprovalsettingsFieldmask.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapproval/updateaccessapprovalsettings/SyncUpdateAccessApprovalSettingsAccessapprovalsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapprovaladminsettings/getapprovalrequest/SyncGetApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapprovaladminsettings/getapprovalrequest/SyncGetApprovalRequest.java index 632595c0ec26..78a146f4e3a8 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapprovaladminsettings/getapprovalrequest/SyncGetApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/accessapprovaladminsettings/getapprovalrequest/SyncGetApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/stub/accessapprovalstubsettings/getapprovalrequest/SyncGetApprovalRequest.java b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/stub/accessapprovalstubsettings/getapprovalrequest/SyncGetApprovalRequest.java index 5565ae68a7b5..09230fde83a7 100644 --- a/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/stub/accessapprovalstubsettings/getapprovalrequest/SyncGetApprovalRequest.java +++ b/java-accessapproval/samples/snippets/generated/com/google/cloud/accessapproval/v1/stub/accessapprovalstubsettings/getapprovalrequest/SyncGetApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/CHANGELOG.md b/java-accesscontextmanager/CHANGELOG.md index 879aadaef7f6..f6a72b61e6d8 100644 --- a/java-accesscontextmanager/CHANGELOG.md +++ b/java-accesscontextmanager/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 1.83.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 1.82.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 1.79.0 (2025-10-21) ### Dependencies diff --git a/java-accesscontextmanager/README.md b/java-accesscontextmanager/README.md index 68b30dd21ea7..c642ca68d026 100644 --- a/java-accesscontextmanager/README.md +++ b/java-accesscontextmanager/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-identity-accesscontextmanager - 1.79.0 + 1.82.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-identity-accesscontextmanager:1.79.0' +implementation 'com.google.cloud:google-identity-accesscontextmanager:1.82.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-identity-accesscontextmanager" % "1.79.0" +libraryDependencies += "com.google.cloud" % "google-identity-accesscontextmanager" % "1.82.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: n/a [javadocs]: https://cloud.google.com/java/docs/reference/google-identity-accesscontextmanager/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-identity-accesscontextmanager.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-identity-accesscontextmanager/1.79.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-identity-accesscontextmanager/1.82.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-accesscontextmanager/google-identity-accesscontextmanager-bom/pom.xml b/java-accesscontextmanager/google-identity-accesscontextmanager-bom/pom.xml index 0901dc2a02ba..b21816b95192 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager-bom/pom.xml +++ b/java-accesscontextmanager/google-identity-accesscontextmanager-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-identity-accesscontextmanager-bom - 1.82.0-SNAPSHOT + 1.83.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,22 +27,22 @@ com.google.cloud google-identity-accesscontextmanager - 1.82.0-SNAPSHOT + 1.83.0 com.google.api.grpc grpc-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 com.google.api.grpc proto-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 com.google.api.grpc proto-google-identity-accesscontextmanager-type - 1.82.0-SNAPSHOT + 1.83.0 diff --git a/java-accesscontextmanager/google-identity-accesscontextmanager/pom.xml b/java-accesscontextmanager/google-identity-accesscontextmanager/pom.xml index 5e9a140eece3..fc6379935a49 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/pom.xml +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-identity-accesscontextmanager - 1.82.0-SNAPSHOT + 1.83.0 jar Google Identity Access Context Manager Identity Access Context Manager n/a com.google.cloud google-identity-accesscontextmanager-parent - 1.82.0-SNAPSHOT + 1.83.0 google-identity-accesscontextmanager diff --git a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClient.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClient.java index 1f9530a5e69d..f2d4477e9149 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClient.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerSettings.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerSettings.java index 965bc837d598..84d68eddf8d2 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerSettings.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/package-info.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/package-info.java index 8c66252ecdc9..43c54f922be3 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/package-info.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStub.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStub.java index 1fafe8e9ba63..9d4478f95d6b 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStub.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStubSettings.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStubSettings.java index f9098a9b15de..31093eebf031 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStubSettings.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/AccessContextManagerStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -151,8 +151,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerCallableFactory.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerCallableFactory.java index e3e9f97baca0..7cdc2134d686 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerCallableFactory.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerStub.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerStub.java index 2ffc29ff70a5..914ad3812aeb 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerStub.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/GrpcAccessContextManagerStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerCallableFactory.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerCallableFactory.java index c39903e5df11..2de1ed2f6404 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerCallableFactory.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerStub.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerStub.java index 3cc685a41ca9..c7f1f39b9fc1 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerStub.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/main/java/com/google/identity/accesscontextmanager/v1/stub/HttpJsonAccessContextManagerStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientHttpJsonTest.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientHttpJsonTest.java index 5edae08e4d44..590b601cfb53 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientHttpJsonTest.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientTest.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientTest.java index 9397af62929e..6bdca4d9406f 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientTest.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManager.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManager.java index 7f66b3654951..e13c0aef30bd 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManager.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManagerImpl.java b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManagerImpl.java index b47eda884b52..eb7d017a36b2 100644 --- a/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManagerImpl.java +++ b/java-accesscontextmanager/google-identity-accesscontextmanager/src/test/java/com/google/identity/accesscontextmanager/v1/MockAccessContextManagerImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/pom.xml b/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/pom.xml index 4e6c5085e734..9d5e0366f3f9 100644 --- a/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/pom.xml +++ b/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 grpc-google-identity-accesscontextmanager-v1 GRPC library for google-identity-accesscontextmanager com.google.cloud google-identity-accesscontextmanager-parent - 1.82.0-SNAPSHOT + 1.83.0 diff --git a/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerGrpc.java b/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerGrpc.java index 47e66d624b4d..018dda92e529 100644 --- a/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerGrpc.java +++ b/java-accesscontextmanager/grpc-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/pom.xml b/java-accesscontextmanager/pom.xml index 002718be7221..c60686cf7a2f 100644 --- a/java-accesscontextmanager/pom.xml +++ b/java-accesscontextmanager/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-identity-accesscontextmanager-parent pom - 1.82.0-SNAPSHOT + 1.83.0 Google Identity Access Context Manager Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -30,22 +30,22 @@ com.google.api.grpc proto-google-identity-accesscontextmanager-type - 1.82.0-SNAPSHOT + 1.83.0 com.google.api.grpc proto-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 com.google.api.grpc grpc-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 com.google.cloud google-identity-accesscontextmanager - 1.82.0-SNAPSHOT + 1.83.0 diff --git a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/pom.xml b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/pom.xml index f0f9758e238d..dca0e5b58817 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/pom.xml +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-identity-accesscontextmanager-type - 1.82.0-SNAPSHOT + 1.83.0 proto-google-identity-accesscontextmanager-type PROTO library for proto-google-identity-accesscontextmanager-type com.google.cloud google-identity-accesscontextmanager-parent - 1.82.0-SNAPSHOT + 1.83.0 diff --git a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceEncryptionStatus.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceEncryptionStatus.java index f4538a5db21e..21b5712ec5f6 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceEncryptionStatus.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceEncryptionStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceManagementLevel.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceManagementLevel.java index d1eaa689097c..ddb9eb19fda1 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceManagementLevel.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/DeviceManagementLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/OsType.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/OsType.java index c6e74232b9aa..692bf23bb516 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/OsType.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/OsType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/TypeProto.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/TypeProto.java index 981ebbe7c46e..522acf3e033a 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/TypeProto.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-type/src/main/java/com/google/identity/accesscontextmanager/type/TypeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/pom.xml b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/pom.xml index 41c0a2092aea..048bf09da8c2 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/pom.xml +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 proto-google-identity-accesscontextmanager-v1 PROTO library for proto-google-identity-accesscontextmanager-v1 com.google.cloud google-identity-accesscontextmanager-parent - 1.82.0-SNAPSHOT + 1.83.0 @@ -37,7 +37,7 @@ com.google.api.grpc proto-google-identity-accesscontextmanager-type - 1.82.0-SNAPSHOT + 1.83.0 diff --git a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadata.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadata.java index 479543d9e6ee..21415ee863bb 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadata.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadataOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadataOrBuilder.java index 501c91b5d432..14c8fc5bfdbc 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadataOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerProto.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerProto.java index 4a33fc137f84..81c13b69854e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerProto.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessContextManagerProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevel.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevel.java index 7446ce02377b..5b81f3390a95 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevel.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelName.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelName.java index 44b5ec7900b0..e511e2dffa8e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelName.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelOrBuilder.java index 3dd2739e7b2f..9f99293cc1ab 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelProto.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelProto.java index ed136f2b04b5..de46de501633 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelProto.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessLevelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicy.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicy.java index c213a1c38153..4038f0cf196f 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicy.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyName.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyName.java index 523b0a5fa341..34a4c1036cdf 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyName.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyOrBuilder.java index f4b47631d06f..a1815f0ecea9 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/AccessPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevel.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevel.java index e315aab4b878..bccbac3d1682 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevel.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevelOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevelOrBuilder.java index 68f2422ec32f..64b2ce9394d2 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevelOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/BasicLevelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequest.java index 6140edcd485b..8d75754729e3 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequestOrBuilder.java index 2767490ebc54..4fb4bd0ba791 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponse.java index 99ccc500fd63..b1270d71784c 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponseOrBuilder.java index 4d3579aae939..e00b5c81b664 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CommitServicePerimetersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/Condition.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/Condition.java index ee704d3e423e..7cb86f1d5ba9 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/Condition.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/Condition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ConditionOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ConditionOrBuilder.java index 452273e89056..1b954e73463d 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ConditionOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ConditionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequest.java index 1a091457a8a7..d5bc9aa7f8dd 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequestOrBuilder.java index bdd0c034d4a1..8c23a7eb804f 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateAccessLevelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequest.java index 11f37208d1a1..62464000156d 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequestOrBuilder.java index 0db9f2c4b51c..5404de7d2103 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateGcpUserAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequest.java index 2fc147a26932..34a816d660c9 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequestOrBuilder.java index 8db253d870e2..3e4f2cd074cc 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CreateServicePerimeterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevel.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevel.java index 89bb675c946f..0e8fe2c8a3c3 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevel.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevelOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevelOrBuilder.java index 12c7e32850c0..f9f7e0e912e6 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevelOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/CustomLevelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequest.java index 69b70a4d6e56..703f922c1350 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequestOrBuilder.java index c92164e73e7d..5c624eaedf4c 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessLevelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequest.java index 7727fc649a3f..420dccbaa01e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequestOrBuilder.java index c6b85d4e9730..1e9ef86738d7 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteAccessPolicyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequest.java index 19fcfa13ebe7..33be36dd9b83 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequestOrBuilder.java index b30ca1f135d6..525b10b22dd4 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteGcpUserAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequest.java index 997dae422ad2..6284d1139b5c 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequestOrBuilder.java index 8413386f45a4..6f444e00834f 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DeleteServicePerimeterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicy.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicy.java index 9c96803a308c..807253e5fca6 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicy.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicyOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicyOrBuilder.java index b25061803036..fd7718c1fea0 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicyOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/DevicePolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBinding.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBinding.java index 81a2a64e322f..d4b359deff2a 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBinding.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingName.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingName.java index 574f33fee692..b6388715a43e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingName.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadata.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadata.java index 72a8f4c3b00d..69208be0ce12 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadata.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadataOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadataOrBuilder.java index e7e54ff585bc..a03653638067 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadataOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOrBuilder.java index 8e4b8a2f3dd1..01f2e6bac4ca 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingProto.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingProto.java index 29a0acfccc38..bcb7e3453a56 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingProto.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GcpUserAccessBindingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequest.java index 9ab2e1dde112..e0311ca12a08 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequestOrBuilder.java index 7513c6326673..a1ce10366462 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessLevelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequest.java index a3d41468175a..cfe7c16ca793 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequestOrBuilder.java index a1bc4e4b700c..c9d8c31d2310 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetAccessPolicyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequest.java index a60b5a83e948..14c47e31101d 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequestOrBuilder.java index 7c3072523132..14724b4195a8 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetGcpUserAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequest.java index 363c05b2deca..046115347cdd 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequestOrBuilder.java index d11a47935da8..c2a42ea7f608 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/GetServicePerimeterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/LevelFormat.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/LevelFormat.java index 3b3f1ea4b308..f608a43162bb 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/LevelFormat.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/LevelFormat.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequest.java index e34440f4062a..a46b96161130 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequestOrBuilder.java index fb758c1fa569..62f48667caa8 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponse.java index a6c92116060e..220d4f3ab7e6 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponseOrBuilder.java index 7d117dbde625..c0814998c72f 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessLevelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequest.java index 5380554c394c..2c16a6f3e88e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequestOrBuilder.java index b2b1a731629a..a08df906a217 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponse.java index 206c9edaf430..649feed21f9e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponseOrBuilder.java index 10dfddae89e4..7f03f6f93443 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListAccessPoliciesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequest.java index 3e7bdd462861..88cb5053edb5 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequestOrBuilder.java index 6e8dd42a6035..7b07be5bda4a 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponse.java index 3ad0baa0d8db..1335d80d013d 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponseOrBuilder.java index b817c41e700c..e41d5c55bf5f 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListGcpUserAccessBindingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequest.java index d0edf2b4a2b6..31a20544b1a5 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequestOrBuilder.java index 3961ef498733..fcd3f894a8c2 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponse.java index 24456b87d26e..796447fdcfbe 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponseOrBuilder.java index be436e60b426..6d8ba407c15c 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ListServicePerimetersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OrganizationName.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OrganizationName.java index 00eebd969bbf..da76426c61df 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OrganizationName.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OrganizationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraint.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraint.java index 009d03f58c11..2fe6d3b5f4fc 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraint.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraintOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraintOrBuilder.java index e2ac3d290a79..ce352615571f 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraintOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/OsConstraintOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/PolicyProto.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/PolicyProto.java index 40a9d007d9b1..81833204ba10 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/PolicyProto.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/PolicyProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequest.java index 0eac42cb8288..318fa8ec3e88 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequestOrBuilder.java index 70ea02e55c86..27941b10b176 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponse.java index a27a80aabf7f..3dffb4c89b2d 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponseOrBuilder.java index 3f87d7c0a92d..e492048aec9b 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceAccessLevelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequest.java index fd8985dca989..fa76e78cbcd0 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequestOrBuilder.java index 461c557a776c..50c1cfdf5e10 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponse.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponse.java index 5e5d7fff0e82..66f66f7ee779 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponse.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponseOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponseOrBuilder.java index 140d731c80e0..3828e77734b2 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponseOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ReplaceServicePerimetersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeter.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeter.java index ff09f0773f5c..f4e9b861979e 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeter.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfig.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfig.java index 73370a66897b..ee1c27d422ec 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfig.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfigOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfigOrBuilder.java index 23b5c9bf6deb..e85a3416ec83 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfigOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterName.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterName.java index 378cfd6af70c..49fb9b8faf1b 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterName.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterOrBuilder.java index 748abd5db031..5ffda09be411 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterProto.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterProto.java index a296f748207b..4482b268c9b8 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterProto.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ServicePerimeterProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequest.java index 1969772a606c..7afce966f4c7 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequestOrBuilder.java index c0126accb64f..544ff697915a 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessLevelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequest.java index c007a273ad08..db56f63f1aa7 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequestOrBuilder.java index 65c3486a9684..4a0b7ad4c569 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateAccessPolicyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequest.java index aaf97bf11052..5693e779d456 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequestOrBuilder.java index 364fb8ed1b51..489061ab82ab 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateGcpUserAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequest.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequest.java index 2e13c8ef8588..cce74c9ee9b7 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequest.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequestOrBuilder.java b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequestOrBuilder.java index 171aa6b353fc..8818f47b5844 100644 --- a/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequestOrBuilder.java +++ b/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/UpdateServicePerimeterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimeters.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimeters.java index b763ccb0727e..eb7c512ae3ce 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimeters.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimeters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimetersLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimetersLRO.java index feaaca6312e5..2a71ab44f69c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimetersLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/AsyncCommitServicePerimetersLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/SyncCommitServicePerimeters.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/SyncCommitServicePerimeters.java index 39d2600ecec6..d730c1c4b819 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/SyncCommitServicePerimeters.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/commitserviceperimeters/SyncCommitServicePerimeters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetCredentialsProvider.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetCredentialsProvider.java index a159a86c85ea..83dab8f79e1c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetCredentialsProvider.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetEndpoint.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetEndpoint.java index b81833b5dd7c..69c702a6261c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetEndpoint.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateUseHttpJsonTransport.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateUseHttpJsonTransport.java index a4c415c18a86..baf80d2446ad 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateUseHttpJsonTransport.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevel.java index 9c1523d0f894..d551830d15d6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevelLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevelLRO.java index 3f682371a329..d3824f96052c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevelLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/AsyncCreateAccessLevelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevel.java index 5d071b46447a..855f04c85d56 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelAccesspolicynameAccesslevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelAccesspolicynameAccesslevel.java index 112d2d4750b4..1332b8d1407b 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelAccesspolicynameAccesslevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelAccesspolicynameAccesslevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelStringAccesslevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelStringAccesslevel.java index d0850f29bcb4..1020231b0925 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelStringAccesslevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesslevel/SyncCreateAccessLevelStringAccesslevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicy.java index bc95231ac3c7..30428d2ae012 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicyLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicyLRO.java index f676522cf341..b1e8c7bf86f5 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicyLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/AsyncCreateAccessPolicyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/SyncCreateAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/SyncCreateAccessPolicy.java index 9e39ac57b5a9..170c6bfe3b8a 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/SyncCreateAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createaccesspolicy/SyncCreateAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBinding.java index fd1ac0a3ad8d..b1850b4b72f2 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBindingLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBindingLRO.java index 1103fcf6ee30..6be9bd7386a7 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBindingLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/AsyncCreateGcpUserAccessBindingLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBinding.java index 600fe9a129a5..bd0ef111bbe2 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingOrganizationnameGcpuseraccessbinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingOrganizationnameGcpuseraccessbinding.java index 99bcd503d4d7..6c5d888a2707 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingOrganizationnameGcpuseraccessbinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingOrganizationnameGcpuseraccessbinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingStringGcpuseraccessbinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingStringGcpuseraccessbinding.java index 81e9fdfa19a0..2004b0a74cd1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingStringGcpuseraccessbinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/creategcpuseraccessbinding/SyncCreateGcpUserAccessBindingStringGcpuseraccessbinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeter.java index f256a2dbdd8b..37da4ad21e5a 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeterLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeterLRO.java index d943044ae8d9..d5098060d74e 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeterLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/AsyncCreateServicePerimeterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeter.java index f20d0dea92a7..21a4fbb860d1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterAccesspolicynameServiceperimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterAccesspolicynameServiceperimeter.java index 8b6dea381c3e..7a82b6623d53 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterAccesspolicynameServiceperimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterAccesspolicynameServiceperimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterStringServiceperimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterStringServiceperimeter.java index 2b9ec1ff14b4..8e1fe38e6195 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterStringServiceperimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/createserviceperimeter/SyncCreateServicePerimeterStringServiceperimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevel.java index 316b9b59e47d..680169a718c9 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevelLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevelLRO.java index 2d25469a5369..208af10f79f6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevelLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/AsyncDeleteAccessLevelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevel.java index 3287f2415558..861601d394ae 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelAccesslevelname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelAccesslevelname.java index 400484e99133..ba5ac94ee9be 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelAccesslevelname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelAccesslevelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelString.java index 7586433b4997..6b066d1fdfb7 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesslevel/SyncDeleteAccessLevelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicy.java index 039a027a2f1a..8ff9e9abdfae 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicyLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicyLRO.java index 3cba3bb755cb..3b3beb2879ea 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicyLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/AsyncDeleteAccessPolicyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicy.java index f6e1a8859ae2..ef5af4a80a3e 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyAccesspolicyname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyAccesspolicyname.java index 1febd74f01c9..daac80e25494 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyAccesspolicyname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyAccesspolicyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyString.java index 014963171e43..a60db63fd034 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteaccesspolicy/SyncDeleteAccessPolicyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBinding.java index e455e413d426..fc34731a76b8 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBindingLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBindingLRO.java index 3d06e1f6bac0..0e6a510889f5 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBindingLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/AsyncDeleteGcpUserAccessBindingLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBinding.java index 0f4756710648..34b461069bdf 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingGcpuseraccessbindingname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingGcpuseraccessbindingname.java index aa2dafea46c4..d9241f96cbd6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingGcpuseraccessbindingname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingGcpuseraccessbindingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingString.java index ab10580df614..b98d02cf0b2d 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deletegcpuseraccessbinding/SyncDeleteGcpUserAccessBindingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeter.java index de49db06e7b3..576e02eaa956 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeterLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeterLRO.java index 352e4403f0f9..8a78b827b04f 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeterLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/AsyncDeleteServicePerimeterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeter.java index b287a75b1585..63e42acb707f 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterServiceperimetername.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterServiceperimetername.java index 1440c015008d..83b88bba30f9 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterServiceperimetername.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterServiceperimetername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterString.java index f992fc305a59..12546a13f296 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/deleteserviceperimeter/SyncDeleteServicePerimeterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/AsyncGetAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/AsyncGetAccessLevel.java index 5060ee56402a..9736b0e1a669 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/AsyncGetAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/AsyncGetAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevel.java index d15f86731c01..5f16f1bd947e 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelAccesslevelname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelAccesslevelname.java index 82cbd4985677..70470dc183da 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelAccesslevelname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelAccesslevelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelString.java index 98be9da16e2b..6d4204ceb9fe 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesslevel/SyncGetAccessLevelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/AsyncGetAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/AsyncGetAccessPolicy.java index 334d6fe4731d..4864b8b637da 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/AsyncGetAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/AsyncGetAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicy.java index 4d73c27b1d85..11ae33e46049 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyAccesspolicyname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyAccesspolicyname.java index 9f1cef3e41e4..f9335955222e 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyAccesspolicyname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyAccesspolicyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyString.java index 5e578885ff73..d2812b3e50e1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getaccesspolicy/SyncGetAccessPolicyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/AsyncGetGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/AsyncGetGcpUserAccessBinding.java index 39a6561d9693..c43a07669db1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/AsyncGetGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/AsyncGetGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBinding.java index e676b7564604..6d3bdfe4b528 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingGcpuseraccessbindingname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingGcpuseraccessbindingname.java index 1eed0e99d920..3c173fd383cf 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingGcpuseraccessbindingname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingGcpuseraccessbindingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingString.java index c73a3064eeaa..34f30cfb57b8 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getgcpuseraccessbinding/SyncGetGcpUserAccessBindingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/AsyncGetIamPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/AsyncGetIamPolicy.java index 0d62af64b81e..bca27cf67aa6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/AsyncGetIamPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/SyncGetIamPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/SyncGetIamPolicy.java index def96ab58ed3..7470511d6d6a 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/SyncGetIamPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/AsyncGetServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/AsyncGetServicePerimeter.java index 4c9972254b4e..3642af108233 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/AsyncGetServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/AsyncGetServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeter.java index 6f04c4726226..92a509a1617c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterServiceperimetername.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterServiceperimetername.java index 02cb96e47a85..33c9a83170c0 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterServiceperimetername.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterServiceperimetername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterString.java index cae399899adb..e42f8f814470 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/getserviceperimeter/SyncGetServicePerimeterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevels.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevels.java index bc6aa241324c..9fb5c4cb899c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevels.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevelsPaged.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevelsPaged.java index 86fda6c87053..30c5fdfe298c 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevelsPaged.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/AsyncListAccessLevelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevels.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevels.java index 8b0f212a1d56..bf54e07120d3 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevels.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsAccesspolicyname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsAccesspolicyname.java index 130b05960c7e..4be06842723d 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsAccesspolicyname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsAccesspolicyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsString.java index 3aab5a69a9e1..db464eb046d6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesslevels/SyncListAccessLevelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPolicies.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPolicies.java index 4a9e342836d7..88e12a127762 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPolicies.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPoliciesPaged.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPoliciesPaged.java index 79b9fe638988..a0f67ce69f55 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPoliciesPaged.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/AsyncListAccessPoliciesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/SyncListAccessPolicies.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/SyncListAccessPolicies.java index d180cc939a53..439dc9c935ca 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/SyncListAccessPolicies.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listaccesspolicies/SyncListAccessPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindings.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindings.java index 4494f4dcc491..f58bbcb81e9b 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindings.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindingsPaged.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindingsPaged.java index b7a12e26bb82..3aa56fbedc58 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindingsPaged.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/AsyncListGcpUserAccessBindingsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindings.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindings.java index c60f5f4f3461..f68211fc83d1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindings.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsOrganizationname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsOrganizationname.java index 77d4685973e5..d19c5a066669 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsOrganizationname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsOrganizationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsString.java index 3755e9f51c5a..28bda15bec53 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listgcpuseraccessbindings/SyncListGcpUserAccessBindingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimeters.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimeters.java index 94fc8138b207..ca5a6512831d 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimeters.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimeters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimetersPaged.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimetersPaged.java index c971df9e53db..1bd10f4bc0d6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimetersPaged.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/AsyncListServicePerimetersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimeters.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimeters.java index bdfb9142056e..2e80602bc0df 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimeters.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimeters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersAccesspolicyname.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersAccesspolicyname.java index aa11ab485415..3ade0ff97f39 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersAccesspolicyname.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersAccesspolicyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersString.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersString.java index 59d40a4fbac4..a33af1eb8f8f 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersString.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/listserviceperimeters/SyncListServicePerimetersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevels.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevels.java index 0e225f17ad70..a23deacefaf0 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevels.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevelsLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevelsLRO.java index e4c89220e5da..c371c001fca1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevelsLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/AsyncReplaceAccessLevelsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/SyncReplaceAccessLevels.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/SyncReplaceAccessLevels.java index 02bfcdf40da1..9f11817326db 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/SyncReplaceAccessLevels.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceaccesslevels/SyncReplaceAccessLevels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimeters.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimeters.java index f05f9cac8214..3e36cb31f169 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimeters.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimeters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimetersLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimetersLRO.java index b90ead3f62be..022faa9b687b 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimetersLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/AsyncReplaceServicePerimetersLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/SyncReplaceServicePerimeters.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/SyncReplaceServicePerimeters.java index db5863ae3454..313f54a89e6e 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/SyncReplaceServicePerimeters.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/replaceserviceperimeters/SyncReplaceServicePerimeters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/AsyncSetIamPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/AsyncSetIamPolicy.java index bc6390cc3bbe..c601482a7608 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/AsyncSetIamPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/SyncSetIamPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/SyncSetIamPolicy.java index f348c2344670..7fdc8d3049c8 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/SyncSetIamPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/AsyncTestIamPermissions.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/AsyncTestIamPermissions.java index 168276511f02..71354cb77d51 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/AsyncTestIamPermissions.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/SyncTestIamPermissions.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/SyncTestIamPermissions.java index b793b8ea107c..ebca23fc34db 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/SyncTestIamPermissions.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevel.java index b03b5e34b687..8c07306a1be9 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevelLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevelLRO.java index b58645f67222..232e5acb940a 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevelLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/AsyncUpdateAccessLevelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevel.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevel.java index 77e4f785cd1a..48deadbbec90 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevel.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevelAccesslevelFieldmask.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevelAccesslevelFieldmask.java index 641c1d4a59d1..88e4a34210c6 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevelAccesslevelFieldmask.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesslevel/SyncUpdateAccessLevelAccesslevelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicy.java index ded486437d9d..f0a8de10ef27 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicyLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicyLRO.java index e99d4deb2d9f..271f65570f85 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicyLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/AsyncUpdateAccessPolicyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicy.java index ff124b22c056..8f4ddd558df7 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicyAccesspolicyFieldmask.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicyAccesspolicyFieldmask.java index dc93a6680e92..3b252d45f8fe 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicyAccesspolicyFieldmask.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateaccesspolicy/SyncUpdateAccessPolicyAccesspolicyFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBinding.java index 1eac74d60b8b..9acd7649be31 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBindingLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBindingLRO.java index 1c148fa3018c..52e42bc9f143 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBindingLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/AsyncUpdateGcpUserAccessBindingLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBinding.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBinding.java index 85257a3a690c..d89c22cf7b10 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBinding.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBindingGcpuseraccessbindingFieldmask.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBindingGcpuseraccessbindingFieldmask.java index 8f1487736a66..81590b378ca1 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBindingGcpuseraccessbindingFieldmask.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updategcpuseraccessbinding/SyncUpdateGcpUserAccessBindingGcpuseraccessbindingFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeter.java index 1ba769a66afc..04c834b979bf 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeterLRO.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeterLRO.java index 896be2aa9614..4e75b09d949b 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeterLRO.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/AsyncUpdateServicePerimeterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeter.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeter.java index f22b0ed9596b..ad10973d5943 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeter.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeterServiceperimeterFieldmask.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeterServiceperimeterFieldmask.java index b54ac5e5505d..c0d73db8a70b 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeterServiceperimeterFieldmask.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanager/updateserviceperimeter/SyncUpdateServicePerimeterServiceperimeterFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/createaccesspolicy/SyncCreateAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/createaccesspolicy/SyncCreateAccessPolicy.java index 1950f7357860..a893f92df568 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/createaccesspolicy/SyncCreateAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/createaccesspolicy/SyncCreateAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/getaccesspolicy/SyncGetAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/getaccesspolicy/SyncGetAccessPolicy.java index 778516cfb2a0..3334437d3bb4 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/getaccesspolicy/SyncGetAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/accesscontextmanagersettings/getaccesspolicy/SyncGetAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/createaccesspolicy/SyncCreateAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/createaccesspolicy/SyncCreateAccessPolicy.java index bde6f5ea20e6..c472760d0b81 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/createaccesspolicy/SyncCreateAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/createaccesspolicy/SyncCreateAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/getaccesspolicy/SyncGetAccessPolicy.java b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/getaccesspolicy/SyncGetAccessPolicy.java index 531145cc22b4..b9e3c8c1027d 100644 --- a/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/getaccesspolicy/SyncGetAccessPolicy.java +++ b/java-accesscontextmanager/samples/snippets/generated/com/google/identity/accesscontextmanager/v1/stub/accesscontextmanagerstubsettings/getaccesspolicy/SyncGetAccessPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/CHANGELOG.md b/java-admanager/CHANGELOG.md index e810d64c61d6..7073c4ae8de3 100644 --- a/java-admanager/CHANGELOG.md +++ b/java-admanager/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.41.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.40.0 (2025-12-16) + +### ⚠ BREAKING CHANGES + +* Added proto3 optional to Network primitive fields + +### Bug Fixes + +* Added proto3 optional to Network primitive fields ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.37.0 (2025-10-21) ### Dependencies diff --git a/java-admanager/README.md b/java-admanager/README.md index c65ca4bba4c3..62e7ca1aa7cd 100644 --- a/java-admanager/README.md +++ b/java-admanager/README.md @@ -15,50 +15,27 @@ Java idiomatic client for [Google Ad Manager API][product-docs]. ## Quickstart -If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: - -```xml - - - - com.google.cloud - libraries-bom - 26.71.0 - pom - import - - - - - - - com.google.api-ads - ad-manager - - -``` - -If you are using Maven without the BOM, add this to your dependencies: +If you are using Maven, add this to your pom.xml file: ```xml com.google.api-ads ad-manager - 0.37.0 + 0.40.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.api-ads:ad-manager:0.37.0' +implementation 'com.google.api-ads:ad-manager:0.40.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.api-ads" % "ad-manager" % "0.37.0" +libraryDependencies += "com.google.api-ads" % "ad-manager" % "0.40.0" ``` ## Authentication @@ -175,32 +152,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://developers.google.com/ad-manager/api/beta [javadocs]: https://cloud.google.com/java/docs/reference/ad-manager/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.api-ads/ad-manager.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.api-ads/ad-manager/0.37.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.api-ads/ad-manager/0.40.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-admanager/ad-manager-bom/pom.xml b/java-admanager/ad-manager-bom/pom.xml index 18b55e37f3cc..58171f56fb50 100644 --- a/java-admanager/ad-manager-bom/pom.xml +++ b/java-admanager/ad-manager-bom/pom.xml @@ -3,12 +3,12 @@ 4.0.0 com.google.api-ads ad-manager-bom - 0.40.0-SNAPSHOT + 0.41.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -26,12 +26,12 @@ com.google.api-ads ad-manager - 0.40.0-SNAPSHOT + 0.41.0 com.google.api-ads.api.grpc proto-ad-manager-v1 - 0.40.0-SNAPSHOT + 0.41.0 diff --git a/java-admanager/ad-manager/pom.xml b/java-admanager/ad-manager/pom.xml index 73d5da197bcb..e7c877b5beb7 100644 --- a/java-admanager/ad-manager/pom.xml +++ b/java-admanager/ad-manager/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.api-ads ad-manager - 0.40.0-SNAPSHOT + 0.41.0 jar Google Google Ad Manager API Google Ad Manager API The Ad Manager API enables an app to integrate with Google Ad Manager. You can read Ad Manager data and run reports using the API. com.google.api-ads ad-manager-parent - 0.40.0-SNAPSHOT + 0.41.0 ad-manager diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceClient.java index 8a9d86605d39..0644fdb70550 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceSettings.java index f74294d2e967..9f81ba0764d5 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdBreakServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdBreakServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClient.java index abc7866a5810..e96a0de77cfe 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceSettings.java index f6c610f1869c..fedfefcdbd6c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceClient.java index 46ba651aa350..3431f8bf8f27 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,6 +27,7 @@ import com.google.api.gax.rpc.PageContext; import com.google.api.gax.rpc.UnaryCallable; import com.google.common.util.concurrent.MoreExecutors; +import com.google.protobuf.FieldMask; import java.io.IOException; import java.util.List; import java.util.concurrent.TimeUnit; @@ -120,6 +121,132 @@ * * * + * + *

CreateAdUnit + *

API to create an `AdUnit` object. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • createAdUnit(CreateAdUnitRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • createAdUnit(NetworkName parent, AdUnit adUnit) + *

  • createAdUnit(String parent, AdUnit adUnit) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • createAdUnitCallable() + *

+ * + * + * + *

UpdateAdUnit + *

API to update an `AdUnit` object. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • updateAdUnit(UpdateAdUnitRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • updateAdUnit(AdUnit adUnit, FieldMask updateMask) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • updateAdUnitCallable() + *

+ * + * + * + *

BatchCreateAdUnits + *

API to batch create `AdUnit` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchCreateAdUnits(NetworkName parent, List<CreateAdUnitRequest> requests) + *

  • batchCreateAdUnits(String parent, List<CreateAdUnitRequest> requests) + *

  • batchCreateAdUnits(BatchCreateAdUnitsRequest request) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchCreateAdUnitsCallable() + *

+ * + * + * + *

BatchUpdateAdUnits + *

API to batch update `AdUnit` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchUpdateAdUnits(NetworkName parent, List<UpdateAdUnitRequest> requests) + *

  • batchUpdateAdUnits(String parent, List<UpdateAdUnitRequest> requests) + *

  • batchUpdateAdUnits(BatchUpdateAdUnitsRequest request) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchUpdateAdUnitsCallable() + *

+ * + * + * + *

BatchActivateAdUnits + *

API to batch activate `AdUnit` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchActivateAdUnits(BatchActivateAdUnitsRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • batchActivateAdUnits(NetworkName parent, List<String> names) + *

  • batchActivateAdUnits(String parent, List<String> names) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchActivateAdUnitsCallable() + *

+ * + * + * + *

BatchDeactivateAdUnits + *

Deactivates a list of `AdUnit` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchDeactivateAdUnits(BatchDeactivateAdUnitsRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • batchDeactivateAdUnits(NetworkName parent, List<String> names) + *

  • batchDeactivateAdUnits(String parent, List<String> names) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchDeactivateAdUnitsCallable() + *

+ * + * + * + *

BatchArchiveAdUnits + *

Archives a list of `AdUnit` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchArchiveAdUnits(BatchArchiveAdUnitsRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • batchArchiveAdUnits(NetworkName parent, List<String> names) + *

  • batchArchiveAdUnits(String parent, List<String> names) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchArchiveAdUnitsCallable() + *

+ * + * * * *

See the individual methods for example code. @@ -668,6 +795,851 @@ public final ListAdUnitSizesPagedResponse listAdUnitSizes(ListAdUnitSizesRequest return stub.listAdUnitSizesCallable(); } + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   AdUnit adUnit = AdUnit.newBuilder().build();
+   *   AdUnit response = adUnitServiceClient.createAdUnit(parent, adUnit);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where this `AdUnit` will be created. Format: + * `networks/{network_code}` + * @param adUnit Required. The `AdUnit` to create. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final AdUnit createAdUnit(NetworkName parent, AdUnit adUnit) { + CreateAdUnitRequest request = + CreateAdUnitRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .setAdUnit(adUnit) + .build(); + return createAdUnit(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   AdUnit adUnit = AdUnit.newBuilder().build();
+   *   AdUnit response = adUnitServiceClient.createAdUnit(parent, adUnit);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where this `AdUnit` will be created. Format: + * `networks/{network_code}` + * @param adUnit Required. The `AdUnit` to create. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final AdUnit createAdUnit(String parent, AdUnit adUnit) { + CreateAdUnitRequest request = + CreateAdUnitRequest.newBuilder().setParent(parent).setAdUnit(adUnit).build(); + return createAdUnit(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   CreateAdUnitRequest request =
+   *       CreateAdUnitRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setAdUnit(AdUnit.newBuilder().build())
+   *           .build();
+   *   AdUnit response = adUnitServiceClient.createAdUnit(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final AdUnit createAdUnit(CreateAdUnitRequest request) { + return createAdUnitCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   CreateAdUnitRequest request =
+   *       CreateAdUnitRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setAdUnit(AdUnit.newBuilder().build())
+   *           .build();
+   *   ApiFuture future = adUnitServiceClient.createAdUnitCallable().futureCall(request);
+   *   // Do something.
+   *   AdUnit response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable createAdUnitCallable() { + return stub.createAdUnitCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to update an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   AdUnit adUnit = AdUnit.newBuilder().build();
+   *   FieldMask updateMask = FieldMask.newBuilder().build();
+   *   AdUnit response = adUnitServiceClient.updateAdUnit(adUnit, updateMask);
+   * }
+   * }
+ * + * @param adUnit Required. The `AdUnit` to update. + *

The `AdUnit`'s name is used to identify the `AdUnit` to update. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @param updateMask Required. The list of fields to update. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final AdUnit updateAdUnit(AdUnit adUnit, FieldMask updateMask) { + UpdateAdUnitRequest request = + UpdateAdUnitRequest.newBuilder().setAdUnit(adUnit).setUpdateMask(updateMask).build(); + return updateAdUnit(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to update an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   UpdateAdUnitRequest request =
+   *       UpdateAdUnitRequest.newBuilder()
+   *           .setAdUnit(AdUnit.newBuilder().build())
+   *           .setUpdateMask(FieldMask.newBuilder().build())
+   *           .build();
+   *   AdUnit response = adUnitServiceClient.updateAdUnit(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final AdUnit updateAdUnit(UpdateAdUnitRequest request) { + return updateAdUnitCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to update an `AdUnit` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   UpdateAdUnitRequest request =
+   *       UpdateAdUnitRequest.newBuilder()
+   *           .setAdUnit(AdUnit.newBuilder().build())
+   *           .setUpdateMask(FieldMask.newBuilder().build())
+   *           .build();
+   *   ApiFuture future = adUnitServiceClient.updateAdUnitCallable().futureCall(request);
+   *   // Do something.
+   *   AdUnit response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable updateAdUnitCallable() { + return stub.updateAdUnitCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List requests = new ArrayList<>();
+   *   BatchCreateAdUnitsResponse response =
+   *       adUnitServiceClient.batchCreateAdUnits(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `AdUnits` will be created. Format: + * `networks/{network_code}` The parent field in the CreateAdUnitRequest must match this + * field. + * @param requests Required. The `AdUnit` objects to create. A maximum of 100 objects can be + * created in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchCreateAdUnitsResponse batchCreateAdUnits( + NetworkName parent, List requests) { + BatchCreateAdUnitsRequest request = + BatchCreateAdUnitsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllRequests(requests) + .build(); + return batchCreateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List requests = new ArrayList<>();
+   *   BatchCreateAdUnitsResponse response =
+   *       adUnitServiceClient.batchCreateAdUnits(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `AdUnits` will be created. Format: + * `networks/{network_code}` The parent field in the CreateAdUnitRequest must match this + * field. + * @param requests Required. The `AdUnit` objects to create. A maximum of 100 objects can be + * created in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchCreateAdUnitsResponse batchCreateAdUnits( + String parent, List requests) { + BatchCreateAdUnitsRequest request = + BatchCreateAdUnitsRequest.newBuilder().setParent(parent).addAllRequests(requests).build(); + return batchCreateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchCreateAdUnitsRequest request =
+   *       BatchCreateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   BatchCreateAdUnitsResponse response = adUnitServiceClient.batchCreateAdUnits(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchCreateAdUnitsResponse batchCreateAdUnits(BatchCreateAdUnitsRequest request) { + return batchCreateAdUnitsCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchCreateAdUnitsRequest request =
+   *       BatchCreateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       adUnitServiceClient.batchCreateAdUnitsCallable().futureCall(request);
+   *   // Do something.
+   *   BatchCreateAdUnitsResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + batchCreateAdUnitsCallable() { + return stub.batchCreateAdUnitsCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List requests = new ArrayList<>();
+   *   BatchUpdateAdUnitsResponse response =
+   *       adUnitServiceClient.batchUpdateAdUnits(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `AdUnits` will be updated. Format: + * `networks/{network_code}` The parent field in the UpdateAdUnitRequest must match this + * field. + * @param requests Required. The `AdUnit` objects to update. A maximum of 100 objects can be + * updated in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchUpdateAdUnitsResponse batchUpdateAdUnits( + NetworkName parent, List requests) { + BatchUpdateAdUnitsRequest request = + BatchUpdateAdUnitsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllRequests(requests) + .build(); + return batchUpdateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List requests = new ArrayList<>();
+   *   BatchUpdateAdUnitsResponse response =
+   *       adUnitServiceClient.batchUpdateAdUnits(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `AdUnits` will be updated. Format: + * `networks/{network_code}` The parent field in the UpdateAdUnitRequest must match this + * field. + * @param requests Required. The `AdUnit` objects to update. A maximum of 100 objects can be + * updated in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchUpdateAdUnitsResponse batchUpdateAdUnits( + String parent, List requests) { + BatchUpdateAdUnitsRequest request = + BatchUpdateAdUnitsRequest.newBuilder().setParent(parent).addAllRequests(requests).build(); + return batchUpdateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchUpdateAdUnitsRequest request =
+   *       BatchUpdateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   BatchUpdateAdUnitsResponse response = adUnitServiceClient.batchUpdateAdUnits(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchUpdateAdUnitsResponse batchUpdateAdUnits(BatchUpdateAdUnitsRequest request) { + return batchUpdateAdUnitsCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchUpdateAdUnitsRequest request =
+   *       BatchUpdateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       adUnitServiceClient.batchUpdateAdUnitsCallable().futureCall(request);
+   *   // Do something.
+   *   BatchUpdateAdUnitsResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + batchUpdateAdUnitsCallable() { + return stub.batchUpdateAdUnitsCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List names = new ArrayList<>();
+   *   BatchActivateAdUnitsResponse response =
+   *       adUnitServiceClient.batchActivateAdUnits(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `AdUnit`s to activate. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchActivateAdUnitsResponse batchActivateAdUnits( + NetworkName parent, List names) { + BatchActivateAdUnitsRequest request = + BatchActivateAdUnitsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllNames(names) + .build(); + return batchActivateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List names = new ArrayList<>();
+   *   BatchActivateAdUnitsResponse response =
+   *       adUnitServiceClient.batchActivateAdUnits(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `AdUnit`s to activate. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchActivateAdUnitsResponse batchActivateAdUnits( + String parent, List names) { + BatchActivateAdUnitsRequest request = + BatchActivateAdUnitsRequest.newBuilder().setParent(parent).addAllNames(names).build(); + return batchActivateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchActivateAdUnitsRequest request =
+   *       BatchActivateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   BatchActivateAdUnitsResponse response = adUnitServiceClient.batchActivateAdUnits(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchActivateAdUnitsResponse batchActivateAdUnits( + BatchActivateAdUnitsRequest request) { + return batchActivateAdUnitsCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchActivateAdUnitsRequest request =
+   *       BatchActivateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       adUnitServiceClient.batchActivateAdUnitsCallable().futureCall(request);
+   *   // Do something.
+   *   BatchActivateAdUnitsResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + batchActivateAdUnitsCallable() { + return stub.batchActivateAdUnitsCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List names = new ArrayList<>();
+   *   BatchDeactivateAdUnitsResponse response =
+   *       adUnitServiceClient.batchDeactivateAdUnits(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `AdUnit`s to deactivate. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchDeactivateAdUnitsResponse batchDeactivateAdUnits( + NetworkName parent, List names) { + BatchDeactivateAdUnitsRequest request = + BatchDeactivateAdUnitsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllNames(names) + .build(); + return batchDeactivateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List names = new ArrayList<>();
+   *   BatchDeactivateAdUnitsResponse response =
+   *       adUnitServiceClient.batchDeactivateAdUnits(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `AdUnit`s to deactivate. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchDeactivateAdUnitsResponse batchDeactivateAdUnits( + String parent, List names) { + BatchDeactivateAdUnitsRequest request = + BatchDeactivateAdUnitsRequest.newBuilder().setParent(parent).addAllNames(names).build(); + return batchDeactivateAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchDeactivateAdUnitsRequest request =
+   *       BatchDeactivateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   BatchDeactivateAdUnitsResponse response = adUnitServiceClient.batchDeactivateAdUnits(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchDeactivateAdUnitsResponse batchDeactivateAdUnits( + BatchDeactivateAdUnitsRequest request) { + return batchDeactivateAdUnitsCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchDeactivateAdUnitsRequest request =
+   *       BatchDeactivateAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       adUnitServiceClient.batchDeactivateAdUnitsCallable().futureCall(request);
+   *   // Do something.
+   *   BatchDeactivateAdUnitsResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + batchDeactivateAdUnitsCallable() { + return stub.batchDeactivateAdUnitsCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Archives a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List names = new ArrayList<>();
+   *   BatchArchiveAdUnitsResponse response = adUnitServiceClient.batchArchiveAdUnits(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `AdUnit`s to archive. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchArchiveAdUnitsResponse batchArchiveAdUnits( + NetworkName parent, List names) { + BatchArchiveAdUnitsRequest request = + BatchArchiveAdUnitsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllNames(names) + .build(); + return batchArchiveAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Archives a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List names = new ArrayList<>();
+   *   BatchArchiveAdUnitsResponse response = adUnitServiceClient.batchArchiveAdUnits(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `AdUnit`s to archive. Format: + * `networks/{network_code}/adUnits/{ad_unit_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchArchiveAdUnitsResponse batchArchiveAdUnits(String parent, List names) { + BatchArchiveAdUnitsRequest request = + BatchArchiveAdUnitsRequest.newBuilder().setParent(parent).addAllNames(names).build(); + return batchArchiveAdUnits(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Archives a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchArchiveAdUnitsRequest request =
+   *       BatchArchiveAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   BatchArchiveAdUnitsResponse response = adUnitServiceClient.batchArchiveAdUnits(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchArchiveAdUnitsResponse batchArchiveAdUnits(BatchArchiveAdUnitsRequest request) { + return batchArchiveAdUnitsCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Archives a list of `AdUnit` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) {
+   *   BatchArchiveAdUnitsRequest request =
+   *       BatchArchiveAdUnitsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       adUnitServiceClient.batchArchiveAdUnitsCallable().futureCall(request);
+   *   // Do something.
+   *   BatchArchiveAdUnitsResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + batchArchiveAdUnitsCallable() { + return stub.batchArchiveAdUnitsCallable(); + } + @Override public final void close() { stub.close(); diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceSettings.java index 6ea18872a78a..45b9a700d351 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AdUnitServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdUnitServiceSettings extends ClientSettings { @@ -104,6 +104,46 @@ public UnaryCallSettings getAdUnitSettings() { return ((AdUnitServiceStubSettings) getStubSettings()).listAdUnitSizesSettings(); } + /** Returns the object with the settings used for calls to createAdUnit. */ + public UnaryCallSettings createAdUnitSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).createAdUnitSettings(); + } + + /** Returns the object with the settings used for calls to updateAdUnit. */ + public UnaryCallSettings updateAdUnitSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).updateAdUnitSettings(); + } + + /** Returns the object with the settings used for calls to batchCreateAdUnits. */ + public UnaryCallSettings + batchCreateAdUnitsSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).batchCreateAdUnitsSettings(); + } + + /** Returns the object with the settings used for calls to batchUpdateAdUnits. */ + public UnaryCallSettings + batchUpdateAdUnitsSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).batchUpdateAdUnitsSettings(); + } + + /** Returns the object with the settings used for calls to batchActivateAdUnits. */ + public UnaryCallSettings + batchActivateAdUnitsSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).batchActivateAdUnitsSettings(); + } + + /** Returns the object with the settings used for calls to batchDeactivateAdUnits. */ + public UnaryCallSettings + batchDeactivateAdUnitsSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).batchDeactivateAdUnitsSettings(); + } + + /** Returns the object with the settings used for calls to batchArchiveAdUnits. */ + public UnaryCallSettings + batchArchiveAdUnitsSettings() { + return ((AdUnitServiceStubSettings) getStubSettings()).batchArchiveAdUnitsSettings(); + } + public static final AdUnitServiceSettings create(AdUnitServiceStubSettings stub) throws IOException { return new AdUnitServiceSettings.Builder(stub.toBuilder()).build(); @@ -220,6 +260,46 @@ public UnaryCallSettings.Builder getAdUnitSettings() { return getStubSettingsBuilder().listAdUnitSizesSettings(); } + /** Returns the builder for the settings used for calls to createAdUnit. */ + public UnaryCallSettings.Builder createAdUnitSettings() { + return getStubSettingsBuilder().createAdUnitSettings(); + } + + /** Returns the builder for the settings used for calls to updateAdUnit. */ + public UnaryCallSettings.Builder updateAdUnitSettings() { + return getStubSettingsBuilder().updateAdUnitSettings(); + } + + /** Returns the builder for the settings used for calls to batchCreateAdUnits. */ + public UnaryCallSettings.Builder + batchCreateAdUnitsSettings() { + return getStubSettingsBuilder().batchCreateAdUnitsSettings(); + } + + /** Returns the builder for the settings used for calls to batchUpdateAdUnits. */ + public UnaryCallSettings.Builder + batchUpdateAdUnitsSettings() { + return getStubSettingsBuilder().batchUpdateAdUnitsSettings(); + } + + /** Returns the builder for the settings used for calls to batchActivateAdUnits. */ + public UnaryCallSettings.Builder + batchActivateAdUnitsSettings() { + return getStubSettingsBuilder().batchActivateAdUnitsSettings(); + } + + /** Returns the builder for the settings used for calls to batchDeactivateAdUnits. */ + public UnaryCallSettings.Builder + batchDeactivateAdUnitsSettings() { + return getStubSettingsBuilder().batchDeactivateAdUnitsSettings(); + } + + /** Returns the builder for the settings used for calls to batchArchiveAdUnits. */ + public UnaryCallSettings.Builder + batchArchiveAdUnitsSettings() { + return getStubSettingsBuilder().batchArchiveAdUnitsSettings(); + } + @Override public AdUnitServiceSettings build() throws IOException { return new AdUnitServiceSettings(this); diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceClient.java index 0a12fe246a3f..3296e78eb72f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceSettings.java index c87cdb160cb0..35fa181c1e11 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ApplicationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApplicationServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceClient.java index d0cca305cc76..df47211c411a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceSettings.java index e9062c614725..d2d3c64332e8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceSegmentServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceClient.java index 1138196c995b..55891acc0ac1 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceSettings.java index 4b7dd343b985..2a4679a05eb8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BandwidthGroupServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceClient.java index 66e1ef439300..9b5cf7fbb9f0 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceSettings.java index bb42a7ccd29b..a8acfd9ff035 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrowserLanguageServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceClient.java index 8dd06687659b..7403234a87f3 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceSettings.java index 134df6e7ba96..83fb0c02f56f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/BrowserServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrowserServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClient.java index ea75d9bda263..3bb0b31ae423 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceSettings.java index 5e6a914b805d..664ab67a0542 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CmsMetadataKeyServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClient.java index 8194b6a0b12f..10c536daf849 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -65,7 +65,7 @@ * * *

GetCmsMetadataValue - *

API to retrieve a `CmsMetadataKey` object. + *

API to retrieve a `CmsMetadataValue` object. * *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

*
    @@ -198,7 +198,7 @@ public CmsMetadataValueServiceStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD. /** - * API to retrieve a `CmsMetadataKey` object. + * API to retrieve a `CmsMetadataValue` object. * *

    Sample code: * @@ -215,7 +215,7 @@ public CmsMetadataValueServiceStub getStub() { * } * } * - * @param name Required. The resource name of the CmsMetadataKey. Format: + * @param name Required. The resource name of the CmsMetadataValue. Format: * `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -229,7 +229,7 @@ public final CmsMetadataValue getCmsMetadataValue(CmsMetadataValueName name) { // AUTO-GENERATED DOCUMENTATION AND METHOD. /** - * API to retrieve a `CmsMetadataKey` object. + * API to retrieve a `CmsMetadataValue` object. * *

    Sample code: * @@ -246,7 +246,7 @@ public final CmsMetadataValue getCmsMetadataValue(CmsMetadataValueName name) { * } * } * - * @param name Required. The resource name of the CmsMetadataKey. Format: + * @param name Required. The resource name of the CmsMetadataValue. Format: * `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -258,7 +258,7 @@ public final CmsMetadataValue getCmsMetadataValue(String name) { // AUTO-GENERATED DOCUMENTATION AND METHOD. /** - * API to retrieve a `CmsMetadataKey` object. + * API to retrieve a `CmsMetadataValue` object. * *

    Sample code: * @@ -287,7 +287,7 @@ public final CmsMetadataValue getCmsMetadataValue(GetCmsMetadataValueRequest req // AUTO-GENERATED DOCUMENTATION AND METHOD. /** - * API to retrieve a `CmsMetadataKey` object. + * API to retrieve a `CmsMetadataValue` object. * *

    Sample code: * diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceSettings.java index 0778d736437d..d9c4bdf244b6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CmsMetadataValueServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceClient.java index bf3a86b0af97..f4f93851e343 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceSettings.java index 39162e773e5e..d4480993c385 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CompanyServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CompanyServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceClient.java index 6aeb717c0caf..05d72055d3ba 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceSettings.java index 814a6ae098f1..a1581eeae034 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContactServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContactServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceClient.java index f85f44a0d714..1441c40cb05b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceSettings.java index bbee09a8348c..943da5f99575 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentBundleServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceClient.java index 70a3c1777d0b..a16b18db872a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceSettings.java index f515d34a3ddb..fa4d31faf3e0 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentLabelServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceClient.java index 1882b40b73e9..816e1365dd9f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceSettings.java index 596a3d1de03d..447f1c0e67d2 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ContentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceClient.java index be22650d682e..b7667968ab47 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceSettings.java index 029d29c330c7..01bb073f956c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CreativeTemplateServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceClient.java index 2b18850e86ce..c5238e8028f4 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceSettings.java index 7b5d2c0a5cd5..1d1e6b256f66 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomFieldServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClient.java index 5ce3c0035f66..bd00d1ec68a3 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,6 +27,7 @@ import com.google.api.gax.rpc.PageContext; import com.google.api.gax.rpc.UnaryCallable; import com.google.common.util.concurrent.MoreExecutors; +import com.google.protobuf.FieldMask; import java.io.IOException; import java.util.List; import java.util.concurrent.TimeUnit; @@ -103,6 +104,113 @@ *

* * + * + *

CreateCustomTargetingKey + *

API to create a `CustomTargetingKey` object. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • createCustomTargetingKey(CreateCustomTargetingKeyRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • createCustomTargetingKey(NetworkName parent, CustomTargetingKey customTargetingKey) + *

  • createCustomTargetingKey(String parent, CustomTargetingKey customTargetingKey) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • createCustomTargetingKeyCallable() + *

+ * + * + * + *

BatchCreateCustomTargetingKeys + *

API to batch create `CustomTargetingKey` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchCreateCustomTargetingKeys(NetworkName parent, List<CreateCustomTargetingKeyRequest> requests) + *

  • batchCreateCustomTargetingKeys(String parent, List<CreateCustomTargetingKeyRequest> requests) + *

  • batchCreateCustomTargetingKeys(BatchCreateCustomTargetingKeysRequest request) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchCreateCustomTargetingKeysCallable() + *

+ * + * + * + *

UpdateCustomTargetingKey + *

API to update a `CustomTargetingKey` object. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • updateCustomTargetingKey(UpdateCustomTargetingKeyRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • updateCustomTargetingKey(CustomTargetingKey customTargetingKey, FieldMask updateMask) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • updateCustomTargetingKeyCallable() + *

+ * + * + * + *

BatchUpdateCustomTargetingKeys + *

API to batch update `CustomTargetingKey` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchUpdateCustomTargetingKeys(NetworkName parent, List<UpdateCustomTargetingKeyRequest> requests) + *

  • batchUpdateCustomTargetingKeys(String parent, List<UpdateCustomTargetingKeyRequest> requests) + *

  • batchUpdateCustomTargetingKeys(BatchUpdateCustomTargetingKeysRequest request) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchUpdateCustomTargetingKeysCallable() + *

+ * + * + * + *

BatchActivateCustomTargetingKeys + *

API to batch activate `CustomTargetingKey` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchActivateCustomTargetingKeys(BatchActivateCustomTargetingKeysRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • batchActivateCustomTargetingKeys(NetworkName parent, List<String> names) + *

  • batchActivateCustomTargetingKeys(String parent, List<String> names) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchActivateCustomTargetingKeysCallable() + *

+ * + * + * + *

BatchDeactivateCustomTargetingKeys + *

Deactivates a list of `CustomTargetingKey` objects. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • batchDeactivateCustomTargetingKeys(BatchDeactivateCustomTargetingKeysRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • batchDeactivateCustomTargetingKeys(NetworkName parent, List<String> names) + *

  • batchDeactivateCustomTargetingKeys(String parent, List<String> names) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • batchDeactivateCustomTargetingKeysCallable() + *

+ * + * * * *

See the individual methods for example code. @@ -508,6 +616,801 @@ public final ListCustomTargetingKeysPagedResponse listCustomTargetingKeys( return stub.listCustomTargetingKeysCallable(); } + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build();
+   *   CustomTargetingKey response =
+   *       customTargetingKeyServiceClient.createCustomTargetingKey(parent, customTargetingKey);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where this `CustomTargetingKey` will be created. + * Format: `networks/{network_code}` + * @param customTargetingKey Required. The `CustomTargetingKey` to create. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CustomTargetingKey createCustomTargetingKey( + NetworkName parent, CustomTargetingKey customTargetingKey) { + CreateCustomTargetingKeyRequest request = + CreateCustomTargetingKeyRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .setCustomTargetingKey(customTargetingKey) + .build(); + return createCustomTargetingKey(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build();
+   *   CustomTargetingKey response =
+   *       customTargetingKeyServiceClient.createCustomTargetingKey(parent, customTargetingKey);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where this `CustomTargetingKey` will be created. + * Format: `networks/{network_code}` + * @param customTargetingKey Required. The `CustomTargetingKey` to create. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CustomTargetingKey createCustomTargetingKey( + String parent, CustomTargetingKey customTargetingKey) { + CreateCustomTargetingKeyRequest request = + CreateCustomTargetingKeyRequest.newBuilder() + .setParent(parent) + .setCustomTargetingKey(customTargetingKey) + .build(); + return createCustomTargetingKey(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   CreateCustomTargetingKeyRequest request =
+   *       CreateCustomTargetingKeyRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setCustomTargetingKey(CustomTargetingKey.newBuilder().build())
+   *           .build();
+   *   CustomTargetingKey response =
+   *       customTargetingKeyServiceClient.createCustomTargetingKey(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CustomTargetingKey createCustomTargetingKey( + CreateCustomTargetingKeyRequest request) { + return createCustomTargetingKeyCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to create a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   CreateCustomTargetingKeyRequest request =
+   *       CreateCustomTargetingKeyRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setCustomTargetingKey(CustomTargetingKey.newBuilder().build())
+   *           .build();
+   *   ApiFuture future =
+   *       customTargetingKeyServiceClient.createCustomTargetingKeyCallable().futureCall(request);
+   *   // Do something.
+   *   CustomTargetingKey response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + createCustomTargetingKeyCallable() { + return stub.createCustomTargetingKeyCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List requests = new ArrayList<>();
+   *   BatchCreateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchCreateCustomTargetingKeys(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `CustomTargetingKeys` will be created. + * Format: `networks/{network_code}` The parent field in the CreateCustomTargetingKeyRequest + * must match this field. + * @param requests Required. The `CustomTargetingKey` objects to create. A maximum of 100 objects + * can be created in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchCreateCustomTargetingKeysResponse batchCreateCustomTargetingKeys( + NetworkName parent, List requests) { + BatchCreateCustomTargetingKeysRequest request = + BatchCreateCustomTargetingKeysRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllRequests(requests) + .build(); + return batchCreateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List requests = new ArrayList<>();
+   *   BatchCreateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchCreateCustomTargetingKeys(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `CustomTargetingKeys` will be created. + * Format: `networks/{network_code}` The parent field in the CreateCustomTargetingKeyRequest + * must match this field. + * @param requests Required. The `CustomTargetingKey` objects to create. A maximum of 100 objects + * can be created in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchCreateCustomTargetingKeysResponse batchCreateCustomTargetingKeys( + String parent, List requests) { + BatchCreateCustomTargetingKeysRequest request = + BatchCreateCustomTargetingKeysRequest.newBuilder() + .setParent(parent) + .addAllRequests(requests) + .build(); + return batchCreateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchCreateCustomTargetingKeysRequest request =
+   *       BatchCreateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   BatchCreateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchCreateCustomTargetingKeys(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchCreateCustomTargetingKeysResponse batchCreateCustomTargetingKeys( + BatchCreateCustomTargetingKeysRequest request) { + return batchCreateCustomTargetingKeysCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch create `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchCreateCustomTargetingKeysRequest request =
+   *       BatchCreateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       customTargetingKeyServiceClient
+   *           .batchCreateCustomTargetingKeysCallable()
+   *           .futureCall(request);
+   *   // Do something.
+   *   BatchCreateCustomTargetingKeysResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysCallable() { + return stub.batchCreateCustomTargetingKeysCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to update a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build();
+   *   FieldMask updateMask = FieldMask.newBuilder().build();
+   *   CustomTargetingKey response =
+   *       customTargetingKeyServiceClient.updateCustomTargetingKey(customTargetingKey, updateMask);
+   * }
+   * }
+ * + * @param customTargetingKey Required. The `CustomTargetingKey` to update. + *

The `CustomTargetingKey`'s `name` is used to identify the `CustomTargetingKey` to + * update. + * @param updateMask Required. The list of fields to update. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CustomTargetingKey updateCustomTargetingKey( + CustomTargetingKey customTargetingKey, FieldMask updateMask) { + UpdateCustomTargetingKeyRequest request = + UpdateCustomTargetingKeyRequest.newBuilder() + .setCustomTargetingKey(customTargetingKey) + .setUpdateMask(updateMask) + .build(); + return updateCustomTargetingKey(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to update a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   UpdateCustomTargetingKeyRequest request =
+   *       UpdateCustomTargetingKeyRequest.newBuilder()
+   *           .setCustomTargetingKey(CustomTargetingKey.newBuilder().build())
+   *           .setUpdateMask(FieldMask.newBuilder().build())
+   *           .build();
+   *   CustomTargetingKey response =
+   *       customTargetingKeyServiceClient.updateCustomTargetingKey(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CustomTargetingKey updateCustomTargetingKey( + UpdateCustomTargetingKeyRequest request) { + return updateCustomTargetingKeyCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to update a `CustomTargetingKey` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   UpdateCustomTargetingKeyRequest request =
+   *       UpdateCustomTargetingKeyRequest.newBuilder()
+   *           .setCustomTargetingKey(CustomTargetingKey.newBuilder().build())
+   *           .setUpdateMask(FieldMask.newBuilder().build())
+   *           .build();
+   *   ApiFuture future =
+   *       customTargetingKeyServiceClient.updateCustomTargetingKeyCallable().futureCall(request);
+   *   // Do something.
+   *   CustomTargetingKey response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable + updateCustomTargetingKeyCallable() { + return stub.updateCustomTargetingKeyCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List requests = new ArrayList<>();
+   *   BatchUpdateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchUpdateCustomTargetingKeys(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `CustomTargetingKeys` will be updated. + * Format: `networks/{network_code}` The parent field in the UpdateCustomTargetingKeyRequest + * must match this field. + * @param requests Required. The `CustomTargetingKey` objects to update. A maximum of 100 objects + * can be updated in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchUpdateCustomTargetingKeysResponse batchUpdateCustomTargetingKeys( + NetworkName parent, List requests) { + BatchUpdateCustomTargetingKeysRequest request = + BatchUpdateCustomTargetingKeysRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllRequests(requests) + .build(); + return batchUpdateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List requests = new ArrayList<>();
+   *   BatchUpdateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchUpdateCustomTargetingKeys(parent, requests);
+   * }
+   * }
+ * + * @param parent Required. The parent resource where `CustomTargetingKeys` will be updated. + * Format: `networks/{network_code}` The parent field in the UpdateCustomTargetingKeyRequest + * must match this field. + * @param requests Required. The `CustomTargetingKey` objects to update. A maximum of 100 objects + * can be updated in a batch. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchUpdateCustomTargetingKeysResponse batchUpdateCustomTargetingKeys( + String parent, List requests) { + BatchUpdateCustomTargetingKeysRequest request = + BatchUpdateCustomTargetingKeysRequest.newBuilder() + .setParent(parent) + .addAllRequests(requests) + .build(); + return batchUpdateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchUpdateCustomTargetingKeysRequest request =
+   *       BatchUpdateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   BatchUpdateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchUpdateCustomTargetingKeys(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchUpdateCustomTargetingKeysResponse batchUpdateCustomTargetingKeys( + BatchUpdateCustomTargetingKeysRequest request) { + return batchUpdateCustomTargetingKeysCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch update `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchUpdateCustomTargetingKeysRequest request =
+   *       BatchUpdateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllRequests(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       customTargetingKeyServiceClient
+   *           .batchUpdateCustomTargetingKeysCallable()
+   *           .futureCall(request);
+   *   // Do something.
+   *   BatchUpdateCustomTargetingKeysResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysCallable() { + return stub.batchUpdateCustomTargetingKeysCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List names = new ArrayList<>();
+   *   BatchActivateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchActivateCustomTargetingKeys(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `CustomTargetingKey`s to activate. Format: + * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchActivateCustomTargetingKeysResponse batchActivateCustomTargetingKeys( + NetworkName parent, List names) { + BatchActivateCustomTargetingKeysRequest request = + BatchActivateCustomTargetingKeysRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllNames(names) + .build(); + return batchActivateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List names = new ArrayList<>();
+   *   BatchActivateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchActivateCustomTargetingKeys(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `CustomTargetingKey`s to activate. Format: + * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchActivateCustomTargetingKeysResponse batchActivateCustomTargetingKeys( + String parent, List names) { + BatchActivateCustomTargetingKeysRequest request = + BatchActivateCustomTargetingKeysRequest.newBuilder() + .setParent(parent) + .addAllNames(names) + .build(); + return batchActivateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchActivateCustomTargetingKeysRequest request =
+   *       BatchActivateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   BatchActivateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchActivateCustomTargetingKeys(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchActivateCustomTargetingKeysResponse batchActivateCustomTargetingKeys( + BatchActivateCustomTargetingKeysRequest request) { + return batchActivateCustomTargetingKeysCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to batch activate `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchActivateCustomTargetingKeysRequest request =
+   *       BatchActivateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       customTargetingKeyServiceClient
+   *           .batchActivateCustomTargetingKeysCallable()
+   *           .futureCall(request);
+   *   // Do something.
+   *   BatchActivateCustomTargetingKeysResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysCallable() { + return stub.batchActivateCustomTargetingKeysCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   List names = new ArrayList<>();
+   *   BatchDeactivateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchDeactivateCustomTargetingKeys(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `CustomTargetingKey`s to deactivate. Format: + * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchDeactivateCustomTargetingKeysResponse batchDeactivateCustomTargetingKeys( + NetworkName parent, List names) { + BatchDeactivateCustomTargetingKeysRequest request = + BatchDeactivateCustomTargetingKeysRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .addAllNames(names) + .build(); + return batchDeactivateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   List names = new ArrayList<>();
+   *   BatchDeactivateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchDeactivateCustomTargetingKeys(parent, names);
+   * }
+   * }
+ * + * @param parent Required. Format: `networks/{network_code}` + * @param names Required. The resource names of the `CustomTargetingKey`s to deactivate. Format: + * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchDeactivateCustomTargetingKeysResponse batchDeactivateCustomTargetingKeys( + String parent, List names) { + BatchDeactivateCustomTargetingKeysRequest request = + BatchDeactivateCustomTargetingKeysRequest.newBuilder() + .setParent(parent) + .addAllNames(names) + .build(); + return batchDeactivateCustomTargetingKeys(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchDeactivateCustomTargetingKeysRequest request =
+   *       BatchDeactivateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   BatchDeactivateCustomTargetingKeysResponse response =
+   *       customTargetingKeyServiceClient.batchDeactivateCustomTargetingKeys(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final BatchDeactivateCustomTargetingKeysResponse batchDeactivateCustomTargetingKeys( + BatchDeactivateCustomTargetingKeysRequest request) { + return batchDeactivateCustomTargetingKeysCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Deactivates a list of `CustomTargetingKey` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient =
+   *     CustomTargetingKeyServiceClient.create()) {
+   *   BatchDeactivateCustomTargetingKeysRequest request =
+   *       BatchDeactivateCustomTargetingKeysRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .addAllNames(new ArrayList())
+   *           .build();
+   *   ApiFuture future =
+   *       customTargetingKeyServiceClient
+   *           .batchDeactivateCustomTargetingKeysCallable()
+   *           .futureCall(request);
+   *   // Do something.
+   *   BatchDeactivateCustomTargetingKeysResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysCallable() { + return stub.batchDeactivateCustomTargetingKeysCallable(); + } + @Override public final void close() { stub.close(); diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceSettings.java index b073614fe91a..9174b83e7f3b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomTargetingKeyServiceSettings @@ -105,6 +105,52 @@ public class CustomTargetingKeyServiceSettings .listCustomTargetingKeysSettings(); } + /** Returns the object with the settings used for calls to createCustomTargetingKey. */ + public UnaryCallSettings + createCustomTargetingKeySettings() { + return ((CustomTargetingKeyServiceStubSettings) getStubSettings()) + .createCustomTargetingKeySettings(); + } + + /** Returns the object with the settings used for calls to batchCreateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysSettings() { + return ((CustomTargetingKeyServiceStubSettings) getStubSettings()) + .batchCreateCustomTargetingKeysSettings(); + } + + /** Returns the object with the settings used for calls to updateCustomTargetingKey. */ + public UnaryCallSettings + updateCustomTargetingKeySettings() { + return ((CustomTargetingKeyServiceStubSettings) getStubSettings()) + .updateCustomTargetingKeySettings(); + } + + /** Returns the object with the settings used for calls to batchUpdateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysSettings() { + return ((CustomTargetingKeyServiceStubSettings) getStubSettings()) + .batchUpdateCustomTargetingKeysSettings(); + } + + /** Returns the object with the settings used for calls to batchActivateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysSettings() { + return ((CustomTargetingKeyServiceStubSettings) getStubSettings()) + .batchActivateCustomTargetingKeysSettings(); + } + + /** Returns the object with the settings used for calls to batchDeactivateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysSettings() { + return ((CustomTargetingKeyServiceStubSettings) getStubSettings()) + .batchDeactivateCustomTargetingKeysSettings(); + } + public static final CustomTargetingKeyServiceSettings create( CustomTargetingKeyServiceStubSettings stub) throws IOException { return new CustomTargetingKeyServiceSettings.Builder(stub.toBuilder()).build(); @@ -218,6 +264,48 @@ public Builder applyToAllUnaryMethods( return getStubSettingsBuilder().listCustomTargetingKeysSettings(); } + /** Returns the builder for the settings used for calls to createCustomTargetingKey. */ + public UnaryCallSettings.Builder + createCustomTargetingKeySettings() { + return getStubSettingsBuilder().createCustomTargetingKeySettings(); + } + + /** Returns the builder for the settings used for calls to batchCreateCustomTargetingKeys. */ + public UnaryCallSettings.Builder< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysSettings() { + return getStubSettingsBuilder().batchCreateCustomTargetingKeysSettings(); + } + + /** Returns the builder for the settings used for calls to updateCustomTargetingKey. */ + public UnaryCallSettings.Builder + updateCustomTargetingKeySettings() { + return getStubSettingsBuilder().updateCustomTargetingKeySettings(); + } + + /** Returns the builder for the settings used for calls to batchUpdateCustomTargetingKeys. */ + public UnaryCallSettings.Builder< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysSettings() { + return getStubSettingsBuilder().batchUpdateCustomTargetingKeysSettings(); + } + + /** Returns the builder for the settings used for calls to batchActivateCustomTargetingKeys. */ + public UnaryCallSettings.Builder< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysSettings() { + return getStubSettingsBuilder().batchActivateCustomTargetingKeysSettings(); + } + + /** + * Returns the builder for the settings used for calls to batchDeactivateCustomTargetingKeys. + */ + public UnaryCallSettings.Builder< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysSettings() { + return getStubSettingsBuilder().batchDeactivateCustomTargetingKeysSettings(); + } + @Override public CustomTargetingKeyServiceSettings build() throws IOException { return new CustomTargetingKeyServiceSettings(this); diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClient.java index 1676c113a285..11f5a0cd164f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceSettings.java index 0d8356b7ddf0..caae9dd5e7f6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomTargetingValueServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClient.java index 1c64467cf91f..b01f8b20ed7d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceSettings.java index 49fe0e032bf3..869092f95a97 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DeviceCapabilityServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceClient.java index f1d95a4627c2..60cf30a65105 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceSettings.java index 6bd7914a1b32..f7f6601630fc 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DeviceCategoryServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClient.java index 4aa601f8149e..e091bc2d4b46 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceSettings.java index 1873a0778dc1..c46d8584df2a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DeviceManufacturerServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClient.java index bebd2ca4e057..ac981022b0b7 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceSettings.java index fc1e9ab6e0d2..04bf4597fde8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class EntitySignalsMappingServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceClient.java index 240d8b54209b..13b552813207 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceSettings.java index b72965ee8c0a..4c74241d94bf 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/LineItemServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/LineItemServiceClient.java new file mode 100644 index 000000000000..d43937ca9b03 --- /dev/null +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/LineItemServiceClient.java @@ -0,0 +1,586 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1; + +import com.google.ads.admanager.v1.stub.LineItemServiceStub; +import com.google.ads.admanager.v1.stub.LineItemServiceStubSettings; +import com.google.api.core.ApiFuture; +import com.google.api.core.ApiFutures; +import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.paging.AbstractFixedSizeCollection; +import com.google.api.gax.paging.AbstractPage; +import com.google.api.gax.paging.AbstractPagedListResponse; +import com.google.api.gax.rpc.PageContext; +import com.google.api.gax.rpc.UnaryCallable; +import com.google.common.util.concurrent.MoreExecutors; +import java.io.IOException; +import java.util.List; +import java.util.concurrent.TimeUnit; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Service Description: Provides methods for handling `LineItem` objects. + * + *

This class provides the ability to make remote calls to the backing service through method + * calls that map to API methods. Sample code to get started: + * + *

{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+ *   LineItemName name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]");
+ *   LineItem response = lineItemServiceClient.getLineItem(name);
+ * }
+ * }
+ * + *

Note: close() needs to be called on the LineItemServiceClient object to clean up resources + * such as threads. In the example above, try-with-resources is used, which automatically calls + * close(). + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
Methods
MethodDescriptionMethod Variants

GetLineItem

API to retrieve a `LineItem` object.

+ *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • getLineItem(GetLineItemRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • getLineItem(LineItemName name) + *

  • getLineItem(String name) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • getLineItemCallable() + *

+ *

ListLineItems

API to retrieve a list of `LineItem` objects.

+ *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • listLineItems(ListLineItemsRequest request) + *

+ *

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

+ *
    + *
  • listLineItems(NetworkName parent) + *

  • listLineItems(String parent) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • listLineItemsPagedCallable() + *

  • listLineItemsCallable() + *

+ *
+ * + *

See the individual methods for example code. + * + *

Many parameters require resource names to be formatted in a particular way. To assist with + * these names, this class includes a format method for each type of name, and additionally a parse + * method to extract the individual identifiers contained within names that are returned. + * + *

This class can be customized by passing in a custom instance of LineItemServiceSettings to + * create(). For example: + * + *

To customize credentials: + * + *

{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * LineItemServiceSettings lineItemServiceSettings =
+ *     LineItemServiceSettings.newBuilder()
+ *         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
+ *         .build();
+ * LineItemServiceClient lineItemServiceClient =
+ *     LineItemServiceClient.create(lineItemServiceSettings);
+ * }
+ * + *

To customize the endpoint: + * + *

{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * LineItemServiceSettings lineItemServiceSettings =
+ *     LineItemServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
+ * LineItemServiceClient lineItemServiceClient =
+ *     LineItemServiceClient.create(lineItemServiceSettings);
+ * }
+ * + *

Please refer to the GitHub repository's samples for more quickstart code snippets. + */ +@Generated("by gapic-generator-java") +public class LineItemServiceClient implements BackgroundResource { + private final LineItemServiceSettings settings; + private final LineItemServiceStub stub; + + /** Constructs an instance of LineItemServiceClient with default settings. */ + public static final LineItemServiceClient create() throws IOException { + return create(LineItemServiceSettings.newBuilder().build()); + } + + /** + * Constructs an instance of LineItemServiceClient, using the given settings. The channels are + * created based on the settings passed in, or defaults for any settings that are not set. + */ + public static final LineItemServiceClient create(LineItemServiceSettings settings) + throws IOException { + return new LineItemServiceClient(settings); + } + + /** + * Constructs an instance of LineItemServiceClient, using the given stub for making calls. This is + * for advanced usage - prefer using create(LineItemServiceSettings). + */ + public static final LineItemServiceClient create(LineItemServiceStub stub) { + return new LineItemServiceClient(stub); + } + + /** + * Constructs an instance of LineItemServiceClient, using the given settings. This is protected so + * that it is easy to make a subclass, but otherwise, the static factory methods should be + * preferred. + */ + protected LineItemServiceClient(LineItemServiceSettings settings) throws IOException { + this.settings = settings; + this.stub = ((LineItemServiceStubSettings) settings.getStubSettings()).createStub(); + } + + protected LineItemServiceClient(LineItemServiceStub stub) { + this.settings = null; + this.stub = stub; + } + + public final LineItemServiceSettings getSettings() { + return settings; + } + + public LineItemServiceStub getStub() { + return stub; + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a `LineItem` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   LineItemName name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]");
+   *   LineItem response = lineItemServiceClient.getLineItem(name);
+   * }
+   * }
+ * + * @param name Required. The resource name of the LineItem. Format: + * `networks/{network_code}/lineItems/{line_item_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final LineItem getLineItem(LineItemName name) { + GetLineItemRequest request = + GetLineItemRequest.newBuilder().setName(name == null ? null : name.toString()).build(); + return getLineItem(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a `LineItem` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   String name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString();
+   *   LineItem response = lineItemServiceClient.getLineItem(name);
+   * }
+   * }
+ * + * @param name Required. The resource name of the LineItem. Format: + * `networks/{network_code}/lineItems/{line_item_id}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final LineItem getLineItem(String name) { + GetLineItemRequest request = GetLineItemRequest.newBuilder().setName(name).build(); + return getLineItem(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a `LineItem` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   GetLineItemRequest request =
+   *       GetLineItemRequest.newBuilder()
+   *           .setName(LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString())
+   *           .build();
+   *   LineItem response = lineItemServiceClient.getLineItem(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final LineItem getLineItem(GetLineItemRequest request) { + return getLineItemCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a `LineItem` object. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   GetLineItemRequest request =
+   *       GetLineItemRequest.newBuilder()
+   *           .setName(LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString())
+   *           .build();
+   *   ApiFuture future = lineItemServiceClient.getLineItemCallable().futureCall(request);
+   *   // Do something.
+   *   LineItem response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable getLineItemCallable() { + return stub.getLineItemCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a list of `LineItem` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
+   *   for (LineItem element : lineItemServiceClient.listLineItems(parent).iterateAll()) {
+   *     // doThingsWith(element);
+   *   }
+   * }
+   * }
+ * + * @param parent Required. The parent, which owns this collection of LineItems. Format: + * `networks/{network_code}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListLineItemsPagedResponse listLineItems(NetworkName parent) { + ListLineItemsRequest request = + ListLineItemsRequest.newBuilder() + .setParent(parent == null ? null : parent.toString()) + .build(); + return listLineItems(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a list of `LineItem` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   String parent = NetworkName.of("[NETWORK_CODE]").toString();
+   *   for (LineItem element : lineItemServiceClient.listLineItems(parent).iterateAll()) {
+   *     // doThingsWith(element);
+   *   }
+   * }
+   * }
+ * + * @param parent Required. The parent, which owns this collection of LineItems. Format: + * `networks/{network_code}` + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListLineItemsPagedResponse listLineItems(String parent) { + ListLineItemsRequest request = ListLineItemsRequest.newBuilder().setParent(parent).build(); + return listLineItems(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a list of `LineItem` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   ListLineItemsRequest request =
+   *       ListLineItemsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setPageSize(883849137)
+   *           .setPageToken("pageToken873572522")
+   *           .setFilter("filter-1274492040")
+   *           .setOrderBy("orderBy-1207110587")
+   *           .setSkip(3532159)
+   *           .build();
+   *   for (LineItem element : lineItemServiceClient.listLineItems(request).iterateAll()) {
+   *     // doThingsWith(element);
+   *   }
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final ListLineItemsPagedResponse listLineItems(ListLineItemsRequest request) { + return listLineItemsPagedCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a list of `LineItem` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   ListLineItemsRequest request =
+   *       ListLineItemsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setPageSize(883849137)
+   *           .setPageToken("pageToken873572522")
+   *           .setFilter("filter-1274492040")
+   *           .setOrderBy("orderBy-1207110587")
+   *           .setSkip(3532159)
+   *           .build();
+   *   ApiFuture future =
+   *       lineItemServiceClient.listLineItemsPagedCallable().futureCall(request);
+   *   // Do something.
+   *   for (LineItem element : future.get().iterateAll()) {
+   *     // doThingsWith(element);
+   *   }
+   * }
+   * }
+ */ + public final UnaryCallable + listLineItemsPagedCallable() { + return stub.listLineItemsPagedCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve a list of `LineItem` objects. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+   *   ListLineItemsRequest request =
+   *       ListLineItemsRequest.newBuilder()
+   *           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
+   *           .setPageSize(883849137)
+   *           .setPageToken("pageToken873572522")
+   *           .setFilter("filter-1274492040")
+   *           .setOrderBy("orderBy-1207110587")
+   *           .setSkip(3532159)
+   *           .build();
+   *   while (true) {
+   *     ListLineItemsResponse response =
+   *         lineItemServiceClient.listLineItemsCallable().call(request);
+   *     for (LineItem element : response.getLineItemsList()) {
+   *       // doThingsWith(element);
+   *     }
+   *     String nextPageToken = response.getNextPageToken();
+   *     if (!Strings.isNullOrEmpty(nextPageToken)) {
+   *       request = request.toBuilder().setPageToken(nextPageToken).build();
+   *     } else {
+   *       break;
+   *     }
+   *   }
+   * }
+   * }
+ */ + public final UnaryCallable listLineItemsCallable() { + return stub.listLineItemsCallable(); + } + + @Override + public final void close() { + stub.close(); + } + + @Override + public void shutdown() { + stub.shutdown(); + } + + @Override + public boolean isShutdown() { + return stub.isShutdown(); + } + + @Override + public boolean isTerminated() { + return stub.isTerminated(); + } + + @Override + public void shutdownNow() { + stub.shutdownNow(); + } + + @Override + public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { + return stub.awaitTermination(duration, unit); + } + + public static class ListLineItemsPagedResponse + extends AbstractPagedListResponse< + ListLineItemsRequest, + ListLineItemsResponse, + LineItem, + ListLineItemsPage, + ListLineItemsFixedSizeCollection> { + + public static ApiFuture createAsync( + PageContext context, + ApiFuture futureResponse) { + ApiFuture futurePage = + ListLineItemsPage.createEmptyPage().createPageAsync(context, futureResponse); + return ApiFutures.transform( + futurePage, + input -> new ListLineItemsPagedResponse(input), + MoreExecutors.directExecutor()); + } + + private ListLineItemsPagedResponse(ListLineItemsPage page) { + super(page, ListLineItemsFixedSizeCollection.createEmptyCollection()); + } + } + + public static class ListLineItemsPage + extends AbstractPage< + ListLineItemsRequest, ListLineItemsResponse, LineItem, ListLineItemsPage> { + + private ListLineItemsPage( + PageContext context, + ListLineItemsResponse response) { + super(context, response); + } + + private static ListLineItemsPage createEmptyPage() { + return new ListLineItemsPage(null, null); + } + + @Override + protected ListLineItemsPage createPage( + PageContext context, + ListLineItemsResponse response) { + return new ListLineItemsPage(context, response); + } + + @Override + public ApiFuture createPageAsync( + PageContext context, + ApiFuture futureResponse) { + return super.createPageAsync(context, futureResponse); + } + } + + public static class ListLineItemsFixedSizeCollection + extends AbstractFixedSizeCollection< + ListLineItemsRequest, + ListLineItemsResponse, + LineItem, + ListLineItemsPage, + ListLineItemsFixedSizeCollection> { + + private ListLineItemsFixedSizeCollection(List pages, int collectionSize) { + super(pages, collectionSize); + } + + private static ListLineItemsFixedSizeCollection createEmptyCollection() { + return new ListLineItemsFixedSizeCollection(null, 0); + } + + @Override + protected ListLineItemsFixedSizeCollection createCollection( + List pages, int collectionSize) { + return new ListLineItemsFixedSizeCollection(pages, collectionSize); + } + } +} diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/LineItemServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/LineItemServiceSettings.java new file mode 100644 index 000000000000..2a1405d899d3 --- /dev/null +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/LineItemServiceSettings.java @@ -0,0 +1,214 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1; + +import static com.google.ads.admanager.v1.LineItemServiceClient.ListLineItemsPagedResponse; + +import com.google.ads.admanager.v1.stub.LineItemServiceStubSettings; +import com.google.api.core.ApiFunction; +import com.google.api.gax.core.GoogleCredentialsProvider; +import com.google.api.gax.core.InstantiatingExecutorProvider; +import com.google.api.gax.httpjson.InstantiatingHttpJsonChannelProvider; +import com.google.api.gax.rpc.ApiClientHeaderProvider; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.ClientSettings; +import com.google.api.gax.rpc.PagedCallSettings; +import com.google.api.gax.rpc.TransportChannelProvider; +import com.google.api.gax.rpc.UnaryCallSettings; +import java.io.IOException; +import java.util.List; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Settings class to configure an instance of {@link LineItemServiceClient}. + * + *

The default instance has everything set to sensible defaults: + * + *

    + *
  • The default service address (admanager.googleapis.com) and default port (443) are used. + *
  • Credentials are acquired automatically through Application Default Credentials. + *
  • Retries are configured for idempotent methods but not for non-idempotent methods. + *
+ * + *

The builder of this class is recursive, so contained classes are themselves builders. When + * build() is called, the tree of builders is called to create the complete settings object. + * + *

For example, to set the + * [RetrySettings](https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.retrying.RetrySettings) + * of getLineItem: + * + *

{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * LineItemServiceSettings.Builder lineItemServiceSettingsBuilder =
+ *     LineItemServiceSettings.newBuilder();
+ * lineItemServiceSettingsBuilder
+ *     .getLineItemSettings()
+ *     .setRetrySettings(
+ *         lineItemServiceSettingsBuilder
+ *             .getLineItemSettings()
+ *             .getRetrySettings()
+ *             .toBuilder()
+ *             .setInitialRetryDelayDuration(Duration.ofSeconds(1))
+ *             .setInitialRpcTimeoutDuration(Duration.ofSeconds(5))
+ *             .setMaxAttempts(5)
+ *             .setMaxRetryDelayDuration(Duration.ofSeconds(30))
+ *             .setMaxRpcTimeoutDuration(Duration.ofSeconds(60))
+ *             .setRetryDelayMultiplier(1.3)
+ *             .setRpcTimeoutMultiplier(1.5)
+ *             .setTotalTimeoutDuration(Duration.ofSeconds(300))
+ *             .build());
+ * LineItemServiceSettings lineItemServiceSettings = lineItemServiceSettingsBuilder.build();
+ * }
+ * + * Please refer to the [Client Side Retry + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. + */ +@Generated("by gapic-generator-java") +public class LineItemServiceSettings extends ClientSettings { + + /** Returns the object with the settings used for calls to getLineItem. */ + public UnaryCallSettings getLineItemSettings() { + return ((LineItemServiceStubSettings) getStubSettings()).getLineItemSettings(); + } + + /** Returns the object with the settings used for calls to listLineItems. */ + public PagedCallSettings + listLineItemsSettings() { + return ((LineItemServiceStubSettings) getStubSettings()).listLineItemsSettings(); + } + + public static final LineItemServiceSettings create(LineItemServiceStubSettings stub) + throws IOException { + return new LineItemServiceSettings.Builder(stub.toBuilder()).build(); + } + + /** Returns a builder for the default ExecutorProvider for this service. */ + public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { + return LineItemServiceStubSettings.defaultExecutorProviderBuilder(); + } + + /** Returns the default service endpoint. */ + public static String getDefaultEndpoint() { + return LineItemServiceStubSettings.getDefaultEndpoint(); + } + + /** Returns the default service scopes. */ + public static List getDefaultServiceScopes() { + return LineItemServiceStubSettings.getDefaultServiceScopes(); + } + + /** Returns a builder for the default credentials for this service. */ + public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { + return LineItemServiceStubSettings.defaultCredentialsProviderBuilder(); + } + + /** Returns a builder for the default ChannelProvider for this service. */ + public static InstantiatingHttpJsonChannelProvider.Builder + defaultHttpJsonTransportProviderBuilder() { + return LineItemServiceStubSettings.defaultHttpJsonTransportProviderBuilder(); + } + + public static TransportChannelProvider defaultTransportChannelProvider() { + return LineItemServiceStubSettings.defaultTransportChannelProvider(); + } + + public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { + return LineItemServiceStubSettings.defaultApiClientHeaderProviderBuilder(); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder() { + return Builder.createDefault(); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder(ClientContext clientContext) { + return new Builder(clientContext); + } + + /** Returns a builder containing all the values of this settings class. */ + public Builder toBuilder() { + return new Builder(this); + } + + protected LineItemServiceSettings(Builder settingsBuilder) throws IOException { + super(settingsBuilder); + } + + /** Builder for LineItemServiceSettings. */ + public static class Builder extends ClientSettings.Builder { + + protected Builder() throws IOException { + this(((ClientContext) null)); + } + + protected Builder(ClientContext clientContext) { + super(LineItemServiceStubSettings.newBuilder(clientContext)); + } + + protected Builder(LineItemServiceSettings settings) { + super(settings.getStubSettings().toBuilder()); + } + + protected Builder(LineItemServiceStubSettings.Builder stubSettings) { + super(stubSettings); + } + + private static Builder createDefault() { + return new Builder(LineItemServiceStubSettings.newBuilder()); + } + + public LineItemServiceStubSettings.Builder getStubSettingsBuilder() { + return ((LineItemServiceStubSettings.Builder) getStubSettings()); + } + + /** + * Applies the given settings updater function to all of the unary API methods in this service. + * + *

Note: This method does not support applying settings to streaming methods. + */ + public Builder applyToAllUnaryMethods( + ApiFunction, Void> settingsUpdater) { + super.applyToAllUnaryMethods( + getStubSettingsBuilder().unaryMethodSettingsBuilders(), settingsUpdater); + return this; + } + + /** Returns the builder for the settings used for calls to getLineItem. */ + public UnaryCallSettings.Builder getLineItemSettings() { + return getStubSettingsBuilder().getLineItemSettings(); + } + + /** Returns the builder for the settings used for calls to listLineItems. */ + public PagedCallSettings.Builder< + ListLineItemsRequest, ListLineItemsResponse, ListLineItemsPagedResponse> + listLineItemsSettings() { + return getStubSettingsBuilder().listLineItemsSettings(); + } + + @Override + public LineItemServiceSettings build() throws IOException { + return new LineItemServiceSettings(this); + } + } +} diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceClient.java index f0dc946a50be..c3bf9bc324a8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceSettings.java index 861ba1c2306c..7370eb38bf4a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MobileCarrierServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceClient.java index e60c0270ad24..1d07a0485ab1 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceSettings.java index 716f3329aa70..0b3661312987 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MobileDeviceServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClient.java index 3000371c2514..6d0c43ff1edf 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceSettings.java index eb60f2f56a30..ff2244cefee6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MobileDeviceSubmodelServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceClient.java index 78450c1e24a2..9b55c154c09d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,9 +18,17 @@ import com.google.ads.admanager.v1.stub.NetworkServiceStub; import com.google.ads.admanager.v1.stub.NetworkServiceStubSettings; +import com.google.api.core.ApiFuture; +import com.google.api.core.ApiFutures; import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.paging.AbstractFixedSizeCollection; +import com.google.api.gax.paging.AbstractPage; +import com.google.api.gax.paging.AbstractPagedListResponse; +import com.google.api.gax.rpc.PageContext; import com.google.api.gax.rpc.UnaryCallable; +import com.google.common.util.concurrent.MoreExecutors; import java.io.IOException; +import java.util.List; import java.util.concurrent.TimeUnit; import javax.annotation.Generated; @@ -82,6 +90,7 @@ * *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

*
    + *
  • listNetworksPagedCallable() *

  • listNetworksCallable() *

* @@ -298,16 +307,23 @@ public final UnaryCallable getNetworkCallable() { * // - It may require specifying regional endpoints when creating the service client as shown in * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library * try (NetworkServiceClient networkServiceClient = NetworkServiceClient.create()) { - * ListNetworksRequest request = ListNetworksRequest.newBuilder().build(); - * ListNetworksResponse response = networkServiceClient.listNetworks(request); + * ListNetworksRequest request = + * ListNetworksRequest.newBuilder() + * .setPageSize(883849137) + * .setPageToken("pageToken873572522") + * .setSkip(3532159) + * .build(); + * for (Network element : networkServiceClient.listNetworks(request).iterateAll()) { + * // doThingsWith(element); + * } * } * } * * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ - public final ListNetworksResponse listNetworks(ListNetworksRequest request) { - return listNetworksCallable().call(request); + public final ListNetworksPagedResponse listNetworks(ListNetworksRequest request) { + return listNetworksPagedCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. @@ -323,11 +339,57 @@ public final ListNetworksResponse listNetworks(ListNetworksRequest request) { * // - It may require specifying regional endpoints when creating the service client as shown in * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library * try (NetworkServiceClient networkServiceClient = NetworkServiceClient.create()) { - * ListNetworksRequest request = ListNetworksRequest.newBuilder().build(); - * ApiFuture future = - * networkServiceClient.listNetworksCallable().futureCall(request); + * ListNetworksRequest request = + * ListNetworksRequest.newBuilder() + * .setPageSize(883849137) + * .setPageToken("pageToken873572522") + * .setSkip(3532159) + * .build(); + * ApiFuture future = + * networkServiceClient.listNetworksPagedCallable().futureCall(request); * // Do something. - * ListNetworksResponse response = future.get(); + * for (Network element : future.get().iterateAll()) { + * // doThingsWith(element); + * } + * } + * } + */ + public final UnaryCallable + listNetworksPagedCallable() { + return stub.listNetworksPagedCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * API to retrieve all the networks the current user has access to. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (NetworkServiceClient networkServiceClient = NetworkServiceClient.create()) {
+   *   ListNetworksRequest request =
+   *       ListNetworksRequest.newBuilder()
+   *           .setPageSize(883849137)
+   *           .setPageToken("pageToken873572522")
+   *           .setSkip(3532159)
+   *           .build();
+   *   while (true) {
+   *     ListNetworksResponse response = networkServiceClient.listNetworksCallable().call(request);
+   *     for (Network element : response.getNetworksList()) {
+   *       // doThingsWith(element);
+   *     }
+   *     String nextPageToken = response.getNextPageToken();
+   *     if (!Strings.isNullOrEmpty(nextPageToken)) {
+   *       request = request.toBuilder().setPageToken(nextPageToken).build();
+   *     } else {
+   *       break;
+   *     }
+   *   }
    * }
    * }
*/ @@ -364,4 +426,79 @@ public void shutdownNow() { public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { return stub.awaitTermination(duration, unit); } + + public static class ListNetworksPagedResponse + extends AbstractPagedListResponse< + ListNetworksRequest, + ListNetworksResponse, + Network, + ListNetworksPage, + ListNetworksFixedSizeCollection> { + + public static ApiFuture createAsync( + PageContext context, + ApiFuture futureResponse) { + ApiFuture futurePage = + ListNetworksPage.createEmptyPage().createPageAsync(context, futureResponse); + return ApiFutures.transform( + futurePage, + input -> new ListNetworksPagedResponse(input), + MoreExecutors.directExecutor()); + } + + private ListNetworksPagedResponse(ListNetworksPage page) { + super(page, ListNetworksFixedSizeCollection.createEmptyCollection()); + } + } + + public static class ListNetworksPage + extends AbstractPage { + + private ListNetworksPage( + PageContext context, + ListNetworksResponse response) { + super(context, response); + } + + private static ListNetworksPage createEmptyPage() { + return new ListNetworksPage(null, null); + } + + @Override + protected ListNetworksPage createPage( + PageContext context, + ListNetworksResponse response) { + return new ListNetworksPage(context, response); + } + + @Override + public ApiFuture createPageAsync( + PageContext context, + ApiFuture futureResponse) { + return super.createPageAsync(context, futureResponse); + } + } + + public static class ListNetworksFixedSizeCollection + extends AbstractFixedSizeCollection< + ListNetworksRequest, + ListNetworksResponse, + Network, + ListNetworksPage, + ListNetworksFixedSizeCollection> { + + private ListNetworksFixedSizeCollection(List pages, int collectionSize) { + super(pages, collectionSize); + } + + private static ListNetworksFixedSizeCollection createEmptyCollection() { + return new ListNetworksFixedSizeCollection(null, 0); + } + + @Override + protected ListNetworksFixedSizeCollection createCollection( + List pages, int collectionSize) { + return new ListNetworksFixedSizeCollection(pages, collectionSize); + } + } } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceSettings.java index 2741d1372b59..2b87891ff622 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/NetworkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,6 +16,8 @@ package com.google.ads.admanager.v1; +import static com.google.ads.admanager.v1.NetworkServiceClient.ListNetworksPagedResponse; + import com.google.ads.admanager.v1.stub.NetworkServiceStubSettings; import com.google.api.core.ApiFunction; import com.google.api.gax.core.GoogleCredentialsProvider; @@ -24,6 +26,7 @@ import com.google.api.gax.rpc.ApiClientHeaderProvider; import com.google.api.gax.rpc.ClientContext; import com.google.api.gax.rpc.ClientSettings; +import com.google.api.gax.rpc.PagedCallSettings; import com.google.api.gax.rpc.TransportChannelProvider; import com.google.api.gax.rpc.UnaryCallSettings; import java.io.IOException; @@ -77,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class NetworkServiceSettings extends ClientSettings { @@ -89,7 +92,8 @@ public UnaryCallSettings getNetworkSettings() { } /** Returns the object with the settings used for calls to listNetworks. */ - public UnaryCallSettings listNetworksSettings() { + public PagedCallSettings + listNetworksSettings() { return ((NetworkServiceStubSettings) getStubSettings()).listNetworksSettings(); } @@ -196,7 +200,8 @@ public UnaryCallSettings.Builder getNetworkSettings( } /** Returns the builder for the settings used for calls to listNetworks. */ - public UnaryCallSettings.Builder + public PagedCallSettings.Builder< + ListNetworksRequest, ListNetworksResponse, ListNetworksPagedResponse> listNetworksSettings() { return getStubSettingsBuilder().listNetworksSettings(); } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceClient.java index e4a5058ffcae..284638041d52 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceSettings.java index 4708812df17b..e4590c2d9221 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class OperatingSystemServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClient.java index 457a4ee7f0f4..fb0195dc1e0c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceSettings.java index 7c3c6ff5b511..53daf6bdadfe 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class OperatingSystemVersionServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceClient.java index 50f1214cadf5..22340f1b2503 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceSettings.java index 6d590ce12b7b..88e4dd2dc708 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/OrderServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class OrderServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceClient.java index 26544146e526..881f270cb469 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceSettings.java index 04411418aedd..b15832ce3fbf 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PlacementServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PlacementServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClient.java index b6e502a9f345..b4bb4ba23888 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceSettings.java index 37ba3614e95d..61687f15d5f7 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PrivateAuctionDealServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceClient.java index 0baecf674f7b..a09ecf33e5e3 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceSettings.java index f951d4c59316..80469a84ef1b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PrivateAuctionServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClient.java index 2fb4e8bcdb38..c02039617f96 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceSettings.java index 44a127cc6a0a..8890b1831144 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProgrammaticBuyerServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceClient.java index 7a6dcdbc89cf..cba4ad102646 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceSettings.java index 7ec412dcb045..70c3c0186ec6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/ReportServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceClient.java index a79c571516f1..56e740a284d1 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceSettings.java index c6b829ef4f41..e8326cb63bea 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/RoleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RoleServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceClient.java index d353e469e4cf..74bde26c96ac 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceSettings.java index 6f945e5f6d45..3160b4901533 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/SiteServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SiteServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClient.java index dc5a12274308..7f1e6ead2a8c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceSettings.java index 6dce01bc50c9..8da1a7aa62bd 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TaxonomyCategoryServiceSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceClient.java index 9310a6af52f5..109710a33410 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceSettings.java index 2ee9b238b844..7d0c225775f8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/TeamServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TeamServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceClient.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceClient.java index 777c4b8de009..6ff04b388393 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceClient.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceSettings.java index 4520c5791ddf..beaae4e80e2b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/UserServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -76,8 +76,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserServiceSettings extends ClientSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/gapic_metadata.json b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/gapic_metadata.json index 08137559a626..cc1bb082605a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/gapic_metadata.json +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/gapic_metadata.json @@ -52,6 +52,24 @@ "grpc": { "libraryClient": "AdUnitServiceClient", "rpcs": { + "BatchActivateAdUnits": { + "methods": ["batchActivateAdUnits", "batchActivateAdUnits", "batchActivateAdUnits", "batchActivateAdUnitsCallable"] + }, + "BatchArchiveAdUnits": { + "methods": ["batchArchiveAdUnits", "batchArchiveAdUnits", "batchArchiveAdUnits", "batchArchiveAdUnitsCallable"] + }, + "BatchCreateAdUnits": { + "methods": ["batchCreateAdUnits", "batchCreateAdUnits", "batchCreateAdUnits", "batchCreateAdUnitsCallable"] + }, + "BatchDeactivateAdUnits": { + "methods": ["batchDeactivateAdUnits", "batchDeactivateAdUnits", "batchDeactivateAdUnits", "batchDeactivateAdUnitsCallable"] + }, + "BatchUpdateAdUnits": { + "methods": ["batchUpdateAdUnits", "batchUpdateAdUnits", "batchUpdateAdUnits", "batchUpdateAdUnitsCallable"] + }, + "CreateAdUnit": { + "methods": ["createAdUnit", "createAdUnit", "createAdUnit", "createAdUnitCallable"] + }, "GetAdUnit": { "methods": ["getAdUnit", "getAdUnit", "getAdUnit", "getAdUnitCallable"] }, @@ -60,6 +78,9 @@ }, "ListAdUnits": { "methods": ["listAdUnits", "listAdUnits", "listAdUnits", "listAdUnitsPagedCallable", "listAdUnitsCallable"] + }, + "UpdateAdUnit": { + "methods": ["updateAdUnit", "updateAdUnit", "updateAdUnitCallable"] } } } @@ -310,11 +331,29 @@ "grpc": { "libraryClient": "CustomTargetingKeyServiceClient", "rpcs": { + "BatchActivateCustomTargetingKeys": { + "methods": ["batchActivateCustomTargetingKeys", "batchActivateCustomTargetingKeys", "batchActivateCustomTargetingKeys", "batchActivateCustomTargetingKeysCallable"] + }, + "BatchCreateCustomTargetingKeys": { + "methods": ["batchCreateCustomTargetingKeys", "batchCreateCustomTargetingKeys", "batchCreateCustomTargetingKeys", "batchCreateCustomTargetingKeysCallable"] + }, + "BatchDeactivateCustomTargetingKeys": { + "methods": ["batchDeactivateCustomTargetingKeys", "batchDeactivateCustomTargetingKeys", "batchDeactivateCustomTargetingKeys", "batchDeactivateCustomTargetingKeysCallable"] + }, + "BatchUpdateCustomTargetingKeys": { + "methods": ["batchUpdateCustomTargetingKeys", "batchUpdateCustomTargetingKeys", "batchUpdateCustomTargetingKeys", "batchUpdateCustomTargetingKeysCallable"] + }, + "CreateCustomTargetingKey": { + "methods": ["createCustomTargetingKey", "createCustomTargetingKey", "createCustomTargetingKey", "createCustomTargetingKeyCallable"] + }, "GetCustomTargetingKey": { "methods": ["getCustomTargetingKey", "getCustomTargetingKey", "getCustomTargetingKey", "getCustomTargetingKeyCallable"] }, "ListCustomTargetingKeys": { "methods": ["listCustomTargetingKeys", "listCustomTargetingKeys", "listCustomTargetingKeys", "listCustomTargetingKeysPagedCallable", "listCustomTargetingKeysCallable"] + }, + "UpdateCustomTargetingKey": { + "methods": ["updateCustomTargetingKey", "updateCustomTargetingKey", "updateCustomTargetingKeyCallable"] } } } @@ -422,6 +461,21 @@ } } }, + "LineItemService": { + "clients": { + "grpc": { + "libraryClient": "LineItemServiceClient", + "rpcs": { + "GetLineItem": { + "methods": ["getLineItem", "getLineItem", "getLineItem", "getLineItemCallable"] + }, + "ListLineItems": { + "methods": ["listLineItems", "listLineItems", "listLineItems", "listLineItemsPagedCallable", "listLineItemsCallable"] + } + } + } + } + }, "MobileCarrierService": { "clients": { "grpc": { @@ -476,7 +530,7 @@ "methods": ["getNetwork", "getNetwork", "getNetwork", "getNetworkCallable"] }, "ListNetworks": { - "methods": ["listNetworks", "listNetworksCallable"] + "methods": ["listNetworks", "listNetworksPagedCallable", "listNetworksCallable"] } } } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/package-info.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/package-info.java index bc441d5874ee..86d2c68fb36f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/package-info.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -474,6 +474,24 @@ * } * } * + *

======================= LineItemServiceClient ======================= + * + *

Service Description: Provides methods for handling `LineItem` objects. + * + *

Sample for LineItemServiceClient: + * + *

{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) {
+ *   LineItemName name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]");
+ *   LineItem response = lineItemServiceClient.getLineItem(name);
+ * }
+ * }
+ * *

======================= MobileCarrierServiceClient ======================= * *

Service Description: Provides methods for handling `MobileCarrier` objects. diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStub.java index 5be03074c9dd..cc5a795690e5 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStubSettings.java index eb4d50c11d42..aecd00bbeb24 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdBreakServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -103,8 +103,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdBreakServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStub.java index 6e5dac9598fe..4c961dd304d8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStubSettings.java index b38b27e3141a..bbb7b560d228 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdReviewCenterAdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -110,8 +110,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStub.java index 17692204c601..7f489ebd414e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,11 +20,23 @@ import static com.google.ads.admanager.v1.AdUnitServiceClient.ListAdUnitsPagedResponse; import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.BatchActivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.BatchCreateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; import com.google.ads.admanager.v1.GetAdUnitRequest; import com.google.ads.admanager.v1.ListAdUnitSizesRequest; import com.google.ads.admanager.v1.ListAdUnitSizesResponse; import com.google.ads.admanager.v1.ListAdUnitsRequest; import com.google.ads.admanager.v1.ListAdUnitsResponse; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; import com.google.api.gax.core.BackgroundResource; import com.google.api.gax.rpc.UnaryCallable; import javax.annotation.Generated; @@ -59,6 +71,39 @@ public UnaryCallable listAdUnit throw new UnsupportedOperationException("Not implemented: listAdUnitSizesCallable()"); } + public UnaryCallable createAdUnitCallable() { + throw new UnsupportedOperationException("Not implemented: createAdUnitCallable()"); + } + + public UnaryCallable updateAdUnitCallable() { + throw new UnsupportedOperationException("Not implemented: updateAdUnitCallable()"); + } + + public UnaryCallable + batchCreateAdUnitsCallable() { + throw new UnsupportedOperationException("Not implemented: batchCreateAdUnitsCallable()"); + } + + public UnaryCallable + batchUpdateAdUnitsCallable() { + throw new UnsupportedOperationException("Not implemented: batchUpdateAdUnitsCallable()"); + } + + public UnaryCallable + batchActivateAdUnitsCallable() { + throw new UnsupportedOperationException("Not implemented: batchActivateAdUnitsCallable()"); + } + + public UnaryCallable + batchDeactivateAdUnitsCallable() { + throw new UnsupportedOperationException("Not implemented: batchDeactivateAdUnitsCallable()"); + } + + public UnaryCallable + batchArchiveAdUnitsCallable() { + throw new UnsupportedOperationException("Not implemented: batchArchiveAdUnitsCallable()"); + } + @Override public abstract void close(); } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStubSettings.java index 3e14cb9ecc11..a4f8c7d02d0d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AdUnitServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,11 +21,23 @@ import com.google.ads.admanager.v1.AdUnit; import com.google.ads.admanager.v1.AdUnitSize; +import com.google.ads.admanager.v1.BatchActivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.BatchCreateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; import com.google.ads.admanager.v1.GetAdUnitRequest; import com.google.ads.admanager.v1.ListAdUnitSizesRequest; import com.google.ads.admanager.v1.ListAdUnitSizesResponse; import com.google.ads.admanager.v1.ListAdUnitsRequest; import com.google.ads.admanager.v1.ListAdUnitsResponse; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; import com.google.api.core.ApiFunction; import com.google.api.core.ApiFuture; import com.google.api.core.ObsoleteApi; @@ -103,8 +115,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdUnitServiceStubSettings extends StubSettings { @@ -118,6 +130,18 @@ public class AdUnitServiceStubSettings extends StubSettings listAdUnitSizesSettings; + private final UnaryCallSettings createAdUnitSettings; + private final UnaryCallSettings updateAdUnitSettings; + private final UnaryCallSettings + batchCreateAdUnitsSettings; + private final UnaryCallSettings + batchUpdateAdUnitsSettings; + private final UnaryCallSettings + batchActivateAdUnitsSettings; + private final UnaryCallSettings + batchDeactivateAdUnitsSettings; + private final UnaryCallSettings + batchArchiveAdUnitsSettings; private static final PagedListDescriptor LIST_AD_UNITS_PAGE_STR_DESC = @@ -242,6 +266,46 @@ public UnaryCallSettings getAdUnitSettings() { return listAdUnitSizesSettings; } + /** Returns the object with the settings used for calls to createAdUnit. */ + public UnaryCallSettings createAdUnitSettings() { + return createAdUnitSettings; + } + + /** Returns the object with the settings used for calls to updateAdUnit. */ + public UnaryCallSettings updateAdUnitSettings() { + return updateAdUnitSettings; + } + + /** Returns the object with the settings used for calls to batchCreateAdUnits. */ + public UnaryCallSettings + batchCreateAdUnitsSettings() { + return batchCreateAdUnitsSettings; + } + + /** Returns the object with the settings used for calls to batchUpdateAdUnits. */ + public UnaryCallSettings + batchUpdateAdUnitsSettings() { + return batchUpdateAdUnitsSettings; + } + + /** Returns the object with the settings used for calls to batchActivateAdUnits. */ + public UnaryCallSettings + batchActivateAdUnitsSettings() { + return batchActivateAdUnitsSettings; + } + + /** Returns the object with the settings used for calls to batchDeactivateAdUnits. */ + public UnaryCallSettings + batchDeactivateAdUnitsSettings() { + return batchDeactivateAdUnitsSettings; + } + + /** Returns the object with the settings used for calls to batchArchiveAdUnits. */ + public UnaryCallSettings + batchArchiveAdUnitsSettings() { + return batchArchiveAdUnitsSettings; + } + public AdUnitServiceStub createStub() throws IOException { if (getTransportChannelProvider() .getTransportName() @@ -327,6 +391,13 @@ protected AdUnitServiceStubSettings(Builder settingsBuilder) throws IOException getAdUnitSettings = settingsBuilder.getAdUnitSettings().build(); listAdUnitsSettings = settingsBuilder.listAdUnitsSettings().build(); listAdUnitSizesSettings = settingsBuilder.listAdUnitSizesSettings().build(); + createAdUnitSettings = settingsBuilder.createAdUnitSettings().build(); + updateAdUnitSettings = settingsBuilder.updateAdUnitSettings().build(); + batchCreateAdUnitsSettings = settingsBuilder.batchCreateAdUnitsSettings().build(); + batchUpdateAdUnitsSettings = settingsBuilder.batchUpdateAdUnitsSettings().build(); + batchActivateAdUnitsSettings = settingsBuilder.batchActivateAdUnitsSettings().build(); + batchDeactivateAdUnitsSettings = settingsBuilder.batchDeactivateAdUnitsSettings().build(); + batchArchiveAdUnitsSettings = settingsBuilder.batchArchiveAdUnitsSettings().build(); } /** Builder for AdUnitServiceStubSettings. */ @@ -339,6 +410,20 @@ public static class Builder extends StubSettings.Builder listAdUnitSizesSettings; + private final UnaryCallSettings.Builder createAdUnitSettings; + private final UnaryCallSettings.Builder updateAdUnitSettings; + private final UnaryCallSettings.Builder + batchCreateAdUnitsSettings; + private final UnaryCallSettings.Builder + batchUpdateAdUnitsSettings; + private final UnaryCallSettings.Builder< + BatchActivateAdUnitsRequest, BatchActivateAdUnitsResponse> + batchActivateAdUnitsSettings; + private final UnaryCallSettings.Builder< + BatchDeactivateAdUnitsRequest, BatchDeactivateAdUnitsResponse> + batchDeactivateAdUnitsSettings; + private final UnaryCallSettings.Builder + batchArchiveAdUnitsSettings; private static final ImmutableMap> RETRYABLE_CODE_DEFINITIONS; @@ -369,10 +454,26 @@ protected Builder(ClientContext clientContext) { getAdUnitSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); listAdUnitsSettings = PagedCallSettings.newBuilder(LIST_AD_UNITS_PAGE_STR_FACT); listAdUnitSizesSettings = PagedCallSettings.newBuilder(LIST_AD_UNIT_SIZES_PAGE_STR_FACT); + createAdUnitSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + updateAdUnitSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchCreateAdUnitsSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchUpdateAdUnitsSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchActivateAdUnitsSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchDeactivateAdUnitsSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchArchiveAdUnitsSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( - getAdUnitSettings, listAdUnitsSettings, listAdUnitSizesSettings); + getAdUnitSettings, + listAdUnitsSettings, + listAdUnitSizesSettings, + createAdUnitSettings, + updateAdUnitSettings, + batchCreateAdUnitsSettings, + batchUpdateAdUnitsSettings, + batchActivateAdUnitsSettings, + batchDeactivateAdUnitsSettings, + batchArchiveAdUnitsSettings); initDefaults(this); } @@ -382,10 +483,26 @@ protected Builder(AdUnitServiceStubSettings settings) { getAdUnitSettings = settings.getAdUnitSettings.toBuilder(); listAdUnitsSettings = settings.listAdUnitsSettings.toBuilder(); listAdUnitSizesSettings = settings.listAdUnitSizesSettings.toBuilder(); + createAdUnitSettings = settings.createAdUnitSettings.toBuilder(); + updateAdUnitSettings = settings.updateAdUnitSettings.toBuilder(); + batchCreateAdUnitsSettings = settings.batchCreateAdUnitsSettings.toBuilder(); + batchUpdateAdUnitsSettings = settings.batchUpdateAdUnitsSettings.toBuilder(); + batchActivateAdUnitsSettings = settings.batchActivateAdUnitsSettings.toBuilder(); + batchDeactivateAdUnitsSettings = settings.batchDeactivateAdUnitsSettings.toBuilder(); + batchArchiveAdUnitsSettings = settings.batchArchiveAdUnitsSettings.toBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( - getAdUnitSettings, listAdUnitsSettings, listAdUnitSizesSettings); + getAdUnitSettings, + listAdUnitsSettings, + listAdUnitSizesSettings, + createAdUnitSettings, + updateAdUnitSettings, + batchCreateAdUnitsSettings, + batchUpdateAdUnitsSettings, + batchActivateAdUnitsSettings, + batchDeactivateAdUnitsSettings, + batchArchiveAdUnitsSettings); } private static Builder createDefault() { @@ -416,6 +533,41 @@ private static Builder initDefaults(Builder builder) { .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + builder + .createAdUnitSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .updateAdUnitSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchCreateAdUnitsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchUpdateAdUnitsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchActivateAdUnitsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchDeactivateAdUnitsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchArchiveAdUnitsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + return builder; } @@ -453,6 +605,46 @@ public UnaryCallSettings.Builder getAdUnitSettings() { return listAdUnitSizesSettings; } + /** Returns the builder for the settings used for calls to createAdUnit. */ + public UnaryCallSettings.Builder createAdUnitSettings() { + return createAdUnitSettings; + } + + /** Returns the builder for the settings used for calls to updateAdUnit. */ + public UnaryCallSettings.Builder updateAdUnitSettings() { + return updateAdUnitSettings; + } + + /** Returns the builder for the settings used for calls to batchCreateAdUnits. */ + public UnaryCallSettings.Builder + batchCreateAdUnitsSettings() { + return batchCreateAdUnitsSettings; + } + + /** Returns the builder for the settings used for calls to batchUpdateAdUnits. */ + public UnaryCallSettings.Builder + batchUpdateAdUnitsSettings() { + return batchUpdateAdUnitsSettings; + } + + /** Returns the builder for the settings used for calls to batchActivateAdUnits. */ + public UnaryCallSettings.Builder + batchActivateAdUnitsSettings() { + return batchActivateAdUnitsSettings; + } + + /** Returns the builder for the settings used for calls to batchDeactivateAdUnits. */ + public UnaryCallSettings.Builder + batchDeactivateAdUnitsSettings() { + return batchDeactivateAdUnitsSettings; + } + + /** Returns the builder for the settings used for calls to batchArchiveAdUnits. */ + public UnaryCallSettings.Builder + batchArchiveAdUnitsSettings() { + return batchArchiveAdUnitsSettings; + } + @Override public AdUnitServiceStubSettings build() throws IOException { return new AdUnitServiceStubSettings(this); diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStub.java index 2bb30d581a2f..a722dbc14747 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStubSettings.java index f9bf1e9bc53d..f1741756a132 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ApplicationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApplicationServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStub.java index 85f6803d9f15..92e1f9ba0820 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStubSettings.java index dff91da590bc..caf66502dbfc 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/AudienceSegmentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceSegmentServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStub.java index 824b0b4009d6..fb208e8fd91d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStubSettings.java index 8fa908a81649..21c54669962c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BandwidthGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BandwidthGroupServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStub.java index 92382509952e..6d3f0e62c9bb 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStubSettings.java index 8db71e556d4f..c715ca0677f9 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserLanguageServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrowserLanguageServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStub.java index 1b63baee8fbc..07312bea8a1f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStubSettings.java index 0f3cc3086660..1ea19b0ae5e3 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/BrowserServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrowserServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStub.java index 197260d35312..d63c6ba63e41 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStubSettings.java index f7c900539cc8..d2a9182ee5ec 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataKeyServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CmsMetadataKeyServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStub.java index 0b8bc7da31a5..f881e666fb92 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStubSettings.java index c63c164b15da..1809412418b2 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CmsMetadataValueServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CmsMetadataValueServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStub.java index ba0ef2210547..71f19234b26d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStubSettings.java index 32efd3a4f113..dc702571347f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CompanyServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CompanyServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStub.java index c86c964b61a6..77e2c0f92fd8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStubSettings.java index 9b39c38675bd..df487fa13e14 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContactServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -105,8 +105,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContactServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStub.java index 7e434aa97055..e1987459df6e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStubSettings.java index fadf0fb01d7a..cd3543af3d05 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentBundleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentBundleServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStub.java index c24d26320a48..12365945caeb 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStubSettings.java index 6e53f1ea6710..8d3de22a81bd 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentLabelServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStub.java index dfcf9b1cce3d..e9e147e6e9a7 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStubSettings.java index 38d05469a09e..3c47e87ab8a2 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ContentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStub.java index e4f16d3a4bdc..5b1a7d952c88 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStubSettings.java index 86cec71c610a..29cae331396d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CreativeTemplateServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CreativeTemplateServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStub.java index 9648804777d9..560dd3d973b4 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStubSettings.java index 3a671d69bfa5..f8ab2c1a438e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomFieldServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -110,8 +110,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomFieldServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStub.java index 9e6a658f6769..95e682847c89 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,10 +18,20 @@ import static com.google.ads.admanager.v1.CustomTargetingKeyServiceClient.ListCustomTargetingKeysPagedResponse; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; import com.google.ads.admanager.v1.CustomTargetingKey; import com.google.ads.admanager.v1.GetCustomTargetingKeyRequest; import com.google.ads.admanager.v1.ListCustomTargetingKeysRequest; import com.google.ads.admanager.v1.ListCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; import com.google.api.gax.core.BackgroundResource; import com.google.api.gax.rpc.UnaryCallable; import javax.annotation.Generated; @@ -51,6 +61,44 @@ public abstract class CustomTargetingKeyServiceStub implements BackgroundResourc throw new UnsupportedOperationException("Not implemented: listCustomTargetingKeysCallable()"); } + public UnaryCallable + createCustomTargetingKeyCallable() { + throw new UnsupportedOperationException("Not implemented: createCustomTargetingKeyCallable()"); + } + + public UnaryCallable< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysCallable() { + throw new UnsupportedOperationException( + "Not implemented: batchCreateCustomTargetingKeysCallable()"); + } + + public UnaryCallable + updateCustomTargetingKeyCallable() { + throw new UnsupportedOperationException("Not implemented: updateCustomTargetingKeyCallable()"); + } + + public UnaryCallable< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysCallable() { + throw new UnsupportedOperationException( + "Not implemented: batchUpdateCustomTargetingKeysCallable()"); + } + + public UnaryCallable< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysCallable() { + throw new UnsupportedOperationException( + "Not implemented: batchActivateCustomTargetingKeysCallable()"); + } + + public UnaryCallable< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysCallable() { + throw new UnsupportedOperationException( + "Not implemented: batchDeactivateCustomTargetingKeysCallable()"); + } + @Override public abstract void close(); } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStubSettings.java index 907860e16a0a..6ca7a3df49f9 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingKeyServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,10 +18,20 @@ import static com.google.ads.admanager.v1.CustomTargetingKeyServiceClient.ListCustomTargetingKeysPagedResponse; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; import com.google.ads.admanager.v1.CustomTargetingKey; import com.google.ads.admanager.v1.GetCustomTargetingKeyRequest; import com.google.ads.admanager.v1.ListCustomTargetingKeysRequest; import com.google.ads.admanager.v1.ListCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; import com.google.api.core.ApiFunction; import com.google.api.core.ApiFuture; import com.google.api.core.ObsoleteApi; @@ -100,8 +110,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomTargetingKeyServiceStubSettings @@ -117,6 +127,22 @@ public class CustomTargetingKeyServiceStubSettings ListCustomTargetingKeysResponse, ListCustomTargetingKeysPagedResponse> listCustomTargetingKeysSettings; + private final UnaryCallSettings + createCustomTargetingKeySettings; + private final UnaryCallSettings< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysSettings; + private final UnaryCallSettings + updateCustomTargetingKeySettings; + private final UnaryCallSettings< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysSettings; + private final UnaryCallSettings< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysSettings; + private final UnaryCallSettings< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysSettings; private static final PagedListDescriptor< ListCustomTargetingKeysRequest, ListCustomTargetingKeysResponse, CustomTargetingKey> @@ -203,6 +229,46 @@ public ApiFuture getFuturePagedResponse( return listCustomTargetingKeysSettings; } + /** Returns the object with the settings used for calls to createCustomTargetingKey. */ + public UnaryCallSettings + createCustomTargetingKeySettings() { + return createCustomTargetingKeySettings; + } + + /** Returns the object with the settings used for calls to batchCreateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysSettings() { + return batchCreateCustomTargetingKeysSettings; + } + + /** Returns the object with the settings used for calls to updateCustomTargetingKey. */ + public UnaryCallSettings + updateCustomTargetingKeySettings() { + return updateCustomTargetingKeySettings; + } + + /** Returns the object with the settings used for calls to batchUpdateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysSettings() { + return batchUpdateCustomTargetingKeysSettings; + } + + /** Returns the object with the settings used for calls to batchActivateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysSettings() { + return batchActivateCustomTargetingKeysSettings; + } + + /** Returns the object with the settings used for calls to batchDeactivateCustomTargetingKeys. */ + public UnaryCallSettings< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysSettings() { + return batchDeactivateCustomTargetingKeysSettings; + } + public CustomTargetingKeyServiceStub createStub() throws IOException { if (getTransportChannelProvider() .getTransportName() @@ -287,6 +353,16 @@ protected CustomTargetingKeyServiceStubSettings(Builder settingsBuilder) throws getCustomTargetingKeySettings = settingsBuilder.getCustomTargetingKeySettings().build(); listCustomTargetingKeysSettings = settingsBuilder.listCustomTargetingKeysSettings().build(); + createCustomTargetingKeySettings = settingsBuilder.createCustomTargetingKeySettings().build(); + batchCreateCustomTargetingKeysSettings = + settingsBuilder.batchCreateCustomTargetingKeysSettings().build(); + updateCustomTargetingKeySettings = settingsBuilder.updateCustomTargetingKeySettings().build(); + batchUpdateCustomTargetingKeysSettings = + settingsBuilder.batchUpdateCustomTargetingKeysSettings().build(); + batchActivateCustomTargetingKeysSettings = + settingsBuilder.batchActivateCustomTargetingKeysSettings().build(); + batchDeactivateCustomTargetingKeysSettings = + settingsBuilder.batchDeactivateCustomTargetingKeysSettings().build(); } /** Builder for CustomTargetingKeyServiceStubSettings. */ @@ -300,6 +376,22 @@ public static class Builder ListCustomTargetingKeysResponse, ListCustomTargetingKeysPagedResponse> listCustomTargetingKeysSettings; + private final UnaryCallSettings.Builder + createCustomTargetingKeySettings; + private final UnaryCallSettings.Builder< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysSettings; + private final UnaryCallSettings.Builder + updateCustomTargetingKeySettings; + private final UnaryCallSettings.Builder< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysSettings; + private final UnaryCallSettings.Builder< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysSettings; + private final UnaryCallSettings.Builder< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysSettings; private static final ImmutableMap> RETRYABLE_CODE_DEFINITIONS; @@ -330,10 +422,23 @@ protected Builder(ClientContext clientContext) { getCustomTargetingKeySettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); listCustomTargetingKeysSettings = PagedCallSettings.newBuilder(LIST_CUSTOM_TARGETING_KEYS_PAGE_STR_FACT); + createCustomTargetingKeySettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchCreateCustomTargetingKeysSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + updateCustomTargetingKeySettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchUpdateCustomTargetingKeysSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchActivateCustomTargetingKeysSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + batchDeactivateCustomTargetingKeysSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( - getCustomTargetingKeySettings, listCustomTargetingKeysSettings); + getCustomTargetingKeySettings, + listCustomTargetingKeysSettings, + createCustomTargetingKeySettings, + batchCreateCustomTargetingKeysSettings, + updateCustomTargetingKeySettings, + batchUpdateCustomTargetingKeysSettings, + batchActivateCustomTargetingKeysSettings, + batchDeactivateCustomTargetingKeysSettings); initDefaults(this); } @@ -342,10 +447,27 @@ protected Builder(CustomTargetingKeyServiceStubSettings settings) { getCustomTargetingKeySettings = settings.getCustomTargetingKeySettings.toBuilder(); listCustomTargetingKeysSettings = settings.listCustomTargetingKeysSettings.toBuilder(); + createCustomTargetingKeySettings = settings.createCustomTargetingKeySettings.toBuilder(); + batchCreateCustomTargetingKeysSettings = + settings.batchCreateCustomTargetingKeysSettings.toBuilder(); + updateCustomTargetingKeySettings = settings.updateCustomTargetingKeySettings.toBuilder(); + batchUpdateCustomTargetingKeysSettings = + settings.batchUpdateCustomTargetingKeysSettings.toBuilder(); + batchActivateCustomTargetingKeysSettings = + settings.batchActivateCustomTargetingKeysSettings.toBuilder(); + batchDeactivateCustomTargetingKeysSettings = + settings.batchDeactivateCustomTargetingKeysSettings.toBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( - getCustomTargetingKeySettings, listCustomTargetingKeysSettings); + getCustomTargetingKeySettings, + listCustomTargetingKeysSettings, + createCustomTargetingKeySettings, + batchCreateCustomTargetingKeysSettings, + updateCustomTargetingKeySettings, + batchUpdateCustomTargetingKeysSettings, + batchActivateCustomTargetingKeysSettings, + batchDeactivateCustomTargetingKeysSettings); } private static Builder createDefault() { @@ -371,6 +493,36 @@ private static Builder initDefaults(Builder builder) { .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + builder + .createCustomTargetingKeySettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchCreateCustomTargetingKeysSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .updateCustomTargetingKeySettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchUpdateCustomTargetingKeysSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchActivateCustomTargetingKeysSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .batchDeactivateCustomTargetingKeysSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + return builder; } @@ -404,6 +556,48 @@ public Builder applyToAllUnaryMethods( return listCustomTargetingKeysSettings; } + /** Returns the builder for the settings used for calls to createCustomTargetingKey. */ + public UnaryCallSettings.Builder + createCustomTargetingKeySettings() { + return createCustomTargetingKeySettings; + } + + /** Returns the builder for the settings used for calls to batchCreateCustomTargetingKeys. */ + public UnaryCallSettings.Builder< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysSettings() { + return batchCreateCustomTargetingKeysSettings; + } + + /** Returns the builder for the settings used for calls to updateCustomTargetingKey. */ + public UnaryCallSettings.Builder + updateCustomTargetingKeySettings() { + return updateCustomTargetingKeySettings; + } + + /** Returns the builder for the settings used for calls to batchUpdateCustomTargetingKeys. */ + public UnaryCallSettings.Builder< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysSettings() { + return batchUpdateCustomTargetingKeysSettings; + } + + /** Returns the builder for the settings used for calls to batchActivateCustomTargetingKeys. */ + public UnaryCallSettings.Builder< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysSettings() { + return batchActivateCustomTargetingKeysSettings; + } + + /** + * Returns the builder for the settings used for calls to batchDeactivateCustomTargetingKeys. + */ + public UnaryCallSettings.Builder< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysSettings() { + return batchDeactivateCustomTargetingKeysSettings; + } + @Override public CustomTargetingKeyServiceStubSettings build() throws IOException { return new CustomTargetingKeyServiceStubSettings(this); diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStub.java index 9dfdfeae371b..2c57b2142c02 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStubSettings.java index df80aee98069..8b5ec6f0689c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/CustomTargetingValueServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomTargetingValueServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStub.java index 1f97f519063e..a3c57573a6b1 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStubSettings.java index 99bdcbaa50bb..25b37123b38d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCapabilityServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DeviceCapabilityServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStub.java index 2f4d2f69cf5a..f9494d208337 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStubSettings.java index a67b171229c6..e63f0e21893f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceCategoryServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DeviceCategoryServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStub.java index 3c579281bc5b..0634bd59792c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStubSettings.java index a02b79d46c3c..5e8b70b68366 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/DeviceManufacturerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DeviceManufacturerServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStub.java index c55006f0db5a..52a378dd5df5 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStubSettings.java index efdc83f21122..7a78bc4b48cf 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/EntitySignalsMappingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -106,8 +106,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class EntitySignalsMappingServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStub.java index 0af9be4b3fff..05870691f567 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStubSettings.java index cf8f85703d85..d68c44d51e51 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/GeoTargetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceCallableFactory.java index 70014fb9516e..52d9f5c2f563 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceStub.java index ae3ed68f9368..c1c79ae0462c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdBreakServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceCallableFactory.java index d4b2c518fda1..eb2eb2cb508b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceStub.java index f176756c266a..997d5e22dcce 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdReviewCenterAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceCallableFactory.java index 70b2067a4fda..f13bfa69039d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceStub.java index e88b0b1183d4..22d533a2e85b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAdUnitServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,11 +20,23 @@ import static com.google.ads.admanager.v1.AdUnitServiceClient.ListAdUnitsPagedResponse; import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.BatchActivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.BatchCreateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; import com.google.ads.admanager.v1.GetAdUnitRequest; import com.google.ads.admanager.v1.ListAdUnitSizesRequest; import com.google.ads.admanager.v1.ListAdUnitSizesResponse; import com.google.ads.admanager.v1.ListAdUnitsRequest; import com.google.ads.admanager.v1.ListAdUnitsResponse; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; import com.google.api.core.InternalApi; import com.google.api.gax.core.BackgroundResource; import com.google.api.gax.core.BackgroundResourceAggregation; @@ -167,6 +179,271 @@ public class HttpJsonAdUnitServiceStub extends AdUnitServiceStub { .build()) .build(); + private static final ApiMethodDescriptor + createAdUnitMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/CreateAdUnit") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/adUnits", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("adUnit", request.getAdUnit(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(AdUnit.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor + updateAdUnitMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/UpdateAdUnit") + .setHttpMethod("PATCH") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{adUnit.name=networks/*/adUnits/*}", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam( + fields, "adUnit.name", request.getAdUnit().getName()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "updateMask", request.getUpdateMask()); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("adUnit", request.getAdUnit(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(AdUnit.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor + batchCreateAdUnitsMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/BatchCreateAdUnits") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/adUnits:batchCreate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(BatchCreateAdUnitsResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor + batchUpdateAdUnitsMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/BatchUpdateAdUnits") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/adUnits:batchUpdate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(BatchUpdateAdUnitsResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor< + BatchActivateAdUnitsRequest, BatchActivateAdUnitsResponse> + batchActivateAdUnitsMethodDescriptor = + ApiMethodDescriptor + .newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/BatchActivateAdUnits") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/adUnits:batchActivate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(BatchActivateAdUnitsResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor< + BatchDeactivateAdUnitsRequest, BatchDeactivateAdUnitsResponse> + batchDeactivateAdUnitsMethodDescriptor = + ApiMethodDescriptor + .newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/BatchDeactivateAdUnits") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/adUnits:batchDeactivate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(BatchDeactivateAdUnitsResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor + batchArchiveAdUnitsMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.AdUnitService/BatchArchiveAdUnits") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/adUnits:batchArchive", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(BatchArchiveAdUnitsResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + private final UnaryCallable getAdUnitCallable; private final UnaryCallable listAdUnitsCallable; private final UnaryCallable @@ -175,6 +452,18 @@ public class HttpJsonAdUnitServiceStub extends AdUnitServiceStub { listAdUnitSizesCallable; private final UnaryCallable listAdUnitSizesPagedCallable; + private final UnaryCallable createAdUnitCallable; + private final UnaryCallable updateAdUnitCallable; + private final UnaryCallable + batchCreateAdUnitsCallable; + private final UnaryCallable + batchUpdateAdUnitsCallable; + private final UnaryCallable + batchActivateAdUnitsCallable; + private final UnaryCallable + batchDeactivateAdUnitsCallable; + private final UnaryCallable + batchArchiveAdUnitsCallable; private final BackgroundResource backgroundResources; private final HttpJsonStubCallableFactory callableFactory; @@ -252,6 +541,91 @@ protected HttpJsonAdUnitServiceStub( return builder.build(); }) .build(); + HttpJsonCallSettings createAdUnitTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(createAdUnitMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings updateAdUnitTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(updateAdUnitMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("ad_unit.name", String.valueOf(request.getAdUnit().getName())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + batchCreateAdUnitsTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(batchCreateAdUnitsMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + batchUpdateAdUnitsTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(batchUpdateAdUnitsMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + batchActivateAdUnitsTransportSettings = + HttpJsonCallSettings + .newBuilder() + .setMethodDescriptor(batchActivateAdUnitsMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + batchDeactivateAdUnitsTransportSettings = + HttpJsonCallSettings + .newBuilder() + .setMethodDescriptor(batchDeactivateAdUnitsMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + batchArchiveAdUnitsTransportSettings = + HttpJsonCallSettings + .newBuilder() + .setMethodDescriptor(batchArchiveAdUnitsMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); this.getAdUnitCallable = callableFactory.createUnaryCallable( @@ -268,6 +642,37 @@ protected HttpJsonAdUnitServiceStub( this.listAdUnitSizesPagedCallable = callableFactory.createPagedCallable( listAdUnitSizesTransportSettings, settings.listAdUnitSizesSettings(), clientContext); + this.createAdUnitCallable = + callableFactory.createUnaryCallable( + createAdUnitTransportSettings, settings.createAdUnitSettings(), clientContext); + this.updateAdUnitCallable = + callableFactory.createUnaryCallable( + updateAdUnitTransportSettings, settings.updateAdUnitSettings(), clientContext); + this.batchCreateAdUnitsCallable = + callableFactory.createUnaryCallable( + batchCreateAdUnitsTransportSettings, + settings.batchCreateAdUnitsSettings(), + clientContext); + this.batchUpdateAdUnitsCallable = + callableFactory.createUnaryCallable( + batchUpdateAdUnitsTransportSettings, + settings.batchUpdateAdUnitsSettings(), + clientContext); + this.batchActivateAdUnitsCallable = + callableFactory.createUnaryCallable( + batchActivateAdUnitsTransportSettings, + settings.batchActivateAdUnitsSettings(), + clientContext); + this.batchDeactivateAdUnitsCallable = + callableFactory.createUnaryCallable( + batchDeactivateAdUnitsTransportSettings, + settings.batchDeactivateAdUnitsSettings(), + clientContext); + this.batchArchiveAdUnitsCallable = + callableFactory.createUnaryCallable( + batchArchiveAdUnitsTransportSettings, + settings.batchArchiveAdUnitsSettings(), + clientContext); this.backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources()); @@ -279,6 +684,13 @@ public static List getMethodDescriptors() { methodDescriptors.add(getAdUnitMethodDescriptor); methodDescriptors.add(listAdUnitsMethodDescriptor); methodDescriptors.add(listAdUnitSizesMethodDescriptor); + methodDescriptors.add(createAdUnitMethodDescriptor); + methodDescriptors.add(updateAdUnitMethodDescriptor); + methodDescriptors.add(batchCreateAdUnitsMethodDescriptor); + methodDescriptors.add(batchUpdateAdUnitsMethodDescriptor); + methodDescriptors.add(batchActivateAdUnitsMethodDescriptor); + methodDescriptors.add(batchDeactivateAdUnitsMethodDescriptor); + methodDescriptors.add(batchArchiveAdUnitsMethodDescriptor); return methodDescriptors; } @@ -308,6 +720,46 @@ public UnaryCallable listAdUnit return listAdUnitSizesPagedCallable; } + @Override + public UnaryCallable createAdUnitCallable() { + return createAdUnitCallable; + } + + @Override + public UnaryCallable updateAdUnitCallable() { + return updateAdUnitCallable; + } + + @Override + public UnaryCallable + batchCreateAdUnitsCallable() { + return batchCreateAdUnitsCallable; + } + + @Override + public UnaryCallable + batchUpdateAdUnitsCallable() { + return batchUpdateAdUnitsCallable; + } + + @Override + public UnaryCallable + batchActivateAdUnitsCallable() { + return batchActivateAdUnitsCallable; + } + + @Override + public UnaryCallable + batchDeactivateAdUnitsCallable() { + return batchDeactivateAdUnitsCallable; + } + + @Override + public UnaryCallable + batchArchiveAdUnitsCallable() { + return batchArchiveAdUnitsCallable; + } + @Override public final void close() { try { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceCallableFactory.java index 0501bd45cb6b..9b37ea699690 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceStub.java index 30c653a578d7..bde822b78bdf 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonApplicationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceCallableFactory.java index 72378dd2dceb..eb33076844f1 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceStub.java index 0f91ef3597d4..7f97c875d93e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonAudienceSegmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceCallableFactory.java index fa44c0632a34..a46470591664 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceStub.java index c4c125ff269b..ef5dbf26e9d2 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBandwidthGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceCallableFactory.java index 7f7edbe9ae60..8358d98da830 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceStub.java index 6cf3089062d4..d4abcbdefdc7 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserLanguageServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceCallableFactory.java index 2c14e8cec868..01cd3b5f5c60 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceStub.java index c550da021c51..d1bf5ea7265c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonBrowserServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceCallableFactory.java index c2c39fdfabdc..38e5347f5725 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceStub.java index d03ef83ed772..a221dc1d5215 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataKeyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceCallableFactory.java index 26a1b1cf0040..52b79795776a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceStub.java index 03d912676f3f..6e044af21e7e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCmsMetadataValueServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceCallableFactory.java index 5e57ee939288..4ea57d8f7efd 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceStub.java index 488fd4c564d0..ab12ea9477ba 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCompanyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceCallableFactory.java index 28ea9ebc3b4e..481033f7c0f6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceStub.java index c6238fa1f20e..4a72cd1df01e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContactServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceCallableFactory.java index a11979029a3b..1038ac6e562f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceStub.java index ef389192cd95..f7c69034fb71 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentBundleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceCallableFactory.java index c89589bbc23d..bdd042687f75 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceStub.java index 3bd9c1aa82cc..85865bbfc795 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceCallableFactory.java index aae2eb1cdc1a..0a0d35a0b995 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceStub.java index 2efb85313f14..4a5ed98a3614 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonContentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceCallableFactory.java index 47bdf658d345..2afee84a89b4 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceStub.java index 7d7a0a802e87..96a82865892a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCreativeTemplateServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceCallableFactory.java index 695439a29904..acd02de7b9be 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceStub.java index 398a28e0bc39..2e696d44580c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceCallableFactory.java index 7e5d03a63e1b..192688bc8e04 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceStub.java index 597ac4a41a70..fecac2db3a7b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingKeyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,10 +18,20 @@ import static com.google.ads.admanager.v1.CustomTargetingKeyServiceClient.ListCustomTargetingKeysPagedResponse; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; import com.google.ads.admanager.v1.CustomTargetingKey; import com.google.ads.admanager.v1.GetCustomTargetingKeyRequest; import com.google.ads.admanager.v1.ListCustomTargetingKeysRequest; import com.google.ads.admanager.v1.ListCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; import com.google.api.core.InternalApi; import com.google.api.gax.core.BackgroundResource; import com.google.api.gax.core.BackgroundResourceAggregation; @@ -130,12 +140,281 @@ public class HttpJsonCustomTargetingKeyServiceStub extends CustomTargetingKeySer .build()) .build(); + private static final ApiMethodDescriptor + createCustomTargetingKeyMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName( + "google.ads.admanager.v1.CustomTargetingKeyService/CreateCustomTargetingKey") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/customTargetingKeys", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody( + "customTargetingKey", request.getCustomTargetingKey(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(CustomTargetingKey.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysMethodDescriptor = + ApiMethodDescriptor + . + newBuilder() + .setFullMethodName( + "google.ads.admanager.v1.CustomTargetingKeyService/BatchCreateCustomTargetingKeys") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/customTargetingKeys:batchCreate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance( + BatchCreateCustomTargetingKeysResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor + updateCustomTargetingKeyMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName( + "google.ads.admanager.v1.CustomTargetingKeyService/UpdateCustomTargetingKey") + .setHttpMethod("PATCH") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{customTargetingKey.name=networks/*/customTargetingKeys/*}", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam( + fields, + "customTargetingKey.name", + request.getCustomTargetingKey().getName()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "updateMask", request.getUpdateMask()); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody( + "customTargetingKey", request.getCustomTargetingKey(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(CustomTargetingKey.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysMethodDescriptor = + ApiMethodDescriptor + . + newBuilder() + .setFullMethodName( + "google.ads.admanager.v1.CustomTargetingKeyService/BatchUpdateCustomTargetingKeys") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/customTargetingKeys:batchUpdate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance( + BatchUpdateCustomTargetingKeysResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysMethodDescriptor = + ApiMethodDescriptor + . + newBuilder() + .setFullMethodName( + "google.ads.admanager.v1.CustomTargetingKeyService/BatchActivateCustomTargetingKeys") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/customTargetingKeys:batchActivate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer + serializer = ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer + serializer = ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance( + BatchActivateCustomTargetingKeysResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysMethodDescriptor = + ApiMethodDescriptor + . + newBuilder() + .setFullMethodName( + "google.ads.admanager.v1.CustomTargetingKeyService/BatchDeactivateCustomTargetingKeys") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter + .newBuilder() + .setPath( + "/v1/{parent=networks/*}/customTargetingKeys:batchDeactivate", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer + serializer = ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer + serializer = ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearParent().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser + .newBuilder() + .setDefaultInstance( + BatchDeactivateCustomTargetingKeysResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + private final UnaryCallable getCustomTargetingKeyCallable; private final UnaryCallable listCustomTargetingKeysCallable; private final UnaryCallable listCustomTargetingKeysPagedCallable; + private final UnaryCallable + createCustomTargetingKeyCallable; + private final UnaryCallable< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysCallable; + private final UnaryCallable + updateCustomTargetingKeyCallable; + private final UnaryCallable< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysCallable; + private final UnaryCallable< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysCallable; + private final UnaryCallable< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysCallable; private final BackgroundResource backgroundResources; private final HttpJsonStubCallableFactory callableFactory; @@ -205,6 +484,93 @@ protected HttpJsonCustomTargetingKeyServiceStub( return builder.build(); }) .build(); + HttpJsonCallSettings + createCustomTargetingKeyTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(createCustomTargetingKeyMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysTransportSettings = + HttpJsonCallSettings + . + newBuilder() + .setMethodDescriptor(batchCreateCustomTargetingKeysMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + updateCustomTargetingKeyTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(updateCustomTargetingKeyMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add( + "custom_targeting_key.name", + String.valueOf(request.getCustomTargetingKey().getName())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysTransportSettings = + HttpJsonCallSettings + . + newBuilder() + .setMethodDescriptor(batchUpdateCustomTargetingKeysMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysTransportSettings = + HttpJsonCallSettings + . + newBuilder() + .setMethodDescriptor(batchActivateCustomTargetingKeysMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysTransportSettings = + HttpJsonCallSettings + . + newBuilder() + .setMethodDescriptor(batchDeactivateCustomTargetingKeysMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); this.getCustomTargetingKeyCallable = callableFactory.createUnaryCallable( @@ -221,6 +587,36 @@ protected HttpJsonCustomTargetingKeyServiceStub( listCustomTargetingKeysTransportSettings, settings.listCustomTargetingKeysSettings(), clientContext); + this.createCustomTargetingKeyCallable = + callableFactory.createUnaryCallable( + createCustomTargetingKeyTransportSettings, + settings.createCustomTargetingKeySettings(), + clientContext); + this.batchCreateCustomTargetingKeysCallable = + callableFactory.createUnaryCallable( + batchCreateCustomTargetingKeysTransportSettings, + settings.batchCreateCustomTargetingKeysSettings(), + clientContext); + this.updateCustomTargetingKeyCallable = + callableFactory.createUnaryCallable( + updateCustomTargetingKeyTransportSettings, + settings.updateCustomTargetingKeySettings(), + clientContext); + this.batchUpdateCustomTargetingKeysCallable = + callableFactory.createUnaryCallable( + batchUpdateCustomTargetingKeysTransportSettings, + settings.batchUpdateCustomTargetingKeysSettings(), + clientContext); + this.batchActivateCustomTargetingKeysCallable = + callableFactory.createUnaryCallable( + batchActivateCustomTargetingKeysTransportSettings, + settings.batchActivateCustomTargetingKeysSettings(), + clientContext); + this.batchDeactivateCustomTargetingKeysCallable = + callableFactory.createUnaryCallable( + batchDeactivateCustomTargetingKeysTransportSettings, + settings.batchDeactivateCustomTargetingKeysSettings(), + clientContext); this.backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources()); @@ -231,6 +627,12 @@ public static List getMethodDescriptors() { List methodDescriptors = new ArrayList<>(); methodDescriptors.add(getCustomTargetingKeyMethodDescriptor); methodDescriptors.add(listCustomTargetingKeysMethodDescriptor); + methodDescriptors.add(createCustomTargetingKeyMethodDescriptor); + methodDescriptors.add(batchCreateCustomTargetingKeysMethodDescriptor); + methodDescriptors.add(updateCustomTargetingKeyMethodDescriptor); + methodDescriptors.add(batchUpdateCustomTargetingKeysMethodDescriptor); + methodDescriptors.add(batchActivateCustomTargetingKeysMethodDescriptor); + methodDescriptors.add(batchDeactivateCustomTargetingKeysMethodDescriptor); return methodDescriptors; } @@ -252,6 +654,46 @@ public static List getMethodDescriptors() { return listCustomTargetingKeysPagedCallable; } + @Override + public UnaryCallable + createCustomTargetingKeyCallable() { + return createCustomTargetingKeyCallable; + } + + @Override + public UnaryCallable< + BatchCreateCustomTargetingKeysRequest, BatchCreateCustomTargetingKeysResponse> + batchCreateCustomTargetingKeysCallable() { + return batchCreateCustomTargetingKeysCallable; + } + + @Override + public UnaryCallable + updateCustomTargetingKeyCallable() { + return updateCustomTargetingKeyCallable; + } + + @Override + public UnaryCallable< + BatchUpdateCustomTargetingKeysRequest, BatchUpdateCustomTargetingKeysResponse> + batchUpdateCustomTargetingKeysCallable() { + return batchUpdateCustomTargetingKeysCallable; + } + + @Override + public UnaryCallable< + BatchActivateCustomTargetingKeysRequest, BatchActivateCustomTargetingKeysResponse> + batchActivateCustomTargetingKeysCallable() { + return batchActivateCustomTargetingKeysCallable; + } + + @Override + public UnaryCallable< + BatchDeactivateCustomTargetingKeysRequest, BatchDeactivateCustomTargetingKeysResponse> + batchDeactivateCustomTargetingKeysCallable() { + return batchDeactivateCustomTargetingKeysCallable; + } + @Override public final void close() { try { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceCallableFactory.java index 438272542607..41a3b3d7bde8 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceStub.java index 4623080bbed9..309e70fd9923 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonCustomTargetingValueServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceCallableFactory.java index d8452a01d856..a33a62914268 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceStub.java index d8c3214b71f3..253a25edf37b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCapabilityServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceCallableFactory.java index 68e26c3704a9..ed1be4794b78 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceStub.java index cb51776cc691..8efb7c09d225 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceCategoryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceCallableFactory.java index d4df6abbbe68..54cf8605e063 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceStub.java index 2dff7ec2567a..b006ac919371 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonDeviceManufacturerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceCallableFactory.java index 0fd3e31a6abe..1f32d2d45961 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceStub.java index 27b350b3c1a2..dd097d6cd962 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonEntitySignalsMappingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceCallableFactory.java index 8383c291e157..f62a0306a2d7 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceStub.java index b7db7cb498d7..b37568cf55e2 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonGeoTargetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonLineItemServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonLineItemServiceCallableFactory.java new file mode 100644 index 000000000000..362528c0f6cd --- /dev/null +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonLineItemServiceCallableFactory.java @@ -0,0 +1,101 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.stub; + +import com.google.api.gax.httpjson.HttpJsonCallSettings; +import com.google.api.gax.httpjson.HttpJsonCallableFactory; +import com.google.api.gax.httpjson.HttpJsonOperationSnapshotCallable; +import com.google.api.gax.httpjson.HttpJsonStubCallableFactory; +import com.google.api.gax.httpjson.longrunning.stub.OperationsStub; +import com.google.api.gax.rpc.BatchingCallSettings; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.OperationCallSettings; +import com.google.api.gax.rpc.OperationCallable; +import com.google.api.gax.rpc.PagedCallSettings; +import com.google.api.gax.rpc.ServerStreamingCallSettings; +import com.google.api.gax.rpc.ServerStreamingCallable; +import com.google.api.gax.rpc.UnaryCallSettings; +import com.google.api.gax.rpc.UnaryCallable; +import com.google.longrunning.Operation; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * REST callable factory implementation for the LineItemService service API. + * + *

This class is for advanced usage. + */ +@Generated("by gapic-generator-java") +public class HttpJsonLineItemServiceCallableFactory + implements HttpJsonStubCallableFactory { + + @Override + public UnaryCallable createUnaryCallable( + HttpJsonCallSettings httpJsonCallSettings, + UnaryCallSettings callSettings, + ClientContext clientContext) { + return HttpJsonCallableFactory.createUnaryCallable( + httpJsonCallSettings, callSettings, clientContext); + } + + @Override + public + UnaryCallable createPagedCallable( + HttpJsonCallSettings httpJsonCallSettings, + PagedCallSettings callSettings, + ClientContext clientContext) { + return HttpJsonCallableFactory.createPagedCallable( + httpJsonCallSettings, callSettings, clientContext); + } + + @Override + public UnaryCallable createBatchingCallable( + HttpJsonCallSettings httpJsonCallSettings, + BatchingCallSettings callSettings, + ClientContext clientContext) { + return HttpJsonCallableFactory.createBatchingCallable( + httpJsonCallSettings, callSettings, clientContext); + } + + @Override + public + OperationCallable createOperationCallable( + HttpJsonCallSettings httpJsonCallSettings, + OperationCallSettings callSettings, + ClientContext clientContext, + OperationsStub operationsStub) { + UnaryCallable innerCallable = + HttpJsonCallableFactory.createBaseUnaryCallable( + httpJsonCallSettings, callSettings.getInitialCallSettings(), clientContext); + HttpJsonOperationSnapshotCallable initialCallable = + new HttpJsonOperationSnapshotCallable( + innerCallable, + httpJsonCallSettings.getMethodDescriptor().getOperationSnapshotFactory()); + return HttpJsonCallableFactory.createOperationCallable( + callSettings, clientContext, operationsStub.longRunningClient(), initialCallable); + } + + @Override + public + ServerStreamingCallable createServerStreamingCallable( + HttpJsonCallSettings httpJsonCallSettings, + ServerStreamingCallSettings callSettings, + ClientContext clientContext) { + return HttpJsonCallableFactory.createServerStreamingCallable( + httpJsonCallSettings, callSettings, clientContext); + } +} diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonLineItemServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonLineItemServiceStub.java new file mode 100644 index 000000000000..eca5ebe1d9ff --- /dev/null +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonLineItemServiceStub.java @@ -0,0 +1,273 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.stub; + +import static com.google.ads.admanager.v1.LineItemServiceClient.ListLineItemsPagedResponse; + +import com.google.ads.admanager.v1.GetLineItemRequest; +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.ListLineItemsRequest; +import com.google.ads.admanager.v1.ListLineItemsResponse; +import com.google.api.core.InternalApi; +import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.core.BackgroundResourceAggregation; +import com.google.api.gax.httpjson.ApiMethodDescriptor; +import com.google.api.gax.httpjson.HttpJsonCallSettings; +import com.google.api.gax.httpjson.HttpJsonStubCallableFactory; +import com.google.api.gax.httpjson.ProtoMessageRequestFormatter; +import com.google.api.gax.httpjson.ProtoMessageResponseParser; +import com.google.api.gax.httpjson.ProtoRestSerializer; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.RequestParamsBuilder; +import com.google.api.gax.rpc.UnaryCallable; +import com.google.protobuf.TypeRegistry; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * REST stub implementation for the LineItemService service API. + * + *

This class is for advanced usage and reflects the underlying API directly. + */ +@Generated("by gapic-generator-java") +public class HttpJsonLineItemServiceStub extends LineItemServiceStub { + private static final TypeRegistry typeRegistry = TypeRegistry.newBuilder().build(); + + private static final ApiMethodDescriptor + getLineItemMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.LineItemService/GetLineItem") + .setHttpMethod("GET") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{name=networks/*/lineItems/*}", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "name", request.getName()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor(request -> null) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(LineItem.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private static final ApiMethodDescriptor + listLineItemsMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName("google.ads.admanager.v1.LineItemService/ListLineItems") + .setHttpMethod("GET") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{parent=networks/*}/lineItems", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "parent", request.getParent()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "filter", request.getFilter()); + serializer.putQueryParam(fields, "orderBy", request.getOrderBy()); + serializer.putQueryParam(fields, "pageSize", request.getPageSize()); + serializer.putQueryParam(fields, "pageToken", request.getPageToken()); + serializer.putQueryParam(fields, "skip", request.getSkip()); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor(request -> null) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(ListLineItemsResponse.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .build(); + + private final UnaryCallable getLineItemCallable; + private final UnaryCallable listLineItemsCallable; + private final UnaryCallable + listLineItemsPagedCallable; + + private final BackgroundResource backgroundResources; + private final HttpJsonStubCallableFactory callableFactory; + + public static final HttpJsonLineItemServiceStub create(LineItemServiceStubSettings settings) + throws IOException { + return new HttpJsonLineItemServiceStub(settings, ClientContext.create(settings)); + } + + public static final HttpJsonLineItemServiceStub create(ClientContext clientContext) + throws IOException { + return new HttpJsonLineItemServiceStub( + LineItemServiceStubSettings.newBuilder().build(), clientContext); + } + + public static final HttpJsonLineItemServiceStub create( + ClientContext clientContext, HttpJsonStubCallableFactory callableFactory) throws IOException { + return new HttpJsonLineItemServiceStub( + LineItemServiceStubSettings.newBuilder().build(), clientContext, callableFactory); + } + + /** + * Constructs an instance of HttpJsonLineItemServiceStub, using the given settings. This is + * protected so that it is easy to make a subclass, but otherwise, the static factory methods + * should be preferred. + */ + protected HttpJsonLineItemServiceStub( + LineItemServiceStubSettings settings, ClientContext clientContext) throws IOException { + this(settings, clientContext, new HttpJsonLineItemServiceCallableFactory()); + } + + /** + * Constructs an instance of HttpJsonLineItemServiceStub, using the given settings. This is + * protected so that it is easy to make a subclass, but otherwise, the static factory methods + * should be preferred. + */ + protected HttpJsonLineItemServiceStub( + LineItemServiceStubSettings settings, + ClientContext clientContext, + HttpJsonStubCallableFactory callableFactory) + throws IOException { + this.callableFactory = callableFactory; + + HttpJsonCallSettings getLineItemTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(getLineItemMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("name", String.valueOf(request.getName())); + return builder.build(); + }) + .build(); + HttpJsonCallSettings + listLineItemsTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(listLineItemsMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("parent", String.valueOf(request.getParent())); + return builder.build(); + }) + .build(); + + this.getLineItemCallable = + callableFactory.createUnaryCallable( + getLineItemTransportSettings, settings.getLineItemSettings(), clientContext); + this.listLineItemsCallable = + callableFactory.createUnaryCallable( + listLineItemsTransportSettings, settings.listLineItemsSettings(), clientContext); + this.listLineItemsPagedCallable = + callableFactory.createPagedCallable( + listLineItemsTransportSettings, settings.listLineItemsSettings(), clientContext); + + this.backgroundResources = + new BackgroundResourceAggregation(clientContext.getBackgroundResources()); + } + + @InternalApi + public static List getMethodDescriptors() { + List methodDescriptors = new ArrayList<>(); + methodDescriptors.add(getLineItemMethodDescriptor); + methodDescriptors.add(listLineItemsMethodDescriptor); + return methodDescriptors; + } + + @Override + public UnaryCallable getLineItemCallable() { + return getLineItemCallable; + } + + @Override + public UnaryCallable listLineItemsCallable() { + return listLineItemsCallable; + } + + @Override + public UnaryCallable + listLineItemsPagedCallable() { + return listLineItemsPagedCallable; + } + + @Override + public final void close() { + try { + backgroundResources.close(); + } catch (RuntimeException e) { + throw e; + } catch (Exception e) { + throw new IllegalStateException("Failed to close resource", e); + } + } + + @Override + public void shutdown() { + backgroundResources.shutdown(); + } + + @Override + public boolean isShutdown() { + return backgroundResources.isShutdown(); + } + + @Override + public boolean isTerminated() { + return backgroundResources.isTerminated(); + } + + @Override + public void shutdownNow() { + backgroundResources.shutdownNow(); + } + + @Override + public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { + return backgroundResources.awaitTermination(duration, unit); + } +} diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceCallableFactory.java index 6783d65c2731..7f40962afe40 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceStub.java index c3c9acde1eca..fccc3d90f0a3 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileCarrierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceCallableFactory.java index 48435eb6e0d0..78c7db3a79eb 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceStub.java index eba4513ac4e6..4957490cee7a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceCallableFactory.java index 5c8661b632df..bd74a7528773 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceStub.java index b06a8588fb01..de8601a2e716 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonMobileDeviceSubmodelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceCallableFactory.java index 62a5ac7d0710..7d26a72d4031 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceStub.java index 0771ad60d289..3031a08b6e06 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonNetworkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,6 +16,8 @@ package com.google.ads.admanager.v1.stub; +import static com.google.ads.admanager.v1.NetworkServiceClient.ListNetworksPagedResponse; + import com.google.ads.admanager.v1.GetNetworkRequest; import com.google.ads.admanager.v1.ListNetworksRequest; import com.google.ads.admanager.v1.ListNetworksResponse; @@ -105,6 +107,9 @@ public class HttpJsonNetworkServiceStub extends NetworkServiceStub { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "pageSize", request.getPageSize()); + serializer.putQueryParam(fields, "pageToken", request.getPageToken()); + serializer.putQueryParam(fields, "skip", request.getSkip()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) @@ -119,6 +124,8 @@ public class HttpJsonNetworkServiceStub extends NetworkServiceStub { private final UnaryCallable getNetworkCallable; private final UnaryCallable listNetworksCallable; + private final UnaryCallable + listNetworksPagedCallable; private final BackgroundResource backgroundResources; private final HttpJsonStubCallableFactory callableFactory; @@ -185,6 +192,9 @@ protected HttpJsonNetworkServiceStub( this.listNetworksCallable = callableFactory.createUnaryCallable( listNetworksTransportSettings, settings.listNetworksSettings(), clientContext); + this.listNetworksPagedCallable = + callableFactory.createPagedCallable( + listNetworksTransportSettings, settings.listNetworksSettings(), clientContext); this.backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources()); @@ -208,6 +218,11 @@ public UnaryCallable listNetworksCall return listNetworksCallable; } + @Override + public UnaryCallable listNetworksPagedCallable() { + return listNetworksPagedCallable; + } + @Override public final void close() { try { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceCallableFactory.java index 0ab178ecfbe4..9c2cbf42555d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceStub.java index fc73576b8873..530eef328673 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceCallableFactory.java index f28df2182b6e..eece964c6a50 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceStub.java index 77dadbd65b39..6ac9b04dbd6f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOperatingSystemVersionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceCallableFactory.java index c74e3e4b6162..09b19eb77c7b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceStub.java index a45889c89208..dac608a396f5 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonOrderServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceCallableFactory.java index 7235fc8c5ff7..0eefcd459430 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceStub.java index ef9ee8ecbae5..c02cbca41a95 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPlacementServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceCallableFactory.java index c451de970457..b963942ed6f9 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceStub.java index 8e57227bc137..51b803b70a2e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionDealServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceCallableFactory.java index 9d8086367475..9d77fc21c6ae 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceStub.java index 5366dccdf549..d9084fd7acd5 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonPrivateAuctionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceCallableFactory.java index 6362f6f6fb42..d68154c04575 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceStub.java index 62623f5d62eb..c80d56199496 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonProgrammaticBuyerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceCallableFactory.java index 206974b83e08..273ada07d795 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceStub.java index 4f62cb27df56..ae9ef29f9eda 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonReportServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceCallableFactory.java index e6afe38524de..6fac35ad2155 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceStub.java index 5aa0cfd6197a..2d3c232bc5f0 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonRoleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceCallableFactory.java index 7635d6d9fb22..eaf291c6dbea 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceStub.java index 6da1cd8d133f..8ead7d0b8876 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonSiteServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceCallableFactory.java index 7815fe3c5f1c..4648372a1307 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceStub.java index e6c76d21d63a..837996aa3049 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTaxonomyCategoryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceCallableFactory.java index 511f83fb757b..6a6935469e77 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceStub.java index 49ee887a54a9..fbb6ca50c5d7 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonTeamServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceCallableFactory.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceCallableFactory.java index eeaff56d4df4..71bec5d522d9 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceCallableFactory.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceStub.java index aa811b39ebbf..18623525ed32 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/HttpJsonUserServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/LineItemServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/LineItemServiceStub.java new file mode 100644 index 000000000000..291d6e70246d --- /dev/null +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/LineItemServiceStub.java @@ -0,0 +1,53 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.stub; + +import static com.google.ads.admanager.v1.LineItemServiceClient.ListLineItemsPagedResponse; + +import com.google.ads.admanager.v1.GetLineItemRequest; +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.ListLineItemsRequest; +import com.google.ads.admanager.v1.ListLineItemsResponse; +import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.rpc.UnaryCallable; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Base stub class for the LineItemService service API. + * + *

This class is for advanced usage and reflects the underlying API directly. + */ +@Generated("by gapic-generator-java") +public abstract class LineItemServiceStub implements BackgroundResource { + + public UnaryCallable getLineItemCallable() { + throw new UnsupportedOperationException("Not implemented: getLineItemCallable()"); + } + + public UnaryCallable + listLineItemsPagedCallable() { + throw new UnsupportedOperationException("Not implemented: listLineItemsPagedCallable()"); + } + + public UnaryCallable listLineItemsCallable() { + throw new UnsupportedOperationException("Not implemented: listLineItemsCallable()"); + } + + @Override + public abstract void close(); +} diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/LineItemServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/LineItemServiceStubSettings.java new file mode 100644 index 000000000000..f9be394d282f --- /dev/null +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/LineItemServiceStubSettings.java @@ -0,0 +1,376 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.stub; + +import static com.google.ads.admanager.v1.LineItemServiceClient.ListLineItemsPagedResponse; + +import com.google.ads.admanager.v1.GetLineItemRequest; +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.ListLineItemsRequest; +import com.google.ads.admanager.v1.ListLineItemsResponse; +import com.google.api.core.ApiFunction; +import com.google.api.core.ApiFuture; +import com.google.api.core.ObsoleteApi; +import com.google.api.gax.core.GaxProperties; +import com.google.api.gax.core.GoogleCredentialsProvider; +import com.google.api.gax.core.InstantiatingExecutorProvider; +import com.google.api.gax.httpjson.GaxHttpJsonProperties; +import com.google.api.gax.httpjson.HttpJsonTransportChannel; +import com.google.api.gax.httpjson.InstantiatingHttpJsonChannelProvider; +import com.google.api.gax.retrying.RetrySettings; +import com.google.api.gax.rpc.ApiCallContext; +import com.google.api.gax.rpc.ApiClientHeaderProvider; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.PageContext; +import com.google.api.gax.rpc.PagedCallSettings; +import com.google.api.gax.rpc.PagedListDescriptor; +import com.google.api.gax.rpc.PagedListResponseFactory; +import com.google.api.gax.rpc.StatusCode; +import com.google.api.gax.rpc.StubSettings; +import com.google.api.gax.rpc.TransportChannelProvider; +import com.google.api.gax.rpc.UnaryCallSettings; +import com.google.api.gax.rpc.UnaryCallable; +import com.google.common.collect.ImmutableList; +import com.google.common.collect.ImmutableMap; +import com.google.common.collect.ImmutableSet; +import com.google.common.collect.Lists; +import java.io.IOException; +import java.util.List; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Settings class to configure an instance of {@link LineItemServiceStub}. + * + *

The default instance has everything set to sensible defaults: + * + *

    + *
  • The default service address (admanager.googleapis.com) and default port (443) are used. + *
  • Credentials are acquired automatically through Application Default Credentials. + *
  • Retries are configured for idempotent methods but not for non-idempotent methods. + *
+ * + *

The builder of this class is recursive, so contained classes are themselves builders. When + * build() is called, the tree of builders is called to create the complete settings object. + * + *

For example, to set the + * [RetrySettings](https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.retrying.RetrySettings) + * of getLineItem: + * + *

{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * LineItemServiceStubSettings.Builder lineItemServiceSettingsBuilder =
+ *     LineItemServiceStubSettings.newBuilder();
+ * lineItemServiceSettingsBuilder
+ *     .getLineItemSettings()
+ *     .setRetrySettings(
+ *         lineItemServiceSettingsBuilder
+ *             .getLineItemSettings()
+ *             .getRetrySettings()
+ *             .toBuilder()
+ *             .setInitialRetryDelayDuration(Duration.ofSeconds(1))
+ *             .setInitialRpcTimeoutDuration(Duration.ofSeconds(5))
+ *             .setMaxAttempts(5)
+ *             .setMaxRetryDelayDuration(Duration.ofSeconds(30))
+ *             .setMaxRpcTimeoutDuration(Duration.ofSeconds(60))
+ *             .setRetryDelayMultiplier(1.3)
+ *             .setRpcTimeoutMultiplier(1.5)
+ *             .setTotalTimeoutDuration(Duration.ofSeconds(300))
+ *             .build());
+ * LineItemServiceStubSettings lineItemServiceSettings = lineItemServiceSettingsBuilder.build();
+ * }
+ * + * Please refer to the [Client Side Retry + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. + */ +@Generated("by gapic-generator-java") +public class LineItemServiceStubSettings extends StubSettings { + /** The default scopes of the service. */ + private static final ImmutableList DEFAULT_SERVICE_SCOPES = + ImmutableList.builder().add("https://www.googleapis.com/auth/admanager").build(); + + private final UnaryCallSettings getLineItemSettings; + private final PagedCallSettings< + ListLineItemsRequest, ListLineItemsResponse, ListLineItemsPagedResponse> + listLineItemsSettings; + + private static final PagedListDescriptor + LIST_LINE_ITEMS_PAGE_STR_DESC = + new PagedListDescriptor() { + @Override + public String emptyToken() { + return ""; + } + + @Override + public ListLineItemsRequest injectToken(ListLineItemsRequest payload, String token) { + return ListLineItemsRequest.newBuilder(payload).setPageToken(token).build(); + } + + @Override + public ListLineItemsRequest injectPageSize(ListLineItemsRequest payload, int pageSize) { + return ListLineItemsRequest.newBuilder(payload).setPageSize(pageSize).build(); + } + + @Override + public Integer extractPageSize(ListLineItemsRequest payload) { + return payload.getPageSize(); + } + + @Override + public String extractNextToken(ListLineItemsResponse payload) { + return payload.getNextPageToken(); + } + + @Override + public Iterable extractResources(ListLineItemsResponse payload) { + return payload.getLineItemsList(); + } + }; + + private static final PagedListResponseFactory< + ListLineItemsRequest, ListLineItemsResponse, ListLineItemsPagedResponse> + LIST_LINE_ITEMS_PAGE_STR_FACT = + new PagedListResponseFactory< + ListLineItemsRequest, ListLineItemsResponse, ListLineItemsPagedResponse>() { + @Override + public ApiFuture getFuturePagedResponse( + UnaryCallable callable, + ListLineItemsRequest request, + ApiCallContext context, + ApiFuture futureResponse) { + PageContext pageContext = + PageContext.create(callable, LIST_LINE_ITEMS_PAGE_STR_DESC, request, context); + return ListLineItemsPagedResponse.createAsync(pageContext, futureResponse); + } + }; + + /** Returns the object with the settings used for calls to getLineItem. */ + public UnaryCallSettings getLineItemSettings() { + return getLineItemSettings; + } + + /** Returns the object with the settings used for calls to listLineItems. */ + public PagedCallSettings + listLineItemsSettings() { + return listLineItemsSettings; + } + + public LineItemServiceStub createStub() throws IOException { + if (getTransportChannelProvider() + .getTransportName() + .equals(HttpJsonTransportChannel.getHttpJsonTransportName())) { + return HttpJsonLineItemServiceStub.create(this); + } + throw new UnsupportedOperationException( + String.format( + "Transport not supported: %s", getTransportChannelProvider().getTransportName())); + } + + /** Returns the default service name. */ + @Override + public String getServiceName() { + return "admanager"; + } + + /** Returns a builder for the default ExecutorProvider for this service. */ + public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { + return InstantiatingExecutorProvider.newBuilder(); + } + + /** Returns the default service endpoint. */ + @ObsoleteApi("Use getEndpoint() instead") + public static String getDefaultEndpoint() { + return "admanager.googleapis.com:443"; + } + + /** Returns the default mTLS service endpoint. */ + public static String getDefaultMtlsEndpoint() { + return "admanager.mtls.googleapis.com:443"; + } + + /** Returns the default service scopes. */ + public static List getDefaultServiceScopes() { + return DEFAULT_SERVICE_SCOPES; + } + + /** Returns a builder for the default credentials for this service. */ + public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { + return GoogleCredentialsProvider.newBuilder() + .setScopesToApply(DEFAULT_SERVICE_SCOPES) + .setUseJwtAccessWithScope(true); + } + + /** Returns a builder for the default ChannelProvider for this service. */ + public static InstantiatingHttpJsonChannelProvider.Builder + defaultHttpJsonTransportProviderBuilder() { + return InstantiatingHttpJsonChannelProvider.newBuilder(); + } + + public static TransportChannelProvider defaultTransportChannelProvider() { + return defaultHttpJsonTransportProviderBuilder().build(); + } + + public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { + return ApiClientHeaderProvider.newBuilder() + .setGeneratedLibToken( + "gapic", GaxProperties.getLibraryVersion(LineItemServiceStubSettings.class)) + .setTransportToken( + GaxHttpJsonProperties.getHttpJsonTokenName(), + GaxHttpJsonProperties.getHttpJsonVersion()); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder() { + return Builder.createDefault(); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder(ClientContext clientContext) { + return new Builder(clientContext); + } + + /** Returns a builder containing all the values of this settings class. */ + public Builder toBuilder() { + return new Builder(this); + } + + protected LineItemServiceStubSettings(Builder settingsBuilder) throws IOException { + super(settingsBuilder); + + getLineItemSettings = settingsBuilder.getLineItemSettings().build(); + listLineItemsSettings = settingsBuilder.listLineItemsSettings().build(); + } + + /** Builder for LineItemServiceStubSettings. */ + public static class Builder extends StubSettings.Builder { + private final ImmutableList> unaryMethodSettingsBuilders; + private final UnaryCallSettings.Builder getLineItemSettings; + private final PagedCallSettings.Builder< + ListLineItemsRequest, ListLineItemsResponse, ListLineItemsPagedResponse> + listLineItemsSettings; + private static final ImmutableMap> + RETRYABLE_CODE_DEFINITIONS; + + static { + ImmutableMap.Builder> definitions = + ImmutableMap.builder(); + definitions.put("no_retry_codes", ImmutableSet.copyOf(Lists.newArrayList())); + RETRYABLE_CODE_DEFINITIONS = definitions.build(); + } + + private static final ImmutableMap RETRY_PARAM_DEFINITIONS; + + static { + ImmutableMap.Builder definitions = ImmutableMap.builder(); + RetrySettings settings = null; + settings = RetrySettings.newBuilder().setRpcTimeoutMultiplier(1.0).build(); + definitions.put("no_retry_params", settings); + RETRY_PARAM_DEFINITIONS = definitions.build(); + } + + protected Builder() { + this(((ClientContext) null)); + } + + protected Builder(ClientContext clientContext) { + super(clientContext); + + getLineItemSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + listLineItemsSettings = PagedCallSettings.newBuilder(LIST_LINE_ITEMS_PAGE_STR_FACT); + + unaryMethodSettingsBuilders = + ImmutableList.>of( + getLineItemSettings, listLineItemsSettings); + initDefaults(this); + } + + protected Builder(LineItemServiceStubSettings settings) { + super(settings); + + getLineItemSettings = settings.getLineItemSettings.toBuilder(); + listLineItemsSettings = settings.listLineItemsSettings.toBuilder(); + + unaryMethodSettingsBuilders = + ImmutableList.>of( + getLineItemSettings, listLineItemsSettings); + } + + private static Builder createDefault() { + Builder builder = new Builder(((ClientContext) null)); + + builder.setTransportChannelProvider(defaultTransportChannelProvider()); + builder.setCredentialsProvider(defaultCredentialsProviderBuilder().build()); + builder.setInternalHeaderProvider(defaultApiClientHeaderProviderBuilder().build()); + builder.setMtlsEndpoint(getDefaultMtlsEndpoint()); + builder.setSwitchToMtlsEndpointAllowed(true); + + return initDefaults(builder); + } + + private static Builder initDefaults(Builder builder) { + builder + .getLineItemSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + builder + .listLineItemsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); + + return builder; + } + + /** + * Applies the given settings updater function to all of the unary API methods in this service. + * + *

Note: This method does not support applying settings to streaming methods. + */ + public Builder applyToAllUnaryMethods( + ApiFunction, Void> settingsUpdater) { + super.applyToAllUnaryMethods(unaryMethodSettingsBuilders, settingsUpdater); + return this; + } + + public ImmutableList> unaryMethodSettingsBuilders() { + return unaryMethodSettingsBuilders; + } + + /** Returns the builder for the settings used for calls to getLineItem. */ + public UnaryCallSettings.Builder getLineItemSettings() { + return getLineItemSettings; + } + + /** Returns the builder for the settings used for calls to listLineItems. */ + public PagedCallSettings.Builder< + ListLineItemsRequest, ListLineItemsResponse, ListLineItemsPagedResponse> + listLineItemsSettings() { + return listLineItemsSettings; + } + + @Override + public LineItemServiceStubSettings build() throws IOException { + return new LineItemServiceStubSettings(this); + } + } +} diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStub.java index 5a8ec27bc567..4e8b37ef6650 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStubSettings.java index 1e3113cc0843..8721b9eda93c 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileCarrierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MobileCarrierServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStub.java index fd6a9228df1f..d9eb78108d21 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStubSettings.java index 48f833ccde32..4958259e0d0a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MobileDeviceServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStub.java index 3967c0f36fe2..abeb1ed0647a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStubSettings.java index 8fd8e158016c..f93ffdc0eb71 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/MobileDeviceSubmodelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MobileDeviceSubmodelServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStub.java index 9b7a1a4cec3a..3babac3f805f 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,6 +16,8 @@ package com.google.ads.admanager.v1.stub; +import static com.google.ads.admanager.v1.NetworkServiceClient.ListNetworksPagedResponse; + import com.google.ads.admanager.v1.GetNetworkRequest; import com.google.ads.admanager.v1.ListNetworksRequest; import com.google.ads.admanager.v1.ListNetworksResponse; @@ -37,6 +39,10 @@ public UnaryCallable getNetworkCallable() { throw new UnsupportedOperationException("Not implemented: getNetworkCallable()"); } + public UnaryCallable listNetworksPagedCallable() { + throw new UnsupportedOperationException("Not implemented: listNetworksPagedCallable()"); + } + public UnaryCallable listNetworksCallable() { throw new UnsupportedOperationException("Not implemented: listNetworksCallable()"); } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStubSettings.java index 149e55c6fee3..6bc36e2ac088 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/NetworkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,11 +16,14 @@ package com.google.ads.admanager.v1.stub; +import static com.google.ads.admanager.v1.NetworkServiceClient.ListNetworksPagedResponse; + import com.google.ads.admanager.v1.GetNetworkRequest; import com.google.ads.admanager.v1.ListNetworksRequest; import com.google.ads.admanager.v1.ListNetworksResponse; import com.google.ads.admanager.v1.Network; import com.google.api.core.ApiFunction; +import com.google.api.core.ApiFuture; import com.google.api.core.ObsoleteApi; import com.google.api.gax.core.GaxProperties; import com.google.api.gax.core.GoogleCredentialsProvider; @@ -29,12 +32,18 @@ import com.google.api.gax.httpjson.HttpJsonTransportChannel; import com.google.api.gax.httpjson.InstantiatingHttpJsonChannelProvider; import com.google.api.gax.retrying.RetrySettings; +import com.google.api.gax.rpc.ApiCallContext; import com.google.api.gax.rpc.ApiClientHeaderProvider; import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.PageContext; +import com.google.api.gax.rpc.PagedCallSettings; +import com.google.api.gax.rpc.PagedListDescriptor; +import com.google.api.gax.rpc.PagedListResponseFactory; import com.google.api.gax.rpc.StatusCode; import com.google.api.gax.rpc.StubSettings; import com.google.api.gax.rpc.TransportChannelProvider; import com.google.api.gax.rpc.UnaryCallSettings; +import com.google.api.gax.rpc.UnaryCallable; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; @@ -90,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class NetworkServiceStubSettings extends StubSettings { @@ -100,7 +109,60 @@ public class NetworkServiceStubSettings extends StubSettingsbuilder().add("https://www.googleapis.com/auth/admanager").build(); private final UnaryCallSettings getNetworkSettings; - private final UnaryCallSettings listNetworksSettings; + private final PagedCallSettings< + ListNetworksRequest, ListNetworksResponse, ListNetworksPagedResponse> + listNetworksSettings; + + private static final PagedListDescriptor + LIST_NETWORKS_PAGE_STR_DESC = + new PagedListDescriptor() { + @Override + public String emptyToken() { + return ""; + } + + @Override + public ListNetworksRequest injectToken(ListNetworksRequest payload, String token) { + return ListNetworksRequest.newBuilder(payload).setPageToken(token).build(); + } + + @Override + public ListNetworksRequest injectPageSize(ListNetworksRequest payload, int pageSize) { + return ListNetworksRequest.newBuilder(payload).setPageSize(pageSize).build(); + } + + @Override + public Integer extractPageSize(ListNetworksRequest payload) { + return payload.getPageSize(); + } + + @Override + public String extractNextToken(ListNetworksResponse payload) { + return payload.getNextPageToken(); + } + + @Override + public Iterable extractResources(ListNetworksResponse payload) { + return payload.getNetworksList(); + } + }; + + private static final PagedListResponseFactory< + ListNetworksRequest, ListNetworksResponse, ListNetworksPagedResponse> + LIST_NETWORKS_PAGE_STR_FACT = + new PagedListResponseFactory< + ListNetworksRequest, ListNetworksResponse, ListNetworksPagedResponse>() { + @Override + public ApiFuture getFuturePagedResponse( + UnaryCallable callable, + ListNetworksRequest request, + ApiCallContext context, + ApiFuture futureResponse) { + PageContext pageContext = + PageContext.create(callable, LIST_NETWORKS_PAGE_STR_DESC, request, context); + return ListNetworksPagedResponse.createAsync(pageContext, futureResponse); + } + }; /** Returns the object with the settings used for calls to getNetwork. */ public UnaryCallSettings getNetworkSettings() { @@ -108,7 +170,8 @@ public UnaryCallSettings getNetworkSettings() { } /** Returns the object with the settings used for calls to listNetworks. */ - public UnaryCallSettings listNetworksSettings() { + public PagedCallSettings + listNetworksSettings() { return listNetworksSettings; } @@ -202,7 +265,8 @@ protected NetworkServiceStubSettings(Builder settingsBuilder) throws IOException public static class Builder extends StubSettings.Builder { private final ImmutableList> unaryMethodSettingsBuilders; private final UnaryCallSettings.Builder getNetworkSettings; - private final UnaryCallSettings.Builder + private final PagedCallSettings.Builder< + ListNetworksRequest, ListNetworksResponse, ListNetworksPagedResponse> listNetworksSettings; private static final ImmutableMap> RETRYABLE_CODE_DEFINITIONS; @@ -232,7 +296,7 @@ protected Builder(ClientContext clientContext) { super(clientContext); getNetworkSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); - listNetworksSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + listNetworksSettings = PagedCallSettings.newBuilder(LIST_NETWORKS_PAGE_STR_FACT); unaryMethodSettingsBuilders = ImmutableList.>of( @@ -298,7 +362,8 @@ public UnaryCallSettings.Builder getNetworkSettings( } /** Returns the builder for the settings used for calls to listNetworks. */ - public UnaryCallSettings.Builder + public PagedCallSettings.Builder< + ListNetworksRequest, ListNetworksResponse, ListNetworksPagedResponse> listNetworksSettings() { return listNetworksSettings; } diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStub.java index 21ed2440d22e..dc2d700cd68d 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStubSettings.java index ce88ce23898f..5f0924710aca 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class OperatingSystemServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStub.java index f3ce19b74431..2d17fdd9ef94 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStubSettings.java index b759814f7c8a..767b91b7d36a 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OperatingSystemVersionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class OperatingSystemVersionServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStub.java index 3439fd1e1102..6c6b26d1b729 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStubSettings.java index 1f5beca0af28..d5626ad8cc23 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/OrderServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class OrderServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStub.java index b3f3398cc8b1..29256ec14466 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStubSettings.java index c716d5e0aec9..2c29af78c085 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PlacementServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,8 +111,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PlacementServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStub.java index 2aeba1a14e5b..cad39b560459 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStubSettings.java index 752b748e0f96..df65b0142ddb 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionDealServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PrivateAuctionDealServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStub.java index b586ddc5da01..093bb8f62d1b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStubSettings.java index e583a9d7027f..69aa19849207 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/PrivateAuctionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PrivateAuctionServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStub.java index acb3b89bcd5e..6f974f48cd72 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStubSettings.java index 7d4ee0944747..78b5f2295b43 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ProgrammaticBuyerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProgrammaticBuyerServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStub.java index 6c69150cb2fe..3219e24b317b 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStubSettings.java index 6a2dec88c9d8..d99e8986b853 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/ReportServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStub.java index 09fd094af7da..6220e188f670 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStubSettings.java index 53b1225226ac..d6679d2b2b7e 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/RoleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RoleServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStub.java index 316cd6acbab3..b479edb152e6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStubSettings.java index 68f3e475da49..964f5985ffc3 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/SiteServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SiteServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStub.java index d19a56bd6d20..04a80ecb2822 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStubSettings.java index be0ca2c37721..38ca84c290d6 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TaxonomyCategoryServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TaxonomyCategoryServiceStubSettings diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStub.java index c85abad140db..4587060063b9 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStubSettings.java index 57ce22573e26..f4f42d924de5 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/TeamServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TeamServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStub.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStub.java index feff600a9cce..5d7df01f0211 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStub.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStubSettings.java b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStubSettings.java index 307a87c404de..15dcf3aef9dc 100644 --- a/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStubSettings.java +++ b/java-admanager/ad-manager/src/main/java/com/google/ads/admanager/v1/stub/UserServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserServiceStubSettings extends StubSettings { diff --git a/java-admanager/ad-manager/src/main/resources/META-INF/native-image/com.google.ads.admanager.v1/reflect-config.json b/java-admanager/ad-manager/src/main/resources/META-INF/native-image/com.google.ads.admanager.v1/reflect-config.json index 6a6c91a2f0ce..a0407a82f12f 100644 --- a/java-admanager/ad-manager/src/main/resources/META-INF/native-image/com.google.ads.admanager.v1/reflect-config.json +++ b/java-admanager/ad-manager/src/main/resources/META-INF/native-image/com.google.ads.admanager.v1/reflect-config.json @@ -314,6 +314,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchActivateAdUnitsRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchActivateAdUnitsRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchActivateAdUnitsResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchActivateAdUnitsResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchActivateCustomFieldsRequest", "queryAllDeclaredConstructors": true, @@ -350,6 +386,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchActivatePlacementsRequest", "queryAllDeclaredConstructors": true, @@ -476,6 +548,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchArchivePlacementsRequest", "queryAllDeclaredConstructors": true, @@ -548,6 +656,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchCreateAdUnitsRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchCreateAdUnitsRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchCreateAdUnitsResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchCreateAdUnitsResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchCreateContactsRequest", "queryAllDeclaredConstructors": true, @@ -620,6 +764,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchCreateEntitySignalsMappingsRequest", "queryAllDeclaredConstructors": true, @@ -764,6 +944,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchDeactivateCustomFieldsRequest", "queryAllDeclaredConstructors": true, @@ -800,6 +1016,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchDeactivatePlacementsRequest", "queryAllDeclaredConstructors": true, @@ -944,6 +1196,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchUpdateContactsRequest", "queryAllDeclaredConstructors": true, @@ -1016,6 +1304,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.BatchUpdateEntitySignalsMappingsRequest", "queryAllDeclaredConstructors": true, @@ -1547,6 +1871,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.CreateAdUnitRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.CreateAdUnitRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.CreateContactRequest", "queryAllDeclaredConstructors": true, @@ -1583,6 +1925,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.CreateEntitySignalsMappingRequest", "queryAllDeclaredConstructors": true, @@ -3131,6 +3491,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.GetLineItemRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.GetLineItemRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.GetMobileCarrierRequest", "queryAllDeclaredConstructors": true, @@ -3437,6 +3815,51 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.Goal", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.Goal$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.GoalTypeEnum", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.GoalTypeEnum$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.GoalTypeEnum$GoalType", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.InventoryTargeting", "queryAllDeclaredConstructors": true, @@ -3491,6 +3914,51 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.LineItem", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.LineItem$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.LineItemTypeEnum", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.LineItemTypeEnum$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.LineItemTypeEnum$LineItemType", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.ListAdBreaksRequest", "queryAllDeclaredConstructors": true, @@ -4355,6 +4823,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.ListLineItemsRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.ListLineItemsRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.ListLineItemsResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.ListLineItemsResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.ListMobileCarriersRequest", "queryAllDeclaredConstructors": true, @@ -6353,6 +6857,33 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.UnitTypeEnum", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.UnitTypeEnum$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.UnitTypeEnum$UnitType", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.UpdateAdBreakRequest", "queryAllDeclaredConstructors": true, @@ -6371,6 +6902,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.UpdateAdUnitRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.UpdateAdUnitRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.UpdateContactRequest", "queryAllDeclaredConstructors": true, @@ -6407,6 +6956,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.ads.admanager.v1.UpdateEntitySignalsMappingRequest", "queryAllDeclaredConstructors": true, diff --git a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdBreakServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdBreakServiceClientTest.java index a7f9591366db..b92f1c53c8c8 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdBreakServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdBreakServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClientTest.java index af9d73cab2df..64e9d49d5aca 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdUnitServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdUnitServiceClientTest.java index d4a5657d7df9..1beeed6516b6 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdUnitServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AdUnitServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -31,6 +31,7 @@ import com.google.api.gax.rpc.testing.FakeStatusCode; import com.google.common.collect.Lists; import com.google.protobuf.Duration; +import com.google.protobuf.FieldMask; import com.google.protobuf.Timestamp; import java.io.IOException; import java.util.ArrayList; @@ -406,4 +407,686 @@ public void listAdUnitSizesExceptionTest2() throws Exception { // Expected exception. } } + + @Test + public void createAdUnitTest() throws Exception { + AdUnit expectedResponse = + AdUnit.newBuilder() + .setName(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .setAdUnitId(-167061094) + .setParentAdUnit(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .addAllParentPath(new ArrayList()) + .setDisplayName("displayName1714148973") + .setAdUnitCode("adUnitCode1827682004") + .addAllAppliedTeams(new ArrayList()) + .addAllTeams(new ArrayList()) + .setDescription("description-1724546052") + .setExplicitlyTargeted(true) + .setHasChildren(true) + .setUpdateTime(Timestamp.newBuilder().build()) + .addAllAdUnitSizes(new ArrayList()) + .setExternalSetTopBoxChannelId("externalSetTopBoxChannelId1711101009") + .setRefreshDelay(Duration.newBuilder().build()) + .addAllAppliedLabels(new ArrayList()) + .addAllEffectiveAppliedLabels(new ArrayList()) + .addAllAppliedLabelFrequencyCaps(new ArrayList()) + .addAllEffectiveLabelFrequencyCaps(new ArrayList()) + .setAppliedAdsenseEnabled(true) + .setEffectiveAdsenseEnabled(true) + .build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + AdUnit adUnit = AdUnit.newBuilder().build(); + + AdUnit actualResponse = client.createAdUnit(parent, adUnit); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void createAdUnitExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + AdUnit adUnit = AdUnit.newBuilder().build(); + client.createAdUnit(parent, adUnit); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void createAdUnitTest2() throws Exception { + AdUnit expectedResponse = + AdUnit.newBuilder() + .setName(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .setAdUnitId(-167061094) + .setParentAdUnit(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .addAllParentPath(new ArrayList()) + .setDisplayName("displayName1714148973") + .setAdUnitCode("adUnitCode1827682004") + .addAllAppliedTeams(new ArrayList()) + .addAllTeams(new ArrayList()) + .setDescription("description-1724546052") + .setExplicitlyTargeted(true) + .setHasChildren(true) + .setUpdateTime(Timestamp.newBuilder().build()) + .addAllAdUnitSizes(new ArrayList()) + .setExternalSetTopBoxChannelId("externalSetTopBoxChannelId1711101009") + .setRefreshDelay(Duration.newBuilder().build()) + .addAllAppliedLabels(new ArrayList()) + .addAllEffectiveAppliedLabels(new ArrayList()) + .addAllAppliedLabelFrequencyCaps(new ArrayList()) + .addAllEffectiveLabelFrequencyCaps(new ArrayList()) + .setAppliedAdsenseEnabled(true) + .setEffectiveAdsenseEnabled(true) + .build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + AdUnit adUnit = AdUnit.newBuilder().build(); + + AdUnit actualResponse = client.createAdUnit(parent, adUnit); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void createAdUnitExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + AdUnit adUnit = AdUnit.newBuilder().build(); + client.createAdUnit(parent, adUnit); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void updateAdUnitTest() throws Exception { + AdUnit expectedResponse = + AdUnit.newBuilder() + .setName(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .setAdUnitId(-167061094) + .setParentAdUnit(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .addAllParentPath(new ArrayList()) + .setDisplayName("displayName1714148973") + .setAdUnitCode("adUnitCode1827682004") + .addAllAppliedTeams(new ArrayList()) + .addAllTeams(new ArrayList()) + .setDescription("description-1724546052") + .setExplicitlyTargeted(true) + .setHasChildren(true) + .setUpdateTime(Timestamp.newBuilder().build()) + .addAllAdUnitSizes(new ArrayList()) + .setExternalSetTopBoxChannelId("externalSetTopBoxChannelId1711101009") + .setRefreshDelay(Duration.newBuilder().build()) + .addAllAppliedLabels(new ArrayList()) + .addAllEffectiveAppliedLabels(new ArrayList()) + .addAllAppliedLabelFrequencyCaps(new ArrayList()) + .addAllEffectiveLabelFrequencyCaps(new ArrayList()) + .setAppliedAdsenseEnabled(true) + .setEffectiveAdsenseEnabled(true) + .build(); + mockService.addResponse(expectedResponse); + + AdUnit adUnit = + AdUnit.newBuilder() + .setName(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .setAdUnitId(-167061094) + .setParentAdUnit(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .addAllParentPath(new ArrayList()) + .setDisplayName("displayName1714148973") + .setAdUnitCode("adUnitCode1827682004") + .addAllAppliedTeams(new ArrayList()) + .addAllTeams(new ArrayList()) + .setDescription("description-1724546052") + .setExplicitlyTargeted(true) + .setHasChildren(true) + .setUpdateTime(Timestamp.newBuilder().build()) + .addAllAdUnitSizes(new ArrayList()) + .setExternalSetTopBoxChannelId("externalSetTopBoxChannelId1711101009") + .setRefreshDelay(Duration.newBuilder().build()) + .addAllAppliedLabels(new ArrayList()) + .addAllEffectiveAppliedLabels(new ArrayList()) + .addAllAppliedLabelFrequencyCaps(new ArrayList()) + .addAllEffectiveLabelFrequencyCaps(new ArrayList()) + .setAppliedAdsenseEnabled(true) + .setEffectiveAdsenseEnabled(true) + .build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + + AdUnit actualResponse = client.updateAdUnit(adUnit, updateMask); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void updateAdUnitExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + AdUnit adUnit = + AdUnit.newBuilder() + .setName(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .setAdUnitId(-167061094) + .setParentAdUnit(AdUnitName.of("[NETWORK_CODE]", "[AD_UNIT]").toString()) + .addAllParentPath(new ArrayList()) + .setDisplayName("displayName1714148973") + .setAdUnitCode("adUnitCode1827682004") + .addAllAppliedTeams(new ArrayList()) + .addAllTeams(new ArrayList()) + .setDescription("description-1724546052") + .setExplicitlyTargeted(true) + .setHasChildren(true) + .setUpdateTime(Timestamp.newBuilder().build()) + .addAllAdUnitSizes(new ArrayList()) + .setExternalSetTopBoxChannelId("externalSetTopBoxChannelId1711101009") + .setRefreshDelay(Duration.newBuilder().build()) + .addAllAppliedLabels(new ArrayList()) + .addAllEffectiveAppliedLabels(new ArrayList()) + .addAllAppliedLabelFrequencyCaps(new ArrayList()) + .addAllEffectiveLabelFrequencyCaps(new ArrayList()) + .setAppliedAdsenseEnabled(true) + .setEffectiveAdsenseEnabled(true) + .build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + client.updateAdUnit(adUnit, updateMask); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchCreateAdUnitsTest() throws Exception { + BatchCreateAdUnitsResponse expectedResponse = + BatchCreateAdUnitsResponse.newBuilder().addAllAdUnits(new ArrayList()).build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + + BatchCreateAdUnitsResponse actualResponse = client.batchCreateAdUnits(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchCreateAdUnitsExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + client.batchCreateAdUnits(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchCreateAdUnitsTest2() throws Exception { + BatchCreateAdUnitsResponse expectedResponse = + BatchCreateAdUnitsResponse.newBuilder().addAllAdUnits(new ArrayList()).build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + + BatchCreateAdUnitsResponse actualResponse = client.batchCreateAdUnits(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchCreateAdUnitsExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + client.batchCreateAdUnits(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchUpdateAdUnitsTest() throws Exception { + BatchUpdateAdUnitsResponse expectedResponse = + BatchUpdateAdUnitsResponse.newBuilder().addAllAdUnits(new ArrayList()).build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + + BatchUpdateAdUnitsResponse actualResponse = client.batchUpdateAdUnits(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchUpdateAdUnitsExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + client.batchUpdateAdUnits(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchUpdateAdUnitsTest2() throws Exception { + BatchUpdateAdUnitsResponse expectedResponse = + BatchUpdateAdUnitsResponse.newBuilder().addAllAdUnits(new ArrayList()).build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + + BatchUpdateAdUnitsResponse actualResponse = client.batchUpdateAdUnits(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchUpdateAdUnitsExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + client.batchUpdateAdUnits(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchActivateAdUnitsTest() throws Exception { + BatchActivateAdUnitsResponse expectedResponse = + BatchActivateAdUnitsResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + + BatchActivateAdUnitsResponse actualResponse = client.batchActivateAdUnits(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchActivateAdUnitsExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + client.batchActivateAdUnits(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchActivateAdUnitsTest2() throws Exception { + BatchActivateAdUnitsResponse expectedResponse = + BatchActivateAdUnitsResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + + BatchActivateAdUnitsResponse actualResponse = client.batchActivateAdUnits(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchActivateAdUnitsExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + client.batchActivateAdUnits(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchDeactivateAdUnitsTest() throws Exception { + BatchDeactivateAdUnitsResponse expectedResponse = + BatchDeactivateAdUnitsResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + + BatchDeactivateAdUnitsResponse actualResponse = client.batchDeactivateAdUnits(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchDeactivateAdUnitsExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + client.batchDeactivateAdUnits(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchDeactivateAdUnitsTest2() throws Exception { + BatchDeactivateAdUnitsResponse expectedResponse = + BatchDeactivateAdUnitsResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + + BatchDeactivateAdUnitsResponse actualResponse = client.batchDeactivateAdUnits(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchDeactivateAdUnitsExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + client.batchDeactivateAdUnits(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchArchiveAdUnitsTest() throws Exception { + BatchArchiveAdUnitsResponse expectedResponse = BatchArchiveAdUnitsResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + + BatchArchiveAdUnitsResponse actualResponse = client.batchArchiveAdUnits(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchArchiveAdUnitsExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + client.batchArchiveAdUnits(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchArchiveAdUnitsTest2() throws Exception { + BatchArchiveAdUnitsResponse expectedResponse = BatchArchiveAdUnitsResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + + BatchArchiveAdUnitsResponse actualResponse = client.batchArchiveAdUnits(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchArchiveAdUnitsExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + client.batchArchiveAdUnits(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } } diff --git a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ApplicationServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ApplicationServiceClientTest.java index 43bfa5841f0c..94d3728eb028 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ApplicationServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ApplicationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AudienceSegmentServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AudienceSegmentServiceClientTest.java index dc7a9f0c43bd..287d427e5c09 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AudienceSegmentServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/AudienceSegmentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BandwidthGroupServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BandwidthGroupServiceClientTest.java index 66699c7112db..fb9a65fb27df 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BandwidthGroupServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BandwidthGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserLanguageServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserLanguageServiceClientTest.java index af0638d065a6..b9e1d493cc71 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserLanguageServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserLanguageServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserServiceClientTest.java index eea0af281dde..86e1be3d17e7 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/BrowserServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClientTest.java index 8207b9114341..a82bbeb75cc1 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClientTest.java index df43b6d500eb..c2c3dbfc9761 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CmsMetadataValueServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CompanyServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CompanyServiceClientTest.java index 8bc402be0b02..e40e40b47060 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CompanyServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CompanyServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContactServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContactServiceClientTest.java index 2fd0b36e3e2b..fdee54a6f1e6 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContactServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContactServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentBundleServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentBundleServiceClientTest.java index c307c9d00510..b8ae1c8fcfe7 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentBundleServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentBundleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentLabelServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentLabelServiceClientTest.java index bd85bcae8eaf..a73561d9f6d2 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentLabelServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentServiceClientTest.java index c67afd8b0216..976e3f473461 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ContentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CreativeTemplateServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CreativeTemplateServiceClientTest.java index 56b469426715..434786ae0746 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CreativeTemplateServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CreativeTemplateServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomFieldServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomFieldServiceClientTest.java index 98e18600623d..d44d4b178ce5 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomFieldServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomFieldServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClientTest.java index 5a21dcfcb552..c7594443f323 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -29,7 +29,9 @@ import com.google.api.gax.rpc.StatusCode; import com.google.api.gax.rpc.testing.FakeStatusCode; import com.google.common.collect.Lists; +import com.google.protobuf.FieldMask; import java.io.IOException; +import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javax.annotation.Generated; @@ -272,4 +274,537 @@ public void listCustomTargetingKeysExceptionTest2() throws Exception { // Expected exception. } } + + @Test + public void createCustomTargetingKeyTest() throws Exception { + CustomTargetingKey expectedResponse = + CustomTargetingKey.newBuilder() + .setName( + CustomTargetingKeyName.of("[NETWORK_CODE]", "[CUSTOM_TARGETING_KEY]").toString()) + .setCustomTargetingKeyId(-138683049) + .setAdTagName("adTagName-926580830") + .setDisplayName("displayName1714148973") + .build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + + CustomTargetingKey actualResponse = client.createCustomTargetingKey(parent, customTargetingKey); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void createCustomTargetingKeyExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + client.createCustomTargetingKey(parent, customTargetingKey); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void createCustomTargetingKeyTest2() throws Exception { + CustomTargetingKey expectedResponse = + CustomTargetingKey.newBuilder() + .setName( + CustomTargetingKeyName.of("[NETWORK_CODE]", "[CUSTOM_TARGETING_KEY]").toString()) + .setCustomTargetingKeyId(-138683049) + .setAdTagName("adTagName-926580830") + .setDisplayName("displayName1714148973") + .build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + + CustomTargetingKey actualResponse = client.createCustomTargetingKey(parent, customTargetingKey); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void createCustomTargetingKeyExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + client.createCustomTargetingKey(parent, customTargetingKey); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchCreateCustomTargetingKeysTest() throws Exception { + BatchCreateCustomTargetingKeysResponse expectedResponse = + BatchCreateCustomTargetingKeysResponse.newBuilder() + .addAllCustomTargetingKeys(new ArrayList()) + .build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + + BatchCreateCustomTargetingKeysResponse actualResponse = + client.batchCreateCustomTargetingKeys(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchCreateCustomTargetingKeysExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + client.batchCreateCustomTargetingKeys(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchCreateCustomTargetingKeysTest2() throws Exception { + BatchCreateCustomTargetingKeysResponse expectedResponse = + BatchCreateCustomTargetingKeysResponse.newBuilder() + .addAllCustomTargetingKeys(new ArrayList()) + .build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + + BatchCreateCustomTargetingKeysResponse actualResponse = + client.batchCreateCustomTargetingKeys(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchCreateCustomTargetingKeysExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + client.batchCreateCustomTargetingKeys(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void updateCustomTargetingKeyTest() throws Exception { + CustomTargetingKey expectedResponse = + CustomTargetingKey.newBuilder() + .setName( + CustomTargetingKeyName.of("[NETWORK_CODE]", "[CUSTOM_TARGETING_KEY]").toString()) + .setCustomTargetingKeyId(-138683049) + .setAdTagName("adTagName-926580830") + .setDisplayName("displayName1714148973") + .build(); + mockService.addResponse(expectedResponse); + + CustomTargetingKey customTargetingKey = + CustomTargetingKey.newBuilder() + .setName( + CustomTargetingKeyName.of("[NETWORK_CODE]", "[CUSTOM_TARGETING_KEY]").toString()) + .setCustomTargetingKeyId(-138683049) + .setAdTagName("adTagName-926580830") + .setDisplayName("displayName1714148973") + .build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + + CustomTargetingKey actualResponse = + client.updateCustomTargetingKey(customTargetingKey, updateMask); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void updateCustomTargetingKeyExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + CustomTargetingKey customTargetingKey = + CustomTargetingKey.newBuilder() + .setName( + CustomTargetingKeyName.of("[NETWORK_CODE]", "[CUSTOM_TARGETING_KEY]").toString()) + .setCustomTargetingKeyId(-138683049) + .setAdTagName("adTagName-926580830") + .setDisplayName("displayName1714148973") + .build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + client.updateCustomTargetingKey(customTargetingKey, updateMask); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchUpdateCustomTargetingKeysTest() throws Exception { + BatchUpdateCustomTargetingKeysResponse expectedResponse = + BatchUpdateCustomTargetingKeysResponse.newBuilder() + .addAllCustomTargetingKeys(new ArrayList()) + .build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + + BatchUpdateCustomTargetingKeysResponse actualResponse = + client.batchUpdateCustomTargetingKeys(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchUpdateCustomTargetingKeysExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + client.batchUpdateCustomTargetingKeys(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchUpdateCustomTargetingKeysTest2() throws Exception { + BatchUpdateCustomTargetingKeysResponse expectedResponse = + BatchUpdateCustomTargetingKeysResponse.newBuilder() + .addAllCustomTargetingKeys(new ArrayList()) + .build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + + BatchUpdateCustomTargetingKeysResponse actualResponse = + client.batchUpdateCustomTargetingKeys(parent, requests); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchUpdateCustomTargetingKeysExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List requests = new ArrayList<>(); + client.batchUpdateCustomTargetingKeys(parent, requests); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchActivateCustomTargetingKeysTest() throws Exception { + BatchActivateCustomTargetingKeysResponse expectedResponse = + BatchActivateCustomTargetingKeysResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + + BatchActivateCustomTargetingKeysResponse actualResponse = + client.batchActivateCustomTargetingKeys(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchActivateCustomTargetingKeysExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + client.batchActivateCustomTargetingKeys(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchActivateCustomTargetingKeysTest2() throws Exception { + BatchActivateCustomTargetingKeysResponse expectedResponse = + BatchActivateCustomTargetingKeysResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + + BatchActivateCustomTargetingKeysResponse actualResponse = + client.batchActivateCustomTargetingKeys(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchActivateCustomTargetingKeysExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + client.batchActivateCustomTargetingKeys(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchDeactivateCustomTargetingKeysTest() throws Exception { + BatchDeactivateCustomTargetingKeysResponse expectedResponse = + BatchDeactivateCustomTargetingKeysResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + + BatchDeactivateCustomTargetingKeysResponse actualResponse = + client.batchDeactivateCustomTargetingKeys(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchDeactivateCustomTargetingKeysExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + client.batchDeactivateCustomTargetingKeys(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void batchDeactivateCustomTargetingKeysTest2() throws Exception { + BatchDeactivateCustomTargetingKeysResponse expectedResponse = + BatchDeactivateCustomTargetingKeysResponse.newBuilder().build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + + BatchDeactivateCustomTargetingKeysResponse actualResponse = + client.batchDeactivateCustomTargetingKeys(parent, names); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void batchDeactivateCustomTargetingKeysExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + List names = new ArrayList<>(); + client.batchDeactivateCustomTargetingKeys(parent, names); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } } diff --git a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClientTest.java index 399048c775e3..5e2dabb835e4 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/CustomTargetingValueServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClientTest.java index 0bd6f5e4a5d6..714c517bc616 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCapabilityServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCategoryServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCategoryServiceClientTest.java index 716f44a7aa6a..97b1e15afb6e 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCategoryServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceCategoryServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClientTest.java index ec94ad077533..359541334373 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/DeviceManufacturerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClientTest.java index c1b0eb7ebb41..e866f006ba57 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/GeoTargetServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/GeoTargetServiceClientTest.java index e23537b98203..1f3537e53b57 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/GeoTargetServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/GeoTargetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/LineItemServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/LineItemServiceClientTest.java new file mode 100644 index 000000000000..256f7a3ac0d9 --- /dev/null +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/LineItemServiceClientTest.java @@ -0,0 +1,284 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1; + +import static com.google.ads.admanager.v1.LineItemServiceClient.ListLineItemsPagedResponse; + +import com.google.ads.admanager.v1.stub.HttpJsonLineItemServiceStub; +import com.google.api.gax.core.NoCredentialsProvider; +import com.google.api.gax.httpjson.GaxHttpJsonProperties; +import com.google.api.gax.httpjson.testing.MockHttpService; +import com.google.api.gax.rpc.ApiClientHeaderProvider; +import com.google.api.gax.rpc.ApiException; +import com.google.api.gax.rpc.ApiExceptionFactory; +import com.google.api.gax.rpc.InvalidArgumentException; +import com.google.api.gax.rpc.StatusCode; +import com.google.api.gax.rpc.testing.FakeStatusCode; +import com.google.common.collect.Lists; +import com.google.protobuf.Timestamp; +import com.google.type.Money; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import javax.annotation.Generated; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +@Generated("by gapic-generator-java") +public class LineItemServiceClientTest { + private static MockHttpService mockService; + private static LineItemServiceClient client; + + @BeforeClass + public static void startStaticServer() throws IOException { + mockService = + new MockHttpService( + HttpJsonLineItemServiceStub.getMethodDescriptors(), + LineItemServiceSettings.getDefaultEndpoint()); + LineItemServiceSettings settings = + LineItemServiceSettings.newBuilder() + .setTransportChannelProvider( + LineItemServiceSettings.defaultHttpJsonTransportProviderBuilder() + .setHttpTransport(mockService) + .build()) + .setCredentialsProvider(NoCredentialsProvider.create()) + .build(); + client = LineItemServiceClient.create(settings); + } + + @AfterClass + public static void stopServer() { + client.close(); + } + + @Before + public void setUp() {} + + @After + public void tearDown() throws Exception { + mockService.reset(); + } + + @Test + public void getLineItemTest() throws Exception { + LineItem expectedResponse = + LineItem.newBuilder() + .setName(LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString()) + .setOrder(OrderName.of("[NETWORK_CODE]", "[ORDER]").toString()) + .setDisplayName("displayName1714148973") + .setStartTime(Timestamp.newBuilder().build()) + .setEndTime(Timestamp.newBuilder().build()) + .setRate(Money.newBuilder().build()) + .setBudget(Money.newBuilder().build()) + .addAllCustomFieldValues(new ArrayList()) + .setGoal(Goal.newBuilder().build()) + .build(); + mockService.addResponse(expectedResponse); + + LineItemName name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]"); + + LineItem actualResponse = client.getLineItem(name); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void getLineItemExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + LineItemName name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]"); + client.getLineItem(name); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void getLineItemTest2() throws Exception { + LineItem expectedResponse = + LineItem.newBuilder() + .setName(LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString()) + .setOrder(OrderName.of("[NETWORK_CODE]", "[ORDER]").toString()) + .setDisplayName("displayName1714148973") + .setStartTime(Timestamp.newBuilder().build()) + .setEndTime(Timestamp.newBuilder().build()) + .setRate(Money.newBuilder().build()) + .setBudget(Money.newBuilder().build()) + .addAllCustomFieldValues(new ArrayList()) + .setGoal(Goal.newBuilder().build()) + .build(); + mockService.addResponse(expectedResponse); + + String name = "networks/network-6627/lineItems/lineItem-6627"; + + LineItem actualResponse = client.getLineItem(name); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void getLineItemExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String name = "networks/network-6627/lineItems/lineItem-6627"; + client.getLineItem(name); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void listLineItemsTest() throws Exception { + LineItem responsesElement = LineItem.newBuilder().build(); + ListLineItemsResponse expectedResponse = + ListLineItemsResponse.newBuilder() + .setNextPageToken("") + .addAllLineItems(Arrays.asList(responsesElement)) + .build(); + mockService.addResponse(expectedResponse); + + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + + ListLineItemsPagedResponse pagedListResponse = client.listLineItems(parent); + + List resources = Lists.newArrayList(pagedListResponse.iterateAll()); + + Assert.assertEquals(1, resources.size()); + Assert.assertEquals(expectedResponse.getLineItemsList().get(0), resources.get(0)); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void listLineItemsExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + client.listLineItems(parent); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void listLineItemsTest2() throws Exception { + LineItem responsesElement = LineItem.newBuilder().build(); + ListLineItemsResponse expectedResponse = + ListLineItemsResponse.newBuilder() + .setNextPageToken("") + .addAllLineItems(Arrays.asList(responsesElement)) + .build(); + mockService.addResponse(expectedResponse); + + String parent = "networks/network-5450"; + + ListLineItemsPagedResponse pagedListResponse = client.listLineItems(parent); + + List resources = Lists.newArrayList(pagedListResponse.iterateAll()); + + Assert.assertEquals(1, resources.size()); + Assert.assertEquals(expectedResponse.getLineItemsList().get(0), resources.get(0)); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void listLineItemsExceptionTest2() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + String parent = "networks/network-5450"; + client.listLineItems(parent); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } +} diff --git a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileCarrierServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileCarrierServiceClientTest.java index a391301878a2..528235657105 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileCarrierServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileCarrierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceServiceClientTest.java index bc2d1f1e492c..5cb90edac54a 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClientTest.java index 150598d77d24..cfbca185954d 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/NetworkServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/NetworkServiceClientTest.java index bc30eaaba17b..70c8d18828dd 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/NetworkServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/NetworkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,6 +16,8 @@ package com.google.ads.admanager.v1; +import static com.google.ads.admanager.v1.NetworkServiceClient.ListNetworksPagedResponse; + import com.google.ads.admanager.v1.stub.HttpJsonNetworkServiceStub; import com.google.api.gax.core.NoCredentialsProvider; import com.google.api.gax.httpjson.GaxHttpJsonProperties; @@ -26,8 +28,10 @@ import com.google.api.gax.rpc.InvalidArgumentException; import com.google.api.gax.rpc.StatusCode; import com.google.api.gax.rpc.testing.FakeStatusCode; +import com.google.common.collect.Lists; import java.io.IOException; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import javax.annotation.Generated; import org.junit.After; @@ -180,14 +184,27 @@ public void getNetworkExceptionTest2() throws Exception { @Test public void listNetworksTest() throws Exception { + Network responsesElement = Network.newBuilder().build(); ListNetworksResponse expectedResponse = - ListNetworksResponse.newBuilder().addAllNetworks(new ArrayList()).build(); + ListNetworksResponse.newBuilder() + .setNextPageToken("") + .addAllNetworks(Arrays.asList(responsesElement)) + .build(); mockService.addResponse(expectedResponse); - ListNetworksRequest request = ListNetworksRequest.newBuilder().build(); + ListNetworksRequest request = + ListNetworksRequest.newBuilder() + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setSkip(3532159) + .build(); + + ListNetworksPagedResponse pagedListResponse = client.listNetworks(request); - ListNetworksResponse actualResponse = client.listNetworks(request); - Assert.assertEquals(expectedResponse, actualResponse); + List resources = Lists.newArrayList(pagedListResponse.iterateAll()); + + Assert.assertEquals(1, resources.size()); + Assert.assertEquals(expectedResponse.getNetworksList().get(0), resources.get(0)); List actualRequests = mockService.getRequestPaths(); Assert.assertEquals(1, actualRequests.size()); @@ -212,7 +229,12 @@ public void listNetworksExceptionTest() throws Exception { mockService.addException(exception); try { - ListNetworksRequest request = ListNetworksRequest.newBuilder().build(); + ListNetworksRequest request = + ListNetworksRequest.newBuilder() + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setSkip(3532159) + .build(); client.listNetworks(request); Assert.fail("No exception raised"); } catch (InvalidArgumentException e) { diff --git a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemServiceClientTest.java index 9fe8fd7beb26..9d6590b5c3d4 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClientTest.java index a8a28fbba32a..91664e8e5fd0 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OrderServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OrderServiceClientTest.java index 00f87019cae0..1f11e90c3c03 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OrderServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/OrderServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PlacementServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PlacementServiceClientTest.java index b46ddb17523e..da37279a10c9 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PlacementServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PlacementServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClientTest.java index ae5b91535dec..3863ba162879 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionServiceClientTest.java index 35aaad14f078..93ead49337d1 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/PrivateAuctionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClientTest.java index f7853b8c46ff..2225546a6a21 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ReportServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ReportServiceClientTest.java index 2cb8e1f1f970..03c86ba8dd1c 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ReportServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/ReportServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/RoleServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/RoleServiceClientTest.java index 59f2b142d0ca..b3f687414c59 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/RoleServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/RoleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/SiteServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/SiteServiceClientTest.java index ebe88d01573e..0f476660e2a3 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/SiteServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/SiteServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClientTest.java index 05b342579c24..73c9b7a9f5f5 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TeamServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TeamServiceClientTest.java index 70833bc2b863..70231bda3017 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TeamServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/TeamServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/UserServiceClientTest.java b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/UserServiceClientTest.java index e7289aa95ed3..e4a1f9b65445 100644 --- a/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/UserServiceClientTest.java +++ b/java-admanager/ad-manager/src/test/java/com/google/ads/admanager/v1/UserServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/pom.xml b/java-admanager/pom.xml index 1c17926e3c92..ef385c72b0a0 100644 --- a/java-admanager/pom.xml +++ b/java-admanager/pom.xml @@ -4,7 +4,7 @@ com.google.api-ads ad-manager-parent pom - 0.40.0-SNAPSHOT + 0.41.0 Google Google Ad Manager API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,12 +29,12 @@ com.google.api-ads ad-manager - 0.40.0-SNAPSHOT + 0.41.0 com.google.api-ads.api.grpc proto-ad-manager-v1 - 0.40.0-SNAPSHOT + 0.41.0 diff --git a/java-admanager/proto-ad-manager-v1/pom.xml b/java-admanager/proto-ad-manager-v1/pom.xml index d9b2fdc69351..c9942940c581 100644 --- a/java-admanager/proto-ad-manager-v1/pom.xml +++ b/java-admanager/proto-ad-manager-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api-ads.api.grpc proto-ad-manager-v1 - 0.40.0-SNAPSHOT + 0.41.0 proto-ad-manager-v1 Proto library for ad-manager com.google.api-ads ad-manager-parent - 0.40.0-SNAPSHOT + 0.41.0 diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreak.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreak.java index bf4c39154ede..418b2da09e5f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreak.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakMessagesProto.java index 77b68d6678d5..42ba4c6e3c52 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakName.java index 274eed9b5288..247a8c313422 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakOrBuilder.java index 49760c549ed0..cc51c3cdcb11 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakServiceProto.java index 83e4a7583184..1470979438bf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnum.java index 50c0c3ea883d..a01e510e8b90 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnumOrBuilder.java index 24b8c08e9a48..12184c58b39a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdBreakStateEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerError.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerError.java index be55c1067f96..dd5af8b1e625 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerError.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerError.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorOrBuilder.java index b236031079b3..852d14c7d9d0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorProto.java index 4b8c5a0fc638..a595707f981a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdManagerErrorProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAd.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAd.java index 2f25af3b9702..643e46ecba02 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAd.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAd.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdEnumsProto.java index 9c32e8a56fe2..a1ae93ccfb7b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdMessagesProto.java index 8f3cc684e539..10dca19bb514 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdOrBuilder.java index 629553cebfaa..9b3b0a4ada34 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceProto.java index df0f88879ede..68dbcc0e5792 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,7 +84,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n" + "page_token\030\003 \001(\tB\003\340A\001\022_\n" + "\006status\030\004 \001(\0162J.google.ads.admanager.v1.AdRev" - + "iewCenterAdStatusEnum.AdReviewCenterAdStatusB\003\340A\002\022#\n" + + "iewCenterAdStatusEnum.AdReviewCenterAdStatusB\003\340A\001\022#\n" + "\026ad_review_center_ad_id\030\005 \003(\tB\003\340A\001\0223\n" + "\017date_time_range\030\006" + " \001(\0132\025.google.type.IntervalB\003\340A\001\022\030\n" diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnum.java index 43239e35ed87..844bce46c182 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnumOrBuilder.java index 98936d38e1a3..59f1845c24ab 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdReviewCenterAdStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnit.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnit.java index c7496d466a31..cd8ed7b1ac0a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnit.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitEnumsProto.java index cc8f82942f16..b509538e56c5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitMessagesProto.java index 1161afac33dd..8c660b92e904 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitName.java index f92d37e8b544..f8018bd2018e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitOrBuilder.java index 684cb1aaceb9..aa091a818278 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParent.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParent.java index 5f08c8e5b8b5..d6944efe1dba 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParent.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParentOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParentOrBuilder.java index eb3175c4e637..ff079c95864d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParentOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitParentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitServiceProto.java index a6b0e636988e..f283ce283d17 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -40,6 +40,30 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_ads_admanager_v1_ListAdUnitsResponse_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_admanager_v1_ListAdUnitsResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_CreateAdUnitRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_CreateAdUnitRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_admanager_v1_ListAdUnitSizesRequest_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -48,6 +72,30 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_ads_admanager_v1_ListAdUnitSizesResponse_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_admanager_v1_ListAdUnitSizesResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { return descriptor; @@ -62,7 +110,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "e.proto\022\027google.ads.admanager.v1\032.google" + "/ads/admanager/v1/ad_unit_messages.proto" + "\032\034google/api/annotations.proto\032\027google/a" - + "pi/client.proto\032\037google/api/field_behavior.proto\032\031google/api/resource.proto\"I\n" + + "pi/client.proto\032\037google/api/field_behavior.proto\032\031google/api/resource.proto\032" + + " google/protobuf/field_mask.proto\"I\n" + "\020GetAdUnitRequest\0225\n" + "\004name\030\001 \001(\tB\'\340A\002\372A!\n" + "\037admanager.googleapis.com/AdUnit\"\276\001\n" @@ -77,7 +126,30 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\023ListAdUnitsResponse\0221\n" + "\010ad_units\030\001 \003(\0132\037.google.ads.admanager.v1.AdUnit\022\027\n" + "\017next_page_token\030\002 \001(\t\022\022\n\n" - + "total_size\030\003 \001(\005\"\302\001\n" + + "total_size\030\003 \001(\005\"\206\001\n" + + "\023CreateAdUnitRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\0225\n" + + "\007ad_unit\030\002" + + " \001(\0132\037.google.ads.admanager.v1.AdUnitB\003\340A\002\"\202\001\n" + + "\023UpdateAdUnitRequest\0225\n" + + "\007ad_unit\030\001 \001(\0132\037.google.ads.admanager.v1.AdUnitB\003\340A\002\0224\n" + + "\013update_mask\030\002" + + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\232\001\n" + + "\031BatchCreateAdUnitsRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022C\n" + + "\010requests\030\002 \003(\0132,.googl" + + "e.ads.admanager.v1.CreateAdUnitRequestB\003\340A\002\"O\n" + + "\032BatchCreateAdUnitsResponse\0221\n" + + "\010ad_units\030\001 \003(\0132\037.google.ads.admanager.v1.AdUnit\"\232\001\n" + + "\031BatchUpdateAdUnitsRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022C\n" + + "\010requests\030\002 \003(\0132,.google." + + "ads.admanager.v1.UpdateAdUnitRequestB\003\340A\002\"O\n" + + "\032BatchUpdateAdUnitsResponse\0221\n" + + "\010ad_units\030\001 \003(\0132\037.google.ads.admanager.v1.AdUnit\"\302\001\n" + "\026ListAdUnitSizesRequest\0228\n" + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + " admanager.googleapis.com/Network\022\026\n" @@ -89,23 +161,68 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\027ListAdUnitSizesResponse\022:\n\r" + "ad_unit_sizes\030\001 \003(\0132#.google.ads.admanager.v1.AdUnitSize\022\027\n" + "\017next_page_token\030\002 \001(\t\022\022\n\n" - + "total_size\030\003 \001(\0052\254\004\n\r" + + "total_size\030\003 \001(\005\"\217\001\n" + + "\033BatchActivateAdUnitsRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\0226\n" + + "\005names\030\002 \003(\tB\'\340A\002\372A!\n" + + "\037admanager.googleapis.com/AdUnit\"\036\n" + + "\034BatchActivateAdUnitsResponse\"\221\001\n" + + "\035BatchDeactivateAdUnitsRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\0226\n" + + "\005names\030\002 \003(\tB\'\340A\002\372A!\n" + + "\037admanager.googleapis.com/AdUnit\" \n" + + "\036BatchDeactivateAdUnitsResponse\"\216\001\n" + + "\032BatchArchiveAdUnitsRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\0226\n" + + "\005names\030\002 \003(\tB\'\340A\002\372A!\n" + + "\037admanager.googleapis.com/AdUnit\"\035\n" + + "\033BatchArchiveAdUnitsResponse2\204\017\n\r" + "AdUnitService\022\207\001\n" - + "\tGetAdUnit\022).google.ads.admanager.v1.GetAdUnitRequest\032\037.google.ads" - + ".admanager.v1.AdUnit\".\332A\004name\202\323\344\223\002!\022\037/v1/{name=networks/*/adUnits/*}\022\232\001\n" - + "\013ListAdUnits\022+.google.ads.admanager.v1.ListAdUni" - + "tsRequest\032,.google.ads.admanager.v1.List" - + "AdUnitsResponse\"0\332A\006parent\202\323\344\223\002!\022\037/v1/{parent=networks/*}/adUnits\022\252\001\n" - + "\017ListAdUnitSizes\022/.google.ads.admanager.v1.ListAdUn" - + "itSizesRequest\0320.google.ads.admanager.v1" - + ".ListAdUnitSizesResponse\"4\332A\006parent\202\323\344\223\002" - + "%\022#/v1/{parent=networks/*}/adUnitSizes\032G" - + "\312A\030admanager.googleapis.com\322A)https://www.googleapis.com/auth/admanagerB\306\001\n" - + "\033com.google.ads.admanager.v1B\022AdUnitServicePr" - + "otoP\001Z@google.golang.org/genproto/google" - + "apis/ads/admanager/v1;admanager\252\002\027Google" - + ".Ads.AdManager.V1\312\002\027Google\\Ads\\AdManager" - + "\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" + + "\tGetAdUnit\022).google.ads.admanager.v1.GetAdUnitRequest\032\037.google.ads.adm" + + "anager.v1.AdUnit\".\332A\004name\202\323\344\223\002!\022\037/v1/{name=networks/*/adUnits/*}\022\232\001\n" + + "\013ListAdUnits\022+.google.ads.admanager.v1.ListAdUnitsRe" + + "quest\032,.google.ads.admanager.v1.ListAdUn" + + "itsResponse\"0\332A\006parent\202\323\344\223\002!\022\037/v1/{parent=networks/*}/adUnits\022\252\001\n" + + "\017ListAdUnitSizes\022/.google.ads.admanager.v1.ListAdUnitSi" + + "zesRequest\0320.google.ads.admanager.v1.Lis" + + "tAdUnitSizesResponse\"4\332A\006parent\202\323\344\223\002%\022#/v1/{parent=networks/*}/adUnitSizes\022\240\001\n" + + "\014CreateAdUnit\022,.google.ads.admanager.v1.Cr" + + "eateAdUnitRequest\032\037.google.ads.admanager" + + ".v1.AdUnit\"A\332A\016parent,ad_unit\202\323\344\223\002*\"\037/v1" + + "/{parent=networks/*}/adUnits:\007ad_unit\022\255\001\n" + + "\014UpdateAdUnit\022,.google.ads.admanager.v1" + + ".UpdateAdUnitRequest\032\037.google.ads.admana" + + "ger.v1.AdUnit\"N\332A\023ad_unit,update_mask\202\323\344" + + "\223\00222\'/v1/{ad_unit.name=networks/*/adUnits/*}:\007ad_unit\022\307\001\n" + + "\022BatchCreateAdUnits\0222.google.ads.admanager.v1.BatchCreateAdUnit" + + "sRequest\0323.google.ads.admanager.v1.Batch" + + "CreateAdUnitsResponse\"H\332A\017parent,request" + + "s\202\323\344\223\0020\"+/v1/{parent=networks/*}/adUnits:batchCreate:\001*\022\307\001\n" + + "\022BatchUpdateAdUnits\0222.google.ads.admanager.v1.BatchUpdateAdUn" + + "itsRequest\0323.google.ads.admanager.v1.Bat" + + "chUpdateAdUnitsResponse\"H\332A\017parent,reque" + + "sts\202\323\344\223\0020\"+/v1/{parent=networks/*}/adUnits:batchUpdate:\001*\022\314\001\n" + + "\024BatchActivateAdUnits\0224.google.ads.admanager.v1.BatchActiva" + + "teAdUnitsRequest\0325.google.ads.admanager." + + "v1.BatchActivateAdUnitsResponse\"G\332A\014pare" + + "nt,names\202\323\344\223\0022\"-/v1/{parent=networks/*}/adUnits:batchActivate:\001*\022\324\001\n" + + "\026BatchDeactivateAdUnits\0226.google.ads.admanager.v1.Ba" + + "tchDeactivateAdUnitsRequest\0327.google.ads.admanager.v1.BatchDeactivateAdUnitsResp" + + "onse\"I\332A\014parent,names\202\323\344\223\0024\"//v1/{parent" + + "=networks/*}/adUnits:batchDeactivate:\001*\022\310\001\n" + + "\023BatchArchiveAdUnits\0223.google.ads.admanager.v1.BatchArchiveAdUnitsRequest\0324.g" + + "oogle.ads.admanager.v1.BatchArchiveAdUni" + + "tsResponse\"F\332A\014parent,names\202\323\344\223\0021\",/v1/{" + + "parent=networks/*}/adUnits:batchArchive:" + + "\001*\032G\312A\030admanager.googleapis.com\322A)https://www.googleapis.com/auth/admanagerB\306\001\n" + + "\033com.google.ads.admanager.v1B\022AdUnitServi" + + "ceProtoP\001Z@google.golang.org/genproto/go" + + "ogleapis/ads/admanager/v1;admanager\252\002\027Go" + + "ogle.Ads.AdManager.V1\312\002\027Google\\Ads\\AdMan" + + "ager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -116,6 +233,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.api.ClientProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), + com.google.protobuf.FieldMaskProto.getDescriptor(), }); internal_static_google_ads_admanager_v1_GetAdUnitRequest_descriptor = getDescriptor().getMessageTypes().get(0); @@ -141,8 +259,56 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "AdUnits", "NextPageToken", "TotalSize", }); - internal_static_google_ads_admanager_v1_ListAdUnitSizesRequest_descriptor = + internal_static_google_ads_admanager_v1_CreateAdUnitRequest_descriptor = getDescriptor().getMessageTypes().get(3); + internal_static_google_ads_admanager_v1_CreateAdUnitRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_CreateAdUnitRequest_descriptor, + new java.lang.String[] { + "Parent", "AdUnit", + }); + internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_descriptor = + getDescriptor().getMessageTypes().get(4); + internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_descriptor, + new java.lang.String[] { + "AdUnit", "UpdateMask", + }); + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_descriptor = + getDescriptor().getMessageTypes().get(5); + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_descriptor, + new java.lang.String[] { + "Parent", "Requests", + }); + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_descriptor = + getDescriptor().getMessageTypes().get(6); + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_descriptor, + new java.lang.String[] { + "AdUnits", + }); + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_descriptor = + getDescriptor().getMessageTypes().get(7); + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_descriptor, + new java.lang.String[] { + "Parent", "Requests", + }); + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_descriptor = + getDescriptor().getMessageTypes().get(8); + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_descriptor, + new java.lang.String[] { + "AdUnits", + }); + internal_static_google_ads_admanager_v1_ListAdUnitSizesRequest_descriptor = + getDescriptor().getMessageTypes().get(9); internal_static_google_ads_admanager_v1_ListAdUnitSizesRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_admanager_v1_ListAdUnitSizesRequest_descriptor, @@ -150,13 +316,55 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Parent", "PageSize", "PageToken", "Filter", "OrderBy", "Skip", }); internal_static_google_ads_admanager_v1_ListAdUnitSizesResponse_descriptor = - getDescriptor().getMessageTypes().get(4); + getDescriptor().getMessageTypes().get(10); internal_static_google_ads_admanager_v1_ListAdUnitSizesResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_admanager_v1_ListAdUnitSizesResponse_descriptor, new java.lang.String[] { "AdUnitSizes", "NextPageToken", "TotalSize", }); + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_descriptor = + getDescriptor().getMessageTypes().get(11); + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_descriptor, + new java.lang.String[] { + "Parent", "Names", + }); + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_descriptor = + getDescriptor().getMessageTypes().get(12); + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_descriptor, + new java.lang.String[] {}); + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_descriptor = + getDescriptor().getMessageTypes().get(13); + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_descriptor, + new java.lang.String[] { + "Parent", "Names", + }); + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_descriptor = + getDescriptor().getMessageTypes().get(14); + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_descriptor, + new java.lang.String[] {}); + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_descriptor = + getDescriptor().getMessageTypes().get(15); + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_descriptor, + new java.lang.String[] { + "Parent", "Names", + }); + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_descriptor = + getDescriptor().getMessageTypes().get(16); + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_descriptor, + new java.lang.String[] {}); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.ClientProto.defaultHost); @@ -172,6 +380,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.api.ClientProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); + com.google.protobuf.FieldMaskProto.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSize.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSize.java index 970b048a323a..7ce0c98ec08a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSize.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSize.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSizeOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSizeOrBuilder.java index 11d75fd0d4d3..aff0f5f3767d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSizeOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitSizeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnum.java index 0c2950355db7..3ad53a52ac5b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnumOrBuilder.java index 9f528652f5f8..8a2478ed5e79 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargeting.java index d9bbc15c12de..81b04fae061f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargetingOrBuilder.java index ddad1fd57eaf..33df4f98750b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AdUnitTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Application.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Application.java index 83d472d3d317..25a1978b313a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Application.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationMessagesProto.java index 02db15409816..cc10fcd74fa1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationName.java index 023fc369ba76..abfbb89e01bd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationOrBuilder.java index 99d28d742f23..6af5f2ac351f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationServiceProto.java index f6c4b8328660..c021eb885ca6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ApplicationServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabel.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabel.java index d89465de2efa..7a102209fffd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabel.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelOrBuilder.java index 0a0d8d0b59a6..f62307aae2ab 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelProto.java index d2633caa2799..efaec90f4de7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AppliedLabelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegment.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegment.java index 98b330776170..cd1cb1e1eb42 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegment.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentMessagesProto.java index 65324ea70e0c..3da0fae8d3d7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentName.java index bd04420f1765..f4806bde5221 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentOrBuilder.java index 84bd90bd0a49..aa53ae0963ad 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceProto.java index 6ea3f4f54fcc..d22ba8d91b30 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargeting.java index ed28c2bf7d48..a38c1c6a12da 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargetingOrBuilder.java index cec2a23fb0b4..281de8627552 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/AudienceSegmentTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroup.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroup.java index f5367deda7e4..fa4bbd25ee8e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroup.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupMessagesProto.java index 3ba636cf0d68..097987b214c9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupName.java index 0e9e9e968c56..7a6794d886c4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupOrBuilder.java index c656428dd9b1..d3075432b7d4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceProto.java index 0a4225ec8d05..196fc788800a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthGroupServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargeting.java index 5179ad219d8e..91b1c59cfbe3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargetingOrBuilder.java index 215631d0d3e1..1a4260860c0c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BandwidthTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsRequest.java new file mode 100644 index 000000000000..dfba2225a026 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsRequest.java @@ -0,0 +1,978 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *

+ * Request object for `BatchActivateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateAdUnitsRequest} + */ +public final class BatchActivateAdUnitsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchActivateAdUnitsRequest) + BatchActivateAdUnitsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchActivateAdUnitsRequest.newBuilder() to construct. + private BatchActivateAdUnitsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchActivateAdUnitsRequest() { + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchActivateAdUnitsRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int NAMES_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + return names_; + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < names_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, names_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + { + int dataSize = 0; + for (int i = 0; i < names_.size(); i++) { + dataSize += computeStringSizeNoTag(names_.getRaw(i)); + } + size += dataSize; + size += 1 * getNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchActivateAdUnitsRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest other = + (com.google.ads.admanager.v1.BatchActivateAdUnitsRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getNamesList().equals(other.getNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getNamesCount() > 0) { + hash = (37 * hash) + NAMES_FIELD_NUMBER; + hash = (53 * hash) + getNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchActivateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateAdUnitsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchActivateAdUnitsRequest) + com.google.ads.admanager.v1.BatchActivateAdUnitsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsRequest build() { + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsRequest buildPartial() { + com.google.ads.admanager.v1.BatchActivateAdUnitsRequest result = + new com.google.ads.admanager.v1.BatchActivateAdUnitsRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchActivateAdUnitsRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + names_.makeImmutable(); + result.names_ = names_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchActivateAdUnitsRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchActivateAdUnitsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchActivateAdUnitsRequest other) { + if (other == com.google.ads.admanager.v1.BatchActivateAdUnitsRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.names_.isEmpty()) { + if (names_.isEmpty()) { + names_ = other.names_; + bitField0_ |= 0x00000002; + } else { + ensureNamesIsMutable(); + names_.addAll(other.names_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + ensureNamesIsMutable(); + names_.add(s); + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + private void ensureNamesIsMutable() { + if (!names_.isModifiable()) { + names_ = new com.google.protobuf.LazyStringArrayList(names_); + } + bitField0_ |= 0x00000002; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + names_.makeImmutable(); + return names_; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index to set the value at. + * @param value The names to set. + * @return This builder for chaining. + */ + public Builder setNames(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.set(index, value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The names to add. + * @return This builder for chaining. + */ + public Builder addNames(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param values The names to add. + * @return This builder for chaining. + */ + public Builder addAllNames(java.lang.Iterable values) { + ensureNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, names_); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearNames() { + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + ; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to activate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes of the names to add. + * @return This builder for chaining. + */ + public Builder addNamesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchActivateAdUnitsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchActivateAdUnitsRequest) + private static final com.google.ads.admanager.v1.BatchActivateAdUnitsRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchActivateAdUnitsRequest(); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchActivateAdUnitsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsRequestOrBuilder.java new file mode 100644 index 000000000000..93692115c683 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsRequestOrBuilder.java @@ -0,0 +1,122 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchActivateAdUnitsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchActivateAdUnitsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + java.util.List getNamesList(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + int getNamesCount(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + java.lang.String getNames(int index); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to activate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + com.google.protobuf.ByteString getNamesBytes(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsResponse.java new file mode 100644 index 000000000000..2335c896585f --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsResponse.java @@ -0,0 +1,435 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchActivateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateAdUnitsResponse} + */ +public final class BatchActivateAdUnitsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchActivateAdUnitsResponse) + BatchActivateAdUnitsResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchActivateAdUnitsResponse.newBuilder() to construct. + private BatchActivateAdUnitsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchActivateAdUnitsResponse() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchActivateAdUnitsResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.Builder.class); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchActivateAdUnitsResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse other = + (com.google.ads.admanager.v1.BatchActivateAdUnitsResponse) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchActivateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateAdUnitsResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchActivateAdUnitsResponse) + com.google.ads.admanager.v1.BatchActivateAdUnitsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateAdUnitsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsResponse getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsResponse build() { + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsResponse buildPartial() { + com.google.ads.admanager.v1.BatchActivateAdUnitsResponse result = + new com.google.ads.admanager.v1.BatchActivateAdUnitsResponse(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchActivateAdUnitsResponse) { + return mergeFrom((com.google.ads.admanager.v1.BatchActivateAdUnitsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchActivateAdUnitsResponse other) { + if (other == com.google.ads.admanager.v1.BatchActivateAdUnitsResponse.getDefaultInstance()) + return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchActivateAdUnitsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchActivateAdUnitsResponse) + private static final com.google.ads.admanager.v1.BatchActivateAdUnitsResponse DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchActivateAdUnitsResponse(); + } + + public static com.google.ads.admanager.v1.BatchActivateAdUnitsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchActivateAdUnitsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateAdUnitsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsResponseOrBuilder.java new file mode 100644 index 000000000000..bd0b273af57e --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateAdUnitsResponseOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchActivateAdUnitsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchActivateAdUnitsResponse) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequest.java index d5715839c126..350aa96b2cb9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequestOrBuilder.java index 33712b19d5dd..8257c3236fc8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponse.java index b6c55e94a462..5e9e1b872fdf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponseOrBuilder.java index a38a7af550da..7e990de48f4c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomFieldsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysRequest.java new file mode 100644 index 000000000000..d6ade4a91cd9 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysRequest.java @@ -0,0 +1,1004 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchActivateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest} + */ +public final class BatchActivateCustomTargetingKeysRequest + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) + BatchActivateCustomTargetingKeysRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchActivateCustomTargetingKeysRequest.newBuilder() to construct. + private BatchActivateCustomTargetingKeysRequest( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchActivateCustomTargetingKeysRequest() { + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchActivateCustomTargetingKeysRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int NAMES_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + return names_; + } + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < names_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, names_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + { + int dataSize = 0; + for (int i = 0; i < names_.size(); i++) { + dataSize += computeStringSizeNoTag(names_.getRaw(i)); + } + size += dataSize; + size += 1 * getNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest other = + (com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getNamesList().equals(other.getNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getNamesCount() > 0) { + hash = (37 * hash) + NAMES_FIELD_NUMBER; + hash = (53 * hash) + getNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchActivateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest build() { + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest buildPartial() { + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest result = + new com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + names_.makeImmutable(); + result.names_ = names_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) { + return mergeFrom( + (com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest other) { + if (other + == com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + .getDefaultInstance()) return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.names_.isEmpty()) { + if (names_.isEmpty()) { + names_ = other.names_; + bitField0_ |= 0x00000002; + } else { + ensureNamesIsMutable(); + names_.addAll(other.names_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + ensureNamesIsMutable(); + names_.add(s); + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + private void ensureNamesIsMutable() { + if (!names_.isModifiable()) { + names_ = new com.google.protobuf.LazyStringArrayList(names_); + } + bitField0_ |= 0x00000002; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + names_.makeImmutable(); + return names_; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index to set the value at. + * @param value The names to set. + * @return This builder for chaining. + */ + public Builder setNames(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.set(index, value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The names to add. + * @return This builder for chaining. + */ + public Builder addNames(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param values The names to add. + * @return This builder for chaining. + */ + public Builder addAllNames(java.lang.Iterable values) { + ensureNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, names_); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearNames() { + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + ; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to activate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes of the names to add. + * @return This builder for chaining. + */ + public Builder addNamesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) + private static final com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest(); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchActivateCustomTargetingKeysRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysRequestOrBuilder.java new file mode 100644 index 000000000000..5deda7fd7e40 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysRequestOrBuilder.java @@ -0,0 +1,126 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchActivateCustomTargetingKeysRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + java.util.List getNamesList(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + int getNamesCount(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + java.lang.String getNames(int index); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to activate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + com.google.protobuf.ByteString getNamesBytes(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysResponse.java new file mode 100644 index 000000000000..6c5f787480c6 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysResponse.java @@ -0,0 +1,447 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchActivateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse} + */ +public final class BatchActivateCustomTargetingKeysResponse + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) + BatchActivateCustomTargetingKeysResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchActivateCustomTargetingKeysResponse.newBuilder() to construct. + private BatchActivateCustomTargetingKeysResponse( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchActivateCustomTargetingKeysResponse() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchActivateCustomTargetingKeysResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse.Builder.class); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse other = + (com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchActivateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse build() { + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse buildPartial() { + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse result = + new com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) { + return mergeFrom( + (com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse other) { + if (other + == com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + .getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) + private static final com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse(); + } + + public static com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchActivateCustomTargetingKeysResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysResponseOrBuilder.java new file mode 100644 index 000000000000..264c08d3e34e --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateCustomTargetingKeysResponseOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchActivateCustomTargetingKeysResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequest.java index 09ab813fdab7..f281ee1d3ff5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequestOrBuilder.java index 2f1cc0caebd9..5c3503a95f85 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponse.java index e5d4f3ae8fb7..07771b411e0d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponseOrBuilder.java index f5d333b4c0ee..c156fc26ec48 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivatePlacementsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequest.java index 95a4bed4dc1e..bda70c61b2f0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequestOrBuilder.java index e8ae23c2cb6b..9637a4753535 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponse.java index 8318dcecc99f..d2f1371af819 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponseOrBuilder.java index b187af8b5989..73fe0222ef9e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchActivateTeamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadata.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadata.java index 89feb8a9b0d4..723e038ac257 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadata.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadataOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadataOrBuilder.java index b9c82b9afb6f..4cd689f8a299 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadataOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAdReviewCenterAdsOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequest.java index 1aa6bad60981..7c738bee8d15 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequestOrBuilder.java index 9d3ef763720b..2cc00e17907b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponse.java index 67bdf60a01f5..f1a31527dd5d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponseOrBuilder.java index b702baa227fd..3191e448182f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchAllowAdReviewCenterAdsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsRequest.java new file mode 100644 index 000000000000..a6c6de4cd53f --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsRequest.java @@ -0,0 +1,978 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchArchiveAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchArchiveAdUnitsRequest} + */ +public final class BatchArchiveAdUnitsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchArchiveAdUnitsRequest) + BatchArchiveAdUnitsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchArchiveAdUnitsRequest.newBuilder() to construct. + private BatchArchiveAdUnitsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchArchiveAdUnitsRequest() { + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchArchiveAdUnitsRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int NAMES_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + return names_; + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < names_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, names_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + { + int dataSize = 0; + for (int i = 0; i < names_.size(); i++) { + dataSize += computeStringSizeNoTag(names_.getRaw(i)); + } + size += dataSize; + size += 1 * getNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest other = + (com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getNamesList().equals(other.getNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getNamesCount() > 0) { + hash = (37 * hash) + NAMES_FIELD_NUMBER; + hash = (53 * hash) + getNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchArchiveAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchArchiveAdUnitsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchArchiveAdUnitsRequest) + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest build() { + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest buildPartial() { + com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest result = + new com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + names_.makeImmutable(); + result.names_ = names_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest other) { + if (other == com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.names_.isEmpty()) { + if (names_.isEmpty()) { + names_ = other.names_; + bitField0_ |= 0x00000002; + } else { + ensureNamesIsMutable(); + names_.addAll(other.names_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + ensureNamesIsMutable(); + names_.add(s); + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + private void ensureNamesIsMutable() { + if (!names_.isModifiable()) { + names_ = new com.google.protobuf.LazyStringArrayList(names_); + } + bitField0_ |= 0x00000002; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + names_.makeImmutable(); + return names_; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index to set the value at. + * @param value The names to set. + * @return This builder for chaining. + */ + public Builder setNames(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.set(index, value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The names to add. + * @return This builder for chaining. + */ + public Builder addNames(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param values The names to add. + * @return This builder for chaining. + */ + public Builder addAllNames(java.lang.Iterable values) { + ensureNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, names_); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearNames() { + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + ; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to archive.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes of the names to add. + * @return This builder for chaining. + */ + public Builder addNamesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchArchiveAdUnitsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchArchiveAdUnitsRequest) + private static final com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest(); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchArchiveAdUnitsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsRequestOrBuilder.java new file mode 100644 index 000000000000..de7f2e6dece9 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsRequestOrBuilder.java @@ -0,0 +1,122 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchArchiveAdUnitsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchArchiveAdUnitsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + java.util.List getNamesList(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + int getNamesCount(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + java.lang.String getNames(int index); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to archive.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + com.google.protobuf.ByteString getNamesBytes(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsResponse.java new file mode 100644 index 000000000000..5153eb48e01f --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsResponse.java @@ -0,0 +1,435 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchArchiveAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchArchiveAdUnitsResponse} + */ +public final class BatchArchiveAdUnitsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchArchiveAdUnitsResponse) + BatchArchiveAdUnitsResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchArchiveAdUnitsResponse.newBuilder() to construct. + private BatchArchiveAdUnitsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchArchiveAdUnitsResponse() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchArchiveAdUnitsResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.Builder.class); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse other = + (com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchArchiveAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchArchiveAdUnitsResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchArchiveAdUnitsResponse) + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchArchiveAdUnitsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse build() { + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse buildPartial() { + com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse result = + new com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse) { + return mergeFrom((com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse other) { + if (other == com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse.getDefaultInstance()) + return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchArchiveAdUnitsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchArchiveAdUnitsResponse) + private static final com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse(); + } + + public static com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchArchiveAdUnitsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsResponseOrBuilder.java new file mode 100644 index 000000000000..1c61dbc9875a --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchiveAdUnitsResponseOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchArchiveAdUnitsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchArchiveAdUnitsResponse) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequest.java index 7eb316611cd8..82228075f229 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequestOrBuilder.java index 7a78cd506ebc..53f69433c9a9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponse.java index e8935f01c63f..035a2d3b3ce6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponseOrBuilder.java index 1a91d61fdaf3..718446cfc016 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchArchivePlacementsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequest.java index 646fc0e2b964..f3e159626d65 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequestOrBuilder.java index 0d9cab633e53..3b7aba5bab2b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponse.java index bf109d3d87ce..faad5b0dd010 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponseOrBuilder.java index 6a6c8d19b197..4912bcbc7171 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchBlockAdReviewCenterAdsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsRequest.java new file mode 100644 index 000000000000..06a4469e1490 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsRequest.java @@ -0,0 +1,1258 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchCreateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateAdUnitsRequest} + */ +public final class BatchCreateAdUnitsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchCreateAdUnitsRequest) + BatchCreateAdUnitsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchCreateAdUnitsRequest.newBuilder() to construct. + private BatchCreateAdUnitsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchCreateAdUnitsRequest() { + parent_ = ""; + requests_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchCreateAdUnitsRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REQUESTS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private java.util.List requests_; + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List getRequestsList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getRequestsOrBuilderList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public int getRequestsCount() { + return requests_.size(); + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CreateAdUnitRequest getRequests(int index) { + return requests_.get(index); + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder getRequestsOrBuilder(int index) { + return requests_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + output.writeMessage(2, requests_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, requests_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchCreateAdUnitsRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest other = + (com.google.ads.admanager.v1.BatchCreateAdUnitsRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getRequestsList().equals(other.getRequestsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getRequestsCount() > 0) { + hash = (37 * hash) + REQUESTS_FIELD_NUMBER; + hash = (53 * hash) + getRequestsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchCreateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateAdUnitsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchCreateAdUnitsRequest) + com.google.ads.admanager.v1.BatchCreateAdUnitsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + } else { + requests_ = null; + requestsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsRequest build() { + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsRequest buildPartial() { + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest result = + new com.google.ads.admanager.v1.BatchCreateAdUnitsRequest(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchCreateAdUnitsRequest result) { + if (requestsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + requests_ = java.util.Collections.unmodifiableList(requests_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.requests_ = requests_; + } else { + result.requests_ = requestsBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchCreateAdUnitsRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchCreateAdUnitsRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchCreateAdUnitsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchCreateAdUnitsRequest other) { + if (other == com.google.ads.admanager.v1.BatchCreateAdUnitsRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (requestsBuilder_ == null) { + if (!other.requests_.isEmpty()) { + if (requests_.isEmpty()) { + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureRequestsIsMutable(); + requests_.addAll(other.requests_); + } + onChanged(); + } + } else { + if (!other.requests_.isEmpty()) { + if (requestsBuilder_.isEmpty()) { + requestsBuilder_.dispose(); + requestsBuilder_ = null; + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + requestsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getRequestsFieldBuilder() + : null; + } else { + requestsBuilder_.addAllMessages(other.requests_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + com.google.ads.admanager.v1.CreateAdUnitRequest m = + input.readMessage( + com.google.ads.admanager.v1.CreateAdUnitRequest.parser(), + extensionRegistry); + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(m); + } else { + requestsBuilder_.addMessage(m); + } + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.util.List requests_ = + java.util.Collections.emptyList(); + + private void ensureRequestsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + requests_ = + new java.util.ArrayList(requests_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CreateAdUnitRequest, + com.google.ads.admanager.v1.CreateAdUnitRequest.Builder, + com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder> + requestsBuilder_; + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List getRequestsList() { + if (requestsBuilder_ == null) { + return java.util.Collections.unmodifiableList(requests_); + } else { + return requestsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public int getRequestsCount() { + if (requestsBuilder_ == null) { + return requests_.size(); + } else { + return requestsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateAdUnitRequest getRequests(int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests(int index, com.google.ads.admanager.v1.CreateAdUnitRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.set(index, value); + onChanged(); + } else { + requestsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests( + int index, com.google.ads.admanager.v1.CreateAdUnitRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.set(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests(com.google.ads.admanager.v1.CreateAdUnitRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(value); + onChanged(); + } else { + requestsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests(int index, com.google.ads.admanager.v1.CreateAdUnitRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(index, value); + onChanged(); + } else { + requestsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + com.google.ads.admanager.v1.CreateAdUnitRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + int index, com.google.ads.admanager.v1.CreateAdUnitRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addAllRequests( + java.lang.Iterable values) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, requests_); + onChanged(); + } else { + requestsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearRequests() { + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + requestsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder removeRequests(int index) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.remove(index); + onChanged(); + } else { + requestsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateAdUnitRequest.Builder getRequestsBuilder(int index) { + return getRequestsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder getRequestsOrBuilder( + int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsOrBuilderList() { + if (requestsBuilder_ != null) { + return requestsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(requests_); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateAdUnitRequest.Builder addRequestsBuilder() { + return getRequestsFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.CreateAdUnitRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateAdUnitRequest.Builder addRequestsBuilder(int index) { + return getRequestsFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.CreateAdUnitRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsBuilderList() { + return getRequestsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CreateAdUnitRequest, + com.google.ads.admanager.v1.CreateAdUnitRequest.Builder, + com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder> + getRequestsFieldBuilder() { + if (requestsBuilder_ == null) { + requestsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CreateAdUnitRequest, + com.google.ads.admanager.v1.CreateAdUnitRequest.Builder, + com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder>( + requests_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); + requests_ = null; + } + return requestsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchCreateAdUnitsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchCreateAdUnitsRequest) + private static final com.google.ads.admanager.v1.BatchCreateAdUnitsRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchCreateAdUnitsRequest(); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchCreateAdUnitsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsRequestOrBuilder.java new file mode 100644 index 000000000000..07dc8ed5c401 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsRequestOrBuilder.java @@ -0,0 +1,133 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchCreateAdUnitsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchCreateAdUnitsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List getRequestsList(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.CreateAdUnitRequest getRequests(int index); + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + int getRequestsCount(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getRequestsOrBuilderList(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder getRequestsOrBuilder(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsResponse.java new file mode 100644 index 000000000000..42759c4a725d --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsResponse.java @@ -0,0 +1,960 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchCreateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateAdUnitsResponse} + */ +public final class BatchCreateAdUnitsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchCreateAdUnitsResponse) + BatchCreateAdUnitsResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchCreateAdUnitsResponse.newBuilder() to construct. + private BatchCreateAdUnitsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchCreateAdUnitsResponse() { + adUnits_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchCreateAdUnitsResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.Builder.class); + } + + public static final int AD_UNITS_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private java.util.List adUnits_; + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public java.util.List getAdUnitsList() { + return adUnits_; + } + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public java.util.List + getAdUnitsOrBuilderList() { + return adUnits_; + } + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public int getAdUnitsCount() { + return adUnits_.size(); + } + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnit getAdUnits(int index) { + return adUnits_.get(index); + } + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitsOrBuilder(int index) { + return adUnits_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < adUnits_.size(); i++) { + output.writeMessage(1, adUnits_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < adUnits_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, adUnits_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchCreateAdUnitsResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse other = + (com.google.ads.admanager.v1.BatchCreateAdUnitsResponse) obj; + + if (!getAdUnitsList().equals(other.getAdUnitsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getAdUnitsCount() > 0) { + hash = (37 * hash) + AD_UNITS_FIELD_NUMBER; + hash = (53 * hash) + getAdUnitsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchCreateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateAdUnitsResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchCreateAdUnitsResponse) + com.google.ads.admanager.v1.BatchCreateAdUnitsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (adUnitsBuilder_ == null) { + adUnits_ = java.util.Collections.emptyList(); + } else { + adUnits_ = null; + adUnitsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateAdUnitsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsResponse getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsResponse build() { + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsResponse buildPartial() { + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse result = + new com.google.ads.admanager.v1.BatchCreateAdUnitsResponse(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchCreateAdUnitsResponse result) { + if (adUnitsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + adUnits_ = java.util.Collections.unmodifiableList(adUnits_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.adUnits_ = adUnits_; + } else { + result.adUnits_ = adUnitsBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchCreateAdUnitsResponse result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchCreateAdUnitsResponse) { + return mergeFrom((com.google.ads.admanager.v1.BatchCreateAdUnitsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchCreateAdUnitsResponse other) { + if (other == com.google.ads.admanager.v1.BatchCreateAdUnitsResponse.getDefaultInstance()) + return this; + if (adUnitsBuilder_ == null) { + if (!other.adUnits_.isEmpty()) { + if (adUnits_.isEmpty()) { + adUnits_ = other.adUnits_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureAdUnitsIsMutable(); + adUnits_.addAll(other.adUnits_); + } + onChanged(); + } + } else { + if (!other.adUnits_.isEmpty()) { + if (adUnitsBuilder_.isEmpty()) { + adUnitsBuilder_.dispose(); + adUnitsBuilder_ = null; + adUnits_ = other.adUnits_; + bitField0_ = (bitField0_ & ~0x00000001); + adUnitsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getAdUnitsFieldBuilder() + : null; + } else { + adUnitsBuilder_.addAllMessages(other.adUnits_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + com.google.ads.admanager.v1.AdUnit m = + input.readMessage( + com.google.ads.admanager.v1.AdUnit.parser(), extensionRegistry); + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.add(m); + } else { + adUnitsBuilder_.addMessage(m); + } + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List adUnits_ = + java.util.Collections.emptyList(); + + private void ensureAdUnitsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + adUnits_ = new java.util.ArrayList(adUnits_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + adUnitsBuilder_; + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public java.util.List getAdUnitsList() { + if (adUnitsBuilder_ == null) { + return java.util.Collections.unmodifiableList(adUnits_); + } else { + return adUnitsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public int getAdUnitsCount() { + if (adUnitsBuilder_ == null) { + return adUnits_.size(); + } else { + return adUnitsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit getAdUnits(int index) { + if (adUnitsBuilder_ == null) { + return adUnits_.get(index); + } else { + return adUnitsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder setAdUnits(int index, com.google.ads.admanager.v1.AdUnit value) { + if (adUnitsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAdUnitsIsMutable(); + adUnits_.set(index, value); + onChanged(); + } else { + adUnitsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder setAdUnits( + int index, com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.set(index, builderForValue.build()); + onChanged(); + } else { + adUnitsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits(com.google.ads.admanager.v1.AdUnit value) { + if (adUnitsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAdUnitsIsMutable(); + adUnits_.add(value); + onChanged(); + } else { + adUnitsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits(int index, com.google.ads.admanager.v1.AdUnit value) { + if (adUnitsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAdUnitsIsMutable(); + adUnits_.add(index, value); + onChanged(); + } else { + adUnitsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits(com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.add(builderForValue.build()); + onChanged(); + } else { + adUnitsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits( + int index, com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.add(index, builderForValue.build()); + onChanged(); + } else { + adUnitsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAllAdUnits( + java.lang.Iterable values) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, adUnits_); + onChanged(); + } else { + adUnitsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder clearAdUnits() { + if (adUnitsBuilder_ == null) { + adUnits_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + adUnitsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder removeAdUnits(int index) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.remove(index); + onChanged(); + } else { + adUnitsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit.Builder getAdUnitsBuilder(int index) { + return getAdUnitsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitsOrBuilder(int index) { + if (adUnitsBuilder_ == null) { + return adUnits_.get(index); + } else { + return adUnitsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public java.util.List + getAdUnitsOrBuilderList() { + if (adUnitsBuilder_ != null) { + return adUnitsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(adUnits_); + } + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit.Builder addAdUnitsBuilder() { + return getAdUnitsFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.AdUnit.getDefaultInstance()); + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit.Builder addAdUnitsBuilder(int index) { + return getAdUnitsFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.AdUnit.getDefaultInstance()); + } + + /** + * + * + *
+     * The `AdUnit` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public java.util.List getAdUnitsBuilderList() { + return getAdUnitsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + getAdUnitsFieldBuilder() { + if (adUnitsBuilder_ == null) { + adUnitsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder>( + adUnits_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); + adUnits_ = null; + } + return adUnitsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchCreateAdUnitsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchCreateAdUnitsResponse) + private static final com.google.ads.admanager.v1.BatchCreateAdUnitsResponse DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchCreateAdUnitsResponse(); + } + + public static com.google.ads.admanager.v1.BatchCreateAdUnitsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchCreateAdUnitsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateAdUnitsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsResponseOrBuilder.java new file mode 100644 index 000000000000..7e035d266e71 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateAdUnitsResponseOrBuilder.java @@ -0,0 +1,81 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchCreateAdUnitsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchCreateAdUnitsResponse) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + java.util.List getAdUnitsList(); + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + com.google.ads.admanager.v1.AdUnit getAdUnits(int index); + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + int getAdUnitsCount(); + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + java.util.List getAdUnitsOrBuilderList(); + + /** + * + * + *
+   * The `AdUnit` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitsOrBuilder(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequest.java index 27482347763a..76dbc542daa6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequestOrBuilder.java index a0d3ca6099e8..b6afa6f48278 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponse.java index 1b59374f9bc7..0622e3b6691e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponseOrBuilder.java index 168ff3fc7736..8777334c004b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateContactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequest.java index 700aa2357162..32f0014e7d89 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequestOrBuilder.java index 5809cbd32d3a..014dbf340203 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponse.java index 320f526d1db0..d28282676535 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponseOrBuilder.java index 56333b51a48c..6bedc8f2f005 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomFieldsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysRequest.java new file mode 100644 index 000000000000..cfff46a56435 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysRequest.java @@ -0,0 +1,1286 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchCreateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest} + */ +public final class BatchCreateCustomTargetingKeysRequest + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) + BatchCreateCustomTargetingKeysRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchCreateCustomTargetingKeysRequest.newBuilder() to construct. + private BatchCreateCustomTargetingKeysRequest( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchCreateCustomTargetingKeysRequest() { + parent_ = ""; + requests_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchCreateCustomTargetingKeysRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REQUESTS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private java.util.List requests_; + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getRequestsList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List< + ? extends com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder> + getRequestsOrBuilderList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public int getRequestsCount() { + return requests_.size(); + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest getRequests(int index) { + return requests_.get(index); + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder getRequestsOrBuilder( + int index) { + return requests_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + output.writeMessage(2, requests_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, requests_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest other = + (com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getRequestsList().equals(other.getRequestsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getRequestsCount() > 0) { + hash = (37 * hash) + REQUESTS_FIELD_NUMBER; + hash = (53 * hash) + getRequestsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchCreateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + } else { + requests_ = null; + requestsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest build() { + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest buildPartial() { + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest result = + new com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest result) { + if (requestsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + requests_ = java.util.Collections.unmodifiableList(requests_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.requests_ = requests_; + } else { + result.requests_ = requestsBuilder_.build(); + } + } + + private void buildPartial0( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest other) { + if (other + == com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (requestsBuilder_ == null) { + if (!other.requests_.isEmpty()) { + if (requests_.isEmpty()) { + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureRequestsIsMutable(); + requests_.addAll(other.requests_); + } + onChanged(); + } + } else { + if (!other.requests_.isEmpty()) { + if (requestsBuilder_.isEmpty()) { + requestsBuilder_.dispose(); + requestsBuilder_ = null; + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + requestsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getRequestsFieldBuilder() + : null; + } else { + requestsBuilder_.addAllMessages(other.requests_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest m = + input.readMessage( + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.parser(), + extensionRegistry); + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(m); + } else { + requestsBuilder_.addMessage(m); + } + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be created.
+     * Format: `networks/{network_code}`
+     * The parent field in the CreateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.util.List requests_ = + java.util.Collections.emptyList(); + + private void ensureRequestsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + requests_ = + new java.util.ArrayList( + requests_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder> + requestsBuilder_; + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsList() { + if (requestsBuilder_ == null) { + return java.util.Collections.unmodifiableList(requests_); + } else { + return requestsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public int getRequestsCount() { + if (requestsBuilder_ == null) { + return requests_.size(); + } else { + return requestsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest getRequests(int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests( + int index, com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.set(index, value); + onChanged(); + } else { + requestsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests( + int index, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.set(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests(com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(value); + onChanged(); + } else { + requestsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + int index, com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(index, value); + onChanged(); + } else { + requestsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + int index, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addAllRequests( + java.lang.Iterable + values) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, requests_); + onChanged(); + } else { + requestsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearRequests() { + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + requestsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder removeRequests(int index) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.remove(index); + onChanged(); + } else { + requestsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder getRequestsBuilder( + int index) { + return getRequestsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder + getRequestsOrBuilder(int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List< + ? extends com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder> + getRequestsOrBuilderList() { + if (requestsBuilder_ != null) { + return requestsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(requests_); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder + addRequestsBuilder() { + return getRequestsFieldBuilder() + .addBuilder( + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder addRequestsBuilder( + int index) { + return getRequestsFieldBuilder() + .addBuilder( + index, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to create.
+     * A maximum of 100 objects can be created in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsBuilderList() { + return getRequestsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder> + getRequestsFieldBuilder() { + if (requestsBuilder_ == null) { + requestsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder>( + requests_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); + requests_ = null; + } + return requestsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) + private static final com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest(); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchCreateCustomTargetingKeysRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysRequestOrBuilder.java new file mode 100644 index 000000000000..93e4c69eb336 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysRequestOrBuilder.java @@ -0,0 +1,134 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchCreateCustomTargetingKeysRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be created.
+   * Format: `networks/{network_code}`
+   * The parent field in the CreateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List getRequestsList(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest getRequests(int index); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + int getRequestsCount(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getRequestsOrBuilderList(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to create.
+   * A maximum of 100 objects can be created in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CreateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder getRequestsOrBuilder( + int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysResponse.java new file mode 100644 index 000000000000..b9d32ef9267c --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysResponse.java @@ -0,0 +1,989 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchCreateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse} + */ +public final class BatchCreateCustomTargetingKeysResponse + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) + BatchCreateCustomTargetingKeysResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchCreateCustomTargetingKeysResponse.newBuilder() to construct. + private BatchCreateCustomTargetingKeysResponse( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchCreateCustomTargetingKeysResponse() { + customTargetingKeys_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchCreateCustomTargetingKeysResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse.Builder.class); + } + + public static final int CUSTOM_TARGETING_KEYS_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private java.util.List customTargetingKeys_; + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public java.util.List + getCustomTargetingKeysList() { + return customTargetingKeys_; + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public java.util.List + getCustomTargetingKeysOrBuilderList() { + return customTargetingKeys_; + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public int getCustomTargetingKeysCount() { + return customTargetingKeys_.size(); + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKeys(int index) { + return customTargetingKeys_.get(index); + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeysOrBuilder( + int index) { + return customTargetingKeys_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < customTargetingKeys_.size(); i++) { + output.writeMessage(1, customTargetingKeys_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < customTargetingKeys_.size(); i++) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(1, customTargetingKeys_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse other = + (com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) obj; + + if (!getCustomTargetingKeysList().equals(other.getCustomTargetingKeysList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getCustomTargetingKeysCount() > 0) { + hash = (37 * hash) + CUSTOM_TARGETING_KEYS_FIELD_NUMBER; + hash = (53 * hash) + getCustomTargetingKeysList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchCreateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (customTargetingKeysBuilder_ == null) { + customTargetingKeys_ = java.util.Collections.emptyList(); + } else { + customTargetingKeys_ = null; + customTargetingKeysBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse build() { + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse buildPartial() { + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse result = + new com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse result) { + if (customTargetingKeysBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + customTargetingKeys_ = java.util.Collections.unmodifiableList(customTargetingKeys_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.customTargetingKeys_ = customTargetingKeys_; + } else { + result.customTargetingKeys_ = customTargetingKeysBuilder_.build(); + } + } + + private void buildPartial0( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) { + return mergeFrom( + (com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse other) { + if (other + == com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + .getDefaultInstance()) return this; + if (customTargetingKeysBuilder_ == null) { + if (!other.customTargetingKeys_.isEmpty()) { + if (customTargetingKeys_.isEmpty()) { + customTargetingKeys_ = other.customTargetingKeys_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.addAll(other.customTargetingKeys_); + } + onChanged(); + } + } else { + if (!other.customTargetingKeys_.isEmpty()) { + if (customTargetingKeysBuilder_.isEmpty()) { + customTargetingKeysBuilder_.dispose(); + customTargetingKeysBuilder_ = null; + customTargetingKeys_ = other.customTargetingKeys_; + bitField0_ = (bitField0_ & ~0x00000001); + customTargetingKeysBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getCustomTargetingKeysFieldBuilder() + : null; + } else { + customTargetingKeysBuilder_.addAllMessages(other.customTargetingKeys_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + com.google.ads.admanager.v1.CustomTargetingKey m = + input.readMessage( + com.google.ads.admanager.v1.CustomTargetingKey.parser(), extensionRegistry); + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(m); + } else { + customTargetingKeysBuilder_.addMessage(m); + } + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List customTargetingKeys_ = + java.util.Collections.emptyList(); + + private void ensureCustomTargetingKeysIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + customTargetingKeys_ = + new java.util.ArrayList( + customTargetingKeys_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + customTargetingKeysBuilder_; + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public java.util.List + getCustomTargetingKeysList() { + if (customTargetingKeysBuilder_ == null) { + return java.util.Collections.unmodifiableList(customTargetingKeys_); + } else { + return customTargetingKeysBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public int getCustomTargetingKeysCount() { + if (customTargetingKeysBuilder_ == null) { + return customTargetingKeys_.size(); + } else { + return customTargetingKeysBuilder_.getCount(); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKeys(int index) { + if (customTargetingKeysBuilder_ == null) { + return customTargetingKeys_.get(index); + } else { + return customTargetingKeysBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder setCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeysBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.set(index, value); + onChanged(); + } else { + customTargetingKeysBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder setCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.set(index, builderForValue.build()); + onChanged(); + } else { + customTargetingKeysBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys(com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeysBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(value); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeysBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(index, value); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys( + com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(builderForValue.build()); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(index, builderForValue.build()); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addAllCustomTargetingKeys( + java.lang.Iterable values) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, customTargetingKeys_); + onChanged(); + } else { + customTargetingKeysBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder clearCustomTargetingKeys() { + if (customTargetingKeysBuilder_ == null) { + customTargetingKeys_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + customTargetingKeysBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder removeCustomTargetingKeys(int index) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.remove(index); + onChanged(); + } else { + customTargetingKeysBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder getCustomTargetingKeysBuilder( + int index) { + return getCustomTargetingKeysFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeysOrBuilder( + int index) { + if (customTargetingKeysBuilder_ == null) { + return customTargetingKeys_.get(index); + } else { + return customTargetingKeysBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public java.util.List + getCustomTargetingKeysOrBuilderList() { + if (customTargetingKeysBuilder_ != null) { + return customTargetingKeysBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(customTargetingKeys_); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder addCustomTargetingKeysBuilder() { + return getCustomTargetingKeysFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance()); + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder addCustomTargetingKeysBuilder( + int index) { + return getCustomTargetingKeysFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance()); + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects created.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public java.util.List + getCustomTargetingKeysBuilderList() { + return getCustomTargetingKeysFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + getCustomTargetingKeysFieldBuilder() { + if (customTargetingKeysBuilder_ == null) { + customTargetingKeysBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder>( + customTargetingKeys_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + customTargetingKeys_ = null; + } + return customTargetingKeysBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) + private static final com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse(); + } + + public static com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchCreateCustomTargetingKeysResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysResponseOrBuilder.java new file mode 100644 index 000000000000..edc62864f1ec --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateCustomTargetingKeysResponseOrBuilder.java @@ -0,0 +1,83 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchCreateCustomTargetingKeysResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + java.util.List getCustomTargetingKeysList(); + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKeys(int index); + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + int getCustomTargetingKeysCount(); + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + java.util.List + getCustomTargetingKeysOrBuilderList(); + + /** + * + * + *
+   * The `CustomTargetingKey` objects created.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeysOrBuilder( + int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequest.java index ce16bf0ef084..82a292c67ea6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequestOrBuilder.java index dd872dab70bd..210ead479c32 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponse.java index 3ea38608d8c6..e326bfd74305 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponseOrBuilder.java index 90a6449dd66a..f2dde7071d4b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateEntitySignalsMappingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequest.java index b48894180c11..870ce35c19ae 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequestOrBuilder.java index c25a1e2fa1ba..f5c0003e5eb6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponse.java index 590bc28932d6..2e41f3267bb0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponseOrBuilder.java index 9b52d90bb7ab..84d287d10c53 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreatePlacementsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequest.java index aef8794c40d4..11ed388586eb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequestOrBuilder.java index 73fb390868b4..a121e05aabda 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponse.java index b7b9996b8750..bb7cab92a7fd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponseOrBuilder.java index c10d432d4786..3574c0c6eb6a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateSitesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequest.java index 02a67527e02e..2146326b1d5d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequestOrBuilder.java index 4908a09936e4..14a77108f10b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponse.java index d71904125b9f..0c9767d6540b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponseOrBuilder.java index a515797a0e57..4a93426e0e17 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchCreateTeamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsRequest.java new file mode 100644 index 000000000000..339a2f8e0513 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsRequest.java @@ -0,0 +1,978 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchDeactivateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateAdUnitsRequest} + */ +public final class BatchDeactivateAdUnitsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) + BatchDeactivateAdUnitsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchDeactivateAdUnitsRequest.newBuilder() to construct. + private BatchDeactivateAdUnitsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchDeactivateAdUnitsRequest() { + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchDeactivateAdUnitsRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int NAMES_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + return names_; + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < names_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, names_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + { + int dataSize = 0; + for (int i = 0; i < names_.size(); i++) { + dataSize += computeStringSizeNoTag(names_.getRaw(i)); + } + size += dataSize; + size += 1 * getNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest other = + (com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getNamesList().equals(other.getNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getNamesCount() > 0) { + hash = (37 * hash) + NAMES_FIELD_NUMBER; + hash = (53 * hash) + getNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchDeactivateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateAdUnitsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest build() { + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest buildPartial() { + com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest result = + new com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + names_.makeImmutable(); + result.names_ = names_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest other) { + if (other == com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.names_.isEmpty()) { + if (names_.isEmpty()) { + names_ = other.names_; + bitField0_ |= 0x00000002; + } else { + ensureNamesIsMutable(); + names_.addAll(other.names_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + ensureNamesIsMutable(); + names_.add(s); + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + private void ensureNamesIsMutable() { + if (!names_.isModifiable()) { + names_ = new com.google.protobuf.LazyStringArrayList(names_); + } + bitField0_ |= 0x00000002; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + names_.makeImmutable(); + return names_; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index to set the value at. + * @param value The names to set. + * @return This builder for chaining. + */ + public Builder setNames(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.set(index, value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The names to add. + * @return This builder for chaining. + */ + public Builder addNames(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param values The names to add. + * @return This builder for chaining. + */ + public Builder addAllNames(java.lang.Iterable values) { + ensureNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, names_); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearNames() { + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + ; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `AdUnit`s to deactivate.
+     * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes of the names to add. + * @return This builder for chaining. + */ + public Builder addNamesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) + private static final com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest(); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchDeactivateAdUnitsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsRequestOrBuilder.java new file mode 100644 index 000000000000..69351616dc5f --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsRequestOrBuilder.java @@ -0,0 +1,122 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchDeactivateAdUnitsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchDeactivateAdUnitsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + java.util.List getNamesList(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + int getNamesCount(); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + java.lang.String getNames(int index); + + /** + * + * + *
+   * Required. The resource names of the `AdUnit`s to deactivate.
+   * Format: `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + com.google.protobuf.ByteString getNamesBytes(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsResponse.java new file mode 100644 index 000000000000..02c4dbd9388c --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsResponse.java @@ -0,0 +1,436 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchDeactivateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateAdUnitsResponse} + */ +public final class BatchDeactivateAdUnitsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) + BatchDeactivateAdUnitsResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchDeactivateAdUnitsResponse.newBuilder() to construct. + private BatchDeactivateAdUnitsResponse( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchDeactivateAdUnitsResponse() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchDeactivateAdUnitsResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.Builder.class); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse other = + (com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchDeactivateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateAdUnitsResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateAdUnitsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse build() { + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse buildPartial() { + com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse result = + new com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) { + return mergeFrom((com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse other) { + if (other == com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse.getDefaultInstance()) + return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) + private static final com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse(); + } + + public static com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchDeactivateAdUnitsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsResponseOrBuilder.java new file mode 100644 index 000000000000..b26d4c0ba82e --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateAdUnitsResponseOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchDeactivateAdUnitsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchDeactivateAdUnitsResponse) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequest.java index 990c5d63bd59..b0026c1ef1c8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequestOrBuilder.java index a143b6dfd2bd..9d0428c17247 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponse.java index acf99d9adb6f..041bc2e5db1d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponseOrBuilder.java index a08d3f51f62a..1e9f77a7c1a4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomFieldsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysRequest.java new file mode 100644 index 000000000000..595e8cee122f --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysRequest.java @@ -0,0 +1,1006 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request message for `BatchDeactivateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest} + */ +public final class BatchDeactivateCustomTargetingKeysRequest + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) + BatchDeactivateCustomTargetingKeysRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchDeactivateCustomTargetingKeysRequest.newBuilder() to construct. + private BatchDeactivateCustomTargetingKeysRequest( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchDeactivateCustomTargetingKeysRequest() { + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchDeactivateCustomTargetingKeysRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int NAMES_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + return names_; + } + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < names_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, names_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + { + int dataSize = 0; + for (int i = 0; i < names_.size(); i++) { + dataSize += computeStringSizeNoTag(names_.getRaw(i)); + } + size += dataSize; + size += 1 * getNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest other = + (com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getNamesList().equals(other.getNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getNamesCount() > 0) { + hash = (37 * hash) + NAMES_FIELD_NUMBER; + hash = (53 * hash) + getNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request message for `BatchDeactivateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest build() { + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest buildPartial() { + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest result = + new com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + names_.makeImmutable(); + result.names_ = names_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) { + return mergeFrom( + (com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest other) { + if (other + == com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + .getDefaultInstance()) return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.names_.isEmpty()) { + if (names_.isEmpty()) { + names_ = other.names_; + bitField0_ |= 0x00000002; + } else { + ensureNamesIsMutable(); + names_.addAll(other.names_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + ensureNamesIsMutable(); + names_.add(s); + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList names_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + private void ensureNamesIsMutable() { + if (!names_.isModifiable()) { + names_ = new com.google.protobuf.LazyStringArrayList(names_); + } + bitField0_ |= 0x00000002; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + public com.google.protobuf.ProtocolStringList getNamesList() { + names_.makeImmutable(); + return names_; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + public int getNamesCount() { + return names_.size(); + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + public java.lang.String getNames(int index) { + return names_.get(index); + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + public com.google.protobuf.ByteString getNamesBytes(int index) { + return names_.getByteString(index); + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index to set the value at. + * @param value The names to set. + * @return This builder for chaining. + */ + public Builder setNames(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.set(index, value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The names to add. + * @return This builder for chaining. + */ + public Builder addNames(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param values The names to add. + * @return This builder for chaining. + */ + public Builder addAllNames(java.lang.Iterable values) { + ensureNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, names_); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearNames() { + names_ = com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + ; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+     * Format:
+     * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+     * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes of the names to add. + * @return This builder for chaining. + */ + public Builder addNamesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureNamesIsMutable(); + names_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) + private static final com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest(); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchDeactivateCustomTargetingKeysRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysRequestOrBuilder.java new file mode 100644 index 000000000000..631cf0a61509 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysRequestOrBuilder.java @@ -0,0 +1,126 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchDeactivateCustomTargetingKeysRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return A list containing the names. + */ + java.util.List getNamesList(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The count of names. + */ + int getNamesCount(); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the element to return. + * @return The names at the given index. + */ + java.lang.String getNames(int index); + + /** + * + * + *
+   * Required. The resource names of the `CustomTargetingKey`s to deactivate.
+   * Format:
+   * `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
+   * 
+ * + * + * repeated string names = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param index The index of the value to return. + * @return The bytes of the names at the given index. + */ + com.google.protobuf.ByteString getNamesBytes(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysResponse.java new file mode 100644 index 000000000000..7e538969b861 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysResponse.java @@ -0,0 +1,450 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchDeactivateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse} + */ +public final class BatchDeactivateCustomTargetingKeysResponse + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) + BatchDeactivateCustomTargetingKeysResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchDeactivateCustomTargetingKeysResponse.newBuilder() to construct. + private BatchDeactivateCustomTargetingKeysResponse( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchDeactivateCustomTargetingKeysResponse() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchDeactivateCustomTargetingKeysResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse.Builder.class); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse other = + (com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchDeactivateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse build() { + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse result = + buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse buildPartial() { + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse result = + new com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) { + return mergeFrom( + (com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse other) { + if (other + == com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + .getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) + private static final com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse(); + } + + public static com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchDeactivateCustomTargetingKeysResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysResponseOrBuilder.java new file mode 100644 index 000000000000..3bee2344470b --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateCustomTargetingKeysResponseOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchDeactivateCustomTargetingKeysResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequest.java index f384ee615786..1566811b8e2b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequestOrBuilder.java index 8b29d9e42fad..b8be22e5356f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponse.java index 29d985e6140a..483a5a94cada 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponseOrBuilder.java index d5138dd36119..4a518812d3af 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivatePlacementsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequest.java index 7d765a1963d1..94589c3c8ccc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequestOrBuilder.java index d12d0fb68e2f..4ed6ab8ad278 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponse.java index f7cdcc3992e2..2e5ff45fb04f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponseOrBuilder.java index 7912360bcc56..a2663eb65223 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateSitesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequest.java index c9fe30d6af1f..c5f8c1f5a0c1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequestOrBuilder.java index 55811817ab43..759c884c49ca 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponse.java index e92315c9b944..dd865cd5451b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponseOrBuilder.java index 71a6359d1970..8d0b644d8ae8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchDeactivateTeamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequest.java index a62ac3befb7c..ab454f73ad1a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequestOrBuilder.java index a2c6410bb59b..f6c1a25f8a34 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponse.java index 0efabf64d682..052b22fabed5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponseOrBuilder.java index b55664d2b624..d4076e000dff 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchSubmitSitesForApprovalResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsRequest.java new file mode 100644 index 000000000000..eac80760c7d0 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsRequest.java @@ -0,0 +1,1258 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchUpdateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateAdUnitsRequest} + */ +public final class BatchUpdateAdUnitsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchUpdateAdUnitsRequest) + BatchUpdateAdUnitsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchUpdateAdUnitsRequest.newBuilder() to construct. + private BatchUpdateAdUnitsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchUpdateAdUnitsRequest() { + parent_ = ""; + requests_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchUpdateAdUnitsRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REQUESTS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private java.util.List requests_; + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List getRequestsList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getRequestsOrBuilderList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public int getRequestsCount() { + return requests_.size(); + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.UpdateAdUnitRequest getRequests(int index) { + return requests_.get(index); + } + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder getRequestsOrBuilder(int index) { + return requests_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + output.writeMessage(2, requests_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, requests_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest other = + (com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getRequestsList().equals(other.getRequestsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getRequestsCount() > 0) { + hash = (37 * hash) + REQUESTS_FIELD_NUMBER; + hash = (53 * hash) + getRequestsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchUpdateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateAdUnitsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchUpdateAdUnitsRequest) + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.class, + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + } else { + requests_ = null; + requestsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest build() { + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest buildPartial() { + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest result = + new com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest result) { + if (requestsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + requests_ = java.util.Collections.unmodifiableList(requests_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.requests_ = requests_; + } else { + result.requests_ = requestsBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest other) { + if (other == com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (requestsBuilder_ == null) { + if (!other.requests_.isEmpty()) { + if (requests_.isEmpty()) { + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureRequestsIsMutable(); + requests_.addAll(other.requests_); + } + onChanged(); + } + } else { + if (!other.requests_.isEmpty()) { + if (requestsBuilder_.isEmpty()) { + requestsBuilder_.dispose(); + requestsBuilder_ = null; + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + requestsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getRequestsFieldBuilder() + : null; + } else { + requestsBuilder_.addAllMessages(other.requests_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + com.google.ads.admanager.v1.UpdateAdUnitRequest m = + input.readMessage( + com.google.ads.admanager.v1.UpdateAdUnitRequest.parser(), + extensionRegistry); + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(m); + } else { + requestsBuilder_.addMessage(m); + } + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `AdUnits` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateAdUnitRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.util.List requests_ = + java.util.Collections.emptyList(); + + private void ensureRequestsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + requests_ = + new java.util.ArrayList(requests_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.UpdateAdUnitRequest, + com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder, + com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder> + requestsBuilder_; + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List getRequestsList() { + if (requestsBuilder_ == null) { + return java.util.Collections.unmodifiableList(requests_); + } else { + return requestsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public int getRequestsCount() { + if (requestsBuilder_ == null) { + return requests_.size(); + } else { + return requestsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateAdUnitRequest getRequests(int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests(int index, com.google.ads.admanager.v1.UpdateAdUnitRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.set(index, value); + onChanged(); + } else { + requestsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests( + int index, com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.set(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests(com.google.ads.admanager.v1.UpdateAdUnitRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(value); + onChanged(); + } else { + requestsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests(int index, com.google.ads.admanager.v1.UpdateAdUnitRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(index, value); + onChanged(); + } else { + requestsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + int index, com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addAllRequests( + java.lang.Iterable values) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, requests_); + onChanged(); + } else { + requestsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearRequests() { + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + requestsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder removeRequests(int index) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.remove(index); + onChanged(); + } else { + requestsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder getRequestsBuilder(int index) { + return getRequestsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder getRequestsOrBuilder( + int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsOrBuilderList() { + if (requestsBuilder_ != null) { + return requestsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(requests_); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder addRequestsBuilder() { + return getRequestsFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.UpdateAdUnitRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder addRequestsBuilder(int index) { + return getRequestsFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.UpdateAdUnitRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `AdUnit` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsBuilderList() { + return getRequestsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.UpdateAdUnitRequest, + com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder, + com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder> + getRequestsFieldBuilder() { + if (requestsBuilder_ == null) { + requestsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.UpdateAdUnitRequest, + com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder, + com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder>( + requests_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); + requests_ = null; + } + return requestsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchUpdateAdUnitsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchUpdateAdUnitsRequest) + private static final com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest(); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchUpdateAdUnitsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsRequestOrBuilder.java new file mode 100644 index 000000000000..658772b60e7d --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsRequestOrBuilder.java @@ -0,0 +1,133 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchUpdateAdUnitsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchUpdateAdUnitsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent resource where `AdUnits` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateAdUnitRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List getRequestsList(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.UpdateAdUnitRequest getRequests(int index); + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + int getRequestsCount(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getRequestsOrBuilderList(); + + /** + * + * + *
+   * Required. The `AdUnit` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateAdUnitRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder getRequestsOrBuilder(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsResponse.java new file mode 100644 index 000000000000..0765c3cd6191 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsResponse.java @@ -0,0 +1,960 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchUpdateAdUnits` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateAdUnitsResponse} + */ +public final class BatchUpdateAdUnitsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchUpdateAdUnitsResponse) + BatchUpdateAdUnitsResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchUpdateAdUnitsResponse.newBuilder() to construct. + private BatchUpdateAdUnitsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchUpdateAdUnitsResponse() { + adUnits_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchUpdateAdUnitsResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.Builder.class); + } + + public static final int AD_UNITS_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private java.util.List adUnits_; + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public java.util.List getAdUnitsList() { + return adUnits_; + } + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public java.util.List + getAdUnitsOrBuilderList() { + return adUnits_; + } + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public int getAdUnitsCount() { + return adUnits_.size(); + } + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnit getAdUnits(int index) { + return adUnits_.get(index); + } + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitsOrBuilder(int index) { + return adUnits_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < adUnits_.size(); i++) { + output.writeMessage(1, adUnits_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < adUnits_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, adUnits_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse other = + (com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse) obj; + + if (!getAdUnitsList().equals(other.getAdUnitsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getAdUnitsCount() > 0) { + hash = (37 * hash) + AD_UNITS_FIELD_NUMBER; + hash = (53 * hash) + getAdUnitsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchUpdateAdUnits` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateAdUnitsResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchUpdateAdUnitsResponse) + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.class, + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (adUnitsBuilder_ == null) { + adUnits_ = java.util.Collections.emptyList(); + } else { + adUnits_ = null; + adUnitsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateAdUnitsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse build() { + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse buildPartial() { + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse result = + new com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse result) { + if (adUnitsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + adUnits_ = java.util.Collections.unmodifiableList(adUnits_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.adUnits_ = adUnits_; + } else { + result.adUnits_ = adUnitsBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse) { + return mergeFrom((com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse other) { + if (other == com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse.getDefaultInstance()) + return this; + if (adUnitsBuilder_ == null) { + if (!other.adUnits_.isEmpty()) { + if (adUnits_.isEmpty()) { + adUnits_ = other.adUnits_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureAdUnitsIsMutable(); + adUnits_.addAll(other.adUnits_); + } + onChanged(); + } + } else { + if (!other.adUnits_.isEmpty()) { + if (adUnitsBuilder_.isEmpty()) { + adUnitsBuilder_.dispose(); + adUnitsBuilder_ = null; + adUnits_ = other.adUnits_; + bitField0_ = (bitField0_ & ~0x00000001); + adUnitsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getAdUnitsFieldBuilder() + : null; + } else { + adUnitsBuilder_.addAllMessages(other.adUnits_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + com.google.ads.admanager.v1.AdUnit m = + input.readMessage( + com.google.ads.admanager.v1.AdUnit.parser(), extensionRegistry); + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.add(m); + } else { + adUnitsBuilder_.addMessage(m); + } + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List adUnits_ = + java.util.Collections.emptyList(); + + private void ensureAdUnitsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + adUnits_ = new java.util.ArrayList(adUnits_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + adUnitsBuilder_; + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public java.util.List getAdUnitsList() { + if (adUnitsBuilder_ == null) { + return java.util.Collections.unmodifiableList(adUnits_); + } else { + return adUnitsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public int getAdUnitsCount() { + if (adUnitsBuilder_ == null) { + return adUnits_.size(); + } else { + return adUnitsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit getAdUnits(int index) { + if (adUnitsBuilder_ == null) { + return adUnits_.get(index); + } else { + return adUnitsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder setAdUnits(int index, com.google.ads.admanager.v1.AdUnit value) { + if (adUnitsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAdUnitsIsMutable(); + adUnits_.set(index, value); + onChanged(); + } else { + adUnitsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder setAdUnits( + int index, com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.set(index, builderForValue.build()); + onChanged(); + } else { + adUnitsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits(com.google.ads.admanager.v1.AdUnit value) { + if (adUnitsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAdUnitsIsMutable(); + adUnits_.add(value); + onChanged(); + } else { + adUnitsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits(int index, com.google.ads.admanager.v1.AdUnit value) { + if (adUnitsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAdUnitsIsMutable(); + adUnits_.add(index, value); + onChanged(); + } else { + adUnitsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits(com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.add(builderForValue.build()); + onChanged(); + } else { + adUnitsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAdUnits( + int index, com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.add(index, builderForValue.build()); + onChanged(); + } else { + adUnitsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder addAllAdUnits( + java.lang.Iterable values) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, adUnits_); + onChanged(); + } else { + adUnitsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder clearAdUnits() { + if (adUnitsBuilder_ == null) { + adUnits_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + adUnitsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public Builder removeAdUnits(int index) { + if (adUnitsBuilder_ == null) { + ensureAdUnitsIsMutable(); + adUnits_.remove(index); + onChanged(); + } else { + adUnitsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit.Builder getAdUnitsBuilder(int index) { + return getAdUnitsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitsOrBuilder(int index) { + if (adUnitsBuilder_ == null) { + return adUnits_.get(index); + } else { + return adUnitsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public java.util.List + getAdUnitsOrBuilderList() { + if (adUnitsBuilder_ != null) { + return adUnitsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(adUnits_); + } + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit.Builder addAdUnitsBuilder() { + return getAdUnitsFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.AdUnit.getDefaultInstance()); + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public com.google.ads.admanager.v1.AdUnit.Builder addAdUnitsBuilder(int index) { + return getAdUnitsFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.AdUnit.getDefaultInstance()); + } + + /** + * + * + *
+     * The `AdUnit` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + public java.util.List getAdUnitsBuilderList() { + return getAdUnitsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + getAdUnitsFieldBuilder() { + if (adUnitsBuilder_ == null) { + adUnitsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder>( + adUnits_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); + adUnits_ = null; + } + return adUnitsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchUpdateAdUnitsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchUpdateAdUnitsResponse) + private static final com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse(); + } + + public static com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchUpdateAdUnitsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsResponseOrBuilder.java new file mode 100644 index 000000000000..bab820083532 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateAdUnitsResponseOrBuilder.java @@ -0,0 +1,81 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchUpdateAdUnitsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchUpdateAdUnitsResponse) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + java.util.List getAdUnitsList(); + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + com.google.ads.admanager.v1.AdUnit getAdUnits(int index); + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + int getAdUnitsCount(); + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + java.util.List getAdUnitsOrBuilderList(); + + /** + * + * + *
+   * The `AdUnit` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.AdUnit ad_units = 1; + */ + com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitsOrBuilder(int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequest.java index 8ba986f4bf8a..aafa041ffdc0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequestOrBuilder.java index bddb9d500799..506e9929bc8e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponse.java index bbf0b0d3aef5..773f2a21b2b0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponseOrBuilder.java index de0e32ed08f9..df1f302b757e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateContactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequest.java index 5f804340ff2c..559329917bb4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequestOrBuilder.java index 9cdd8e754991..01acd792c3f2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponse.java index 5d5f8b40ced9..c80f2ec59cfb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponseOrBuilder.java index 4d4f423dcf5d..0f0f9bec0d3a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomFieldsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysRequest.java new file mode 100644 index 000000000000..c387d3161c8d --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysRequest.java @@ -0,0 +1,1286 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `BatchUpdateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest} + */ +public final class BatchUpdateCustomTargetingKeysRequest + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) + BatchUpdateCustomTargetingKeysRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchUpdateCustomTargetingKeysRequest.newBuilder() to construct. + private BatchUpdateCustomTargetingKeysRequest( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchUpdateCustomTargetingKeysRequest() { + parent_ = ""; + requests_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchUpdateCustomTargetingKeysRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REQUESTS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private java.util.List requests_; + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getRequestsList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List< + ? extends com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder> + getRequestsOrBuilderList() { + return requests_; + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public int getRequestsCount() { + return requests_.size(); + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest getRequests(int index) { + return requests_.get(index); + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder getRequestsOrBuilder( + int index) { + return requests_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + output.writeMessage(2, requests_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + for (int i = 0; i < requests_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, requests_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest other = + (com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (!getRequestsList().equals(other.getRequestsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (getRequestsCount() > 0) { + hash = (37 * hash) + REQUESTS_FIELD_NUMBER; + hash = (53 * hash) + getRequestsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `BatchUpdateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.class, + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + } else { + requests_ = null; + requestsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest build() { + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest buildPartial() { + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest result = + new com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest result) { + if (requestsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + requests_ = java.util.Collections.unmodifiableList(requests_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.requests_ = requests_; + } else { + result.requests_ = requestsBuilder_.build(); + } + } + + private void buildPartial0( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) { + return mergeFrom((com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest other) { + if (other + == com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (requestsBuilder_ == null) { + if (!other.requests_.isEmpty()) { + if (requests_.isEmpty()) { + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureRequestsIsMutable(); + requests_.addAll(other.requests_); + } + onChanged(); + } + } else { + if (!other.requests_.isEmpty()) { + if (requestsBuilder_.isEmpty()) { + requestsBuilder_.dispose(); + requestsBuilder_ = null; + requests_ = other.requests_; + bitField0_ = (bitField0_ & ~0x00000002); + requestsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getRequestsFieldBuilder() + : null; + } else { + requestsBuilder_.addAllMessages(other.requests_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest m = + input.readMessage( + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.parser(), + extensionRegistry); + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(m); + } else { + requestsBuilder_.addMessage(m); + } + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where `CustomTargetingKeys` will be updated.
+     * Format: `networks/{network_code}`
+     * The parent field in the UpdateCustomTargetingKeyRequest must match this
+     * field.
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.util.List requests_ = + java.util.Collections.emptyList(); + + private void ensureRequestsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + requests_ = + new java.util.ArrayList( + requests_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder> + requestsBuilder_; + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsList() { + if (requestsBuilder_ == null) { + return java.util.Collections.unmodifiableList(requests_); + } else { + return requestsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public int getRequestsCount() { + if (requestsBuilder_ == null) { + return requests_.size(); + } else { + return requestsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest getRequests(int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests( + int index, com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.set(index, value); + onChanged(); + } else { + requestsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setRequests( + int index, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.set(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests(com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(value); + onChanged(); + } else { + requestsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + int index, com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest value) { + if (requestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRequestsIsMutable(); + requests_.add(index, value); + onChanged(); + } else { + requestsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addRequests( + int index, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder builderForValue) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.add(index, builderForValue.build()); + onChanged(); + } else { + requestsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addAllRequests( + java.lang.Iterable + values) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, requests_); + onChanged(); + } else { + requestsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearRequests() { + if (requestsBuilder_ == null) { + requests_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + requestsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder removeRequests(int index) { + if (requestsBuilder_ == null) { + ensureRequestsIsMutable(); + requests_.remove(index); + onChanged(); + } else { + requestsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder getRequestsBuilder( + int index) { + return getRequestsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder + getRequestsOrBuilder(int index) { + if (requestsBuilder_ == null) { + return requests_.get(index); + } else { + return requestsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List< + ? extends com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder> + getRequestsOrBuilderList() { + if (requestsBuilder_ != null) { + return requestsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(requests_); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder + addRequestsBuilder() { + return getRequestsFieldBuilder() + .addBuilder( + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder addRequestsBuilder( + int index) { + return getRequestsFieldBuilder() + .addBuilder( + index, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` objects to update.
+     * A maximum of 100 objects can be updated in a batch.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getRequestsBuilderList() { + return getRequestsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder> + getRequestsFieldBuilder() { + if (requestsBuilder_ == null) { + requestsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder>( + requests_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); + requests_ = null; + } + return requestsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) + private static final com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest(); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchUpdateCustomTargetingKeysRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysRequestOrBuilder.java new file mode 100644 index 000000000000..3e9ac3ce98e3 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysRequestOrBuilder.java @@ -0,0 +1,134 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchUpdateCustomTargetingKeysRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent resource where `CustomTargetingKeys` will be updated.
+   * Format: `networks/{network_code}`
+   * The parent field in the UpdateCustomTargetingKeyRequest must match this
+   * field.
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List getRequestsList(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest getRequests(int index); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + int getRequestsCount(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getRequestsOrBuilderList(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` objects to update.
+   * A maximum of 100 objects can be updated in a batch.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.UpdateCustomTargetingKeyRequest requests = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder getRequestsOrBuilder( + int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysResponse.java new file mode 100644 index 000000000000..e98af57e52c5 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysResponse.java @@ -0,0 +1,989 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `BatchUpdateCustomTargetingKeys` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse} + */ +public final class BatchUpdateCustomTargetingKeysResponse + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) + BatchUpdateCustomTargetingKeysResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use BatchUpdateCustomTargetingKeysResponse.newBuilder() to construct. + private BatchUpdateCustomTargetingKeysResponse( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BatchUpdateCustomTargetingKeysResponse() { + customTargetingKeys_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new BatchUpdateCustomTargetingKeysResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse.Builder.class); + } + + public static final int CUSTOM_TARGETING_KEYS_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private java.util.List customTargetingKeys_; + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public java.util.List + getCustomTargetingKeysList() { + return customTargetingKeys_; + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public java.util.List + getCustomTargetingKeysOrBuilderList() { + return customTargetingKeys_; + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public int getCustomTargetingKeysCount() { + return customTargetingKeys_.size(); + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKeys(int index) { + return customTargetingKeys_.get(index); + } + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeysOrBuilder( + int index) { + return customTargetingKeys_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < customTargetingKeys_.size(); i++) { + output.writeMessage(1, customTargetingKeys_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < customTargetingKeys_.size(); i++) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(1, customTargetingKeys_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse other = + (com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) obj; + + if (!getCustomTargetingKeysList().equals(other.getCustomTargetingKeysList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getCustomTargetingKeysCount() > 0) { + hash = (37 * hash) + CUSTOM_TARGETING_KEYS_FIELD_NUMBER; + hash = (53 * hash) + getCustomTargetingKeysList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `BatchUpdateCustomTargetingKeys` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse.class, + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse.Builder.class); + } + + // Construct using + // com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (customTargetingKeysBuilder_ == null) { + customTargetingKeys_ = java.util.Collections.emptyList(); + } else { + customTargetingKeys_ = null; + customTargetingKeysBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse build() { + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse buildPartial() { + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse result = + new com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse result) { + if (customTargetingKeysBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + customTargetingKeys_ = java.util.Collections.unmodifiableList(customTargetingKeys_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.customTargetingKeys_ = customTargetingKeys_; + } else { + result.customTargetingKeys_ = customTargetingKeysBuilder_.build(); + } + } + + private void buildPartial0( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) { + return mergeFrom( + (com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse other) { + if (other + == com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + .getDefaultInstance()) return this; + if (customTargetingKeysBuilder_ == null) { + if (!other.customTargetingKeys_.isEmpty()) { + if (customTargetingKeys_.isEmpty()) { + customTargetingKeys_ = other.customTargetingKeys_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.addAll(other.customTargetingKeys_); + } + onChanged(); + } + } else { + if (!other.customTargetingKeys_.isEmpty()) { + if (customTargetingKeysBuilder_.isEmpty()) { + customTargetingKeysBuilder_.dispose(); + customTargetingKeysBuilder_ = null; + customTargetingKeys_ = other.customTargetingKeys_; + bitField0_ = (bitField0_ & ~0x00000001); + customTargetingKeysBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getCustomTargetingKeysFieldBuilder() + : null; + } else { + customTargetingKeysBuilder_.addAllMessages(other.customTargetingKeys_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + com.google.ads.admanager.v1.CustomTargetingKey m = + input.readMessage( + com.google.ads.admanager.v1.CustomTargetingKey.parser(), extensionRegistry); + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(m); + } else { + customTargetingKeysBuilder_.addMessage(m); + } + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List customTargetingKeys_ = + java.util.Collections.emptyList(); + + private void ensureCustomTargetingKeysIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + customTargetingKeys_ = + new java.util.ArrayList( + customTargetingKeys_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + customTargetingKeysBuilder_; + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public java.util.List + getCustomTargetingKeysList() { + if (customTargetingKeysBuilder_ == null) { + return java.util.Collections.unmodifiableList(customTargetingKeys_); + } else { + return customTargetingKeysBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public int getCustomTargetingKeysCount() { + if (customTargetingKeysBuilder_ == null) { + return customTargetingKeys_.size(); + } else { + return customTargetingKeysBuilder_.getCount(); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKeys(int index) { + if (customTargetingKeysBuilder_ == null) { + return customTargetingKeys_.get(index); + } else { + return customTargetingKeysBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder setCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeysBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.set(index, value); + onChanged(); + } else { + customTargetingKeysBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder setCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.set(index, builderForValue.build()); + onChanged(); + } else { + customTargetingKeysBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys(com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeysBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(value); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeysBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(index, value); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys( + com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(builderForValue.build()); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addCustomTargetingKeys( + int index, com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.add(index, builderForValue.build()); + onChanged(); + } else { + customTargetingKeysBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder addAllCustomTargetingKeys( + java.lang.Iterable values) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, customTargetingKeys_); + onChanged(); + } else { + customTargetingKeysBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder clearCustomTargetingKeys() { + if (customTargetingKeysBuilder_ == null) { + customTargetingKeys_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + customTargetingKeysBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public Builder removeCustomTargetingKeys(int index) { + if (customTargetingKeysBuilder_ == null) { + ensureCustomTargetingKeysIsMutable(); + customTargetingKeys_.remove(index); + onChanged(); + } else { + customTargetingKeysBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder getCustomTargetingKeysBuilder( + int index) { + return getCustomTargetingKeysFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeysOrBuilder( + int index) { + if (customTargetingKeysBuilder_ == null) { + return customTargetingKeys_.get(index); + } else { + return customTargetingKeysBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public java.util.List + getCustomTargetingKeysOrBuilderList() { + if (customTargetingKeysBuilder_ != null) { + return customTargetingKeysBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(customTargetingKeys_); + } + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder addCustomTargetingKeysBuilder() { + return getCustomTargetingKeysFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance()); + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder addCustomTargetingKeysBuilder( + int index) { + return getCustomTargetingKeysFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance()); + } + + /** + * + * + *
+     * The `CustomTargetingKey` objects updated.
+     * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + public java.util.List + getCustomTargetingKeysBuilderList() { + return getCustomTargetingKeysFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + getCustomTargetingKeysFieldBuilder() { + if (customTargetingKeysBuilder_ == null) { + customTargetingKeysBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder>( + customTargetingKeys_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + customTargetingKeys_ = null; + } + return customTargetingKeysBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) + private static final com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse(); + } + + public static com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BatchUpdateCustomTargetingKeysResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysResponseOrBuilder.java new file mode 100644 index 000000000000..fe25a74cf009 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateCustomTargetingKeysResponseOrBuilder.java @@ -0,0 +1,83 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface BatchUpdateCustomTargetingKeysResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + java.util.List getCustomTargetingKeysList(); + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKeys(int index); + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + int getCustomTargetingKeysCount(); + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + java.util.List + getCustomTargetingKeysOrBuilderList(); + + /** + * + * + *
+   * The `CustomTargetingKey` objects updated.
+   * 
+ * + * repeated .google.ads.admanager.v1.CustomTargetingKey custom_targeting_keys = 1; + */ + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeysOrBuilder( + int index); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequest.java index bc9b3b228123..b9c91b34d755 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequestOrBuilder.java index a9d03f5f07d0..9b5ee4562dd8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponse.java index 4ca3375291c8..11712525413f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponseOrBuilder.java index 6b96b52c8fd9..92d654d2964c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateEntitySignalsMappingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequest.java index 750b127a0243..f5dd48b4a099 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequestOrBuilder.java index c67486c15c20..fd65dbef070a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponse.java index 154e70c09708..1283493edcf2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponseOrBuilder.java index 840bd6b46188..bca9235dee8a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdatePlacementsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequest.java index 1a877a971a8e..c12d24bf035c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequestOrBuilder.java index b69beecd05fc..4672a82aa71b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponse.java index 1b7b58f2c74b..6b45c8b9d01d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponseOrBuilder.java index c429ed20c3d3..9d4435038f19 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateSitesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequest.java index f4c8b60f839a..e9fdff244670 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequestOrBuilder.java index 94c1d7e25f21..5102646a1f89 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponse.java index 5380f51d7d0a..1f38be09ba2f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponseOrBuilder.java index 28c0a02ed1fd..73bd4b94ce36 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BatchUpdateTeamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Browser.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Browser.java index cd8fc75f8176..d7df0f88c68e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Browser.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Browser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguage.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguage.java index 40c30761e600..66ee4e942ea9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguage.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageMessagesProto.java index e7cfd8f29217..7bc7d85f0c5d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageName.java index 6bca4043e390..09c53181f9ee 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageOrBuilder.java index d293590bc98e..f3f793e9a7e1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceProto.java index afdde4878241..0f66099a8a52 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargeting.java index 58c9715a2e76..b505f8a12b86 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargetingOrBuilder.java index fcbc96a83ab2..270e20660a27 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserLanguageTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserMessagesProto.java index d2e6956f5d20..8040a495dae2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserName.java index 9455df9ecb4f..f0b62cb5cb44 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserOrBuilder.java index 6ac86d5e21e6..cbfe446870e2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserServiceProto.java index 3a1a6a8a04cb..d1d388838d83 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargeting.java index fff7f1417ea8..dc043b013789 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargetingOrBuilder.java index 72057c3f04cc..a84494fc69b4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/BrowserTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKey.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKey.java index 073e525407b6..169716a4b73b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKey.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyEnumsProto.java index 8aeeef343a24..a451a51de028 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyMessagesProto.java index 1ace9e34f2b8..56129bfa0242 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyName.java index af06e0eeff98..f22da56e6fa2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyOrBuilder.java index f9b9cf140e2d..f59a4ee885e5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceProto.java index af2ec4cbd662..7ec0f2196a7c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnum.java index 3854e8aacbea..5df238d725fc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnumOrBuilder.java index 4b33651402ef..a6aa084e975a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataKeyStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargeting.java index bab8b27dc518..56e86224bafa 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargetingOrBuilder.java index 8d2d2d75c1c5..3beb8d131977 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValue.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValue.java index 3ecb8a0cf143..4d27e7e29255 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValue.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueEnumsProto.java index dde4722ecc28..3a06b3f2eb80 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueMessagesProto.java index 0af9f754580e..2e48ec938ff1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueName.java index d2a47aca6291..383bd316ffb2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueOrBuilder.java index 962d5c0b3857..2845a1f706fe 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceProto.java index e077aa64ee6a..ccb04ff1e2f3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnum.java index 82e2b3684bde..90a4c67509c3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnumOrBuilder.java index c529b3a6fb27..fb335e91cb94 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CmsMetadataValueStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Company.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Company.java index 1ba4a5b5d4cc..03e9d59acfbf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Company.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Company.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnum.java index 1fb111b74a25..afe611ea2149 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnumOrBuilder.java index 1c97cb82d99c..3d662ca1e394 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyCreditStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyEnumsProto.java index 3ed1af6a6326..023a1b9b9531 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyMessagesProto.java index c6b48c5dcb59..5f23a699adcc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyName.java index 3ed9375ed97d..bc4d6522c95f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyOrBuilder.java index fd46de97c712..c0aaf22c95c6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyServiceProto.java index 54b3b0f4d576..e010b1a9d035 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnum.java index 9fa215d0af27..f94b2426ae54 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnumOrBuilder.java index f1557399f7af..ef72d232ecca 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CompanyTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Contact.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Contact.java index 175215499b4c..e839b55394c8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Contact.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Contact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactEnumsProto.java index 8a8575b63517..c49deaf9d88a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactMessagesProto.java index 1ba88cac2df7..1b8d36d5b0b4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactName.java index 7d116cea2010..b66d30e9a653 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactOrBuilder.java index d4dedbf4617d..31b450330370 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactServiceProto.java index 6abfc4f05d8e..d708f4b223aa 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnum.java index 649947e9a524..fd5c95337a51 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnumOrBuilder.java index b738faaff9a0..756f66750ebc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContactStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Content.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Content.java index e1df1c614559..a7f2152c9dff 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Content.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Content.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundle.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundle.java index e369f7b99387..8708278c8acc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundle.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundle.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleMessagesProto.java index 682908028bb7..116d0c97e75a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleName.java index 3101654a5624..660518720eb2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleOrBuilder.java index d17440829682..915202fe26cc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceProto.java index c72a8685ac72..1843672161cd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentBundleServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabel.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabel.java index 5646086d7d7e..56bcb1d99069 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabel.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelMessagesProto.java index 1023cc697979..7b609358a168 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelName.java index 409de15ca6ba..9cc0ee43db09 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelOrBuilder.java index f44c2a0b30fd..7f918842e752 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceProto.java index 42b675d3ed91..8a0b101f5a5b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentLabelServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentMessagesProto.java index d5563fcc8413..553c4515a414 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentName.java index cfbc4c737b16..d2eb18e4c734 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentOrBuilder.java index 41e67f0d7c11..f2f4b4ff73d8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentServiceProto.java index 37636be907a1..50c1525c0585 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargeting.java index 40115460eac7..027387319aa9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargetingOrBuilder.java index 2bffac0bcc6d..882cdbbb3bf1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ContentTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequest.java index a6e2fcc60e96..c0a35774ba87 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequestOrBuilder.java index 9a70d2fc2606..8e83dfba303d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdBreakRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdUnitRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdUnitRequest.java new file mode 100644 index 000000000000..b679c952b163 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdUnitRequest.java @@ -0,0 +1,950 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `CreateAdUnit` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.CreateAdUnitRequest} + */ +public final class CreateAdUnitRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.CreateAdUnitRequest) + CreateAdUnitRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use CreateAdUnitRequest.newBuilder() to construct. + private CreateAdUnitRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private CreateAdUnitRequest() { + parent_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new CreateAdUnitRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_CreateAdUnitRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_CreateAdUnitRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.CreateAdUnitRequest.class, + com.google.ads.admanager.v1.CreateAdUnitRequest.Builder.class); + } + + private int bitField0_; + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent resource where this `AdUnit` will be created.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent resource where this `AdUnit` will be created.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int AD_UNIT_FIELD_NUMBER = 2; + private com.google.ads.admanager.v1.AdUnit adUnit_; + + /** + * + * + *
+   * Required. The `AdUnit` to create.
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the adUnit field is set. + */ + @java.lang.Override + public boolean hasAdUnit() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Required. The `AdUnit` to create.
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The adUnit. + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnit getAdUnit() { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } + + /** + * + * + *
+   * Required. The `AdUnit` to create.
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitOrBuilder() { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getAdUnit()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getAdUnit()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.CreateAdUnitRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.CreateAdUnitRequest other = + (com.google.ads.admanager.v1.CreateAdUnitRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (hasAdUnit() != other.hasAdUnit()) return false; + if (hasAdUnit()) { + if (!getAdUnit().equals(other.getAdUnit())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (hasAdUnit()) { + hash = (37 * hash) + AD_UNIT_FIELD_NUMBER; + hash = (53 * hash) + getAdUnit().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.CreateAdUnitRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `CreateAdUnit` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.CreateAdUnitRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.CreateAdUnitRequest) + com.google.ads.admanager.v1.CreateAdUnitRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_CreateAdUnitRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_CreateAdUnitRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.CreateAdUnitRequest.class, + com.google.ads.admanager.v1.CreateAdUnitRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.CreateAdUnitRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getAdUnitFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + adUnit_ = null; + if (adUnitBuilder_ != null) { + adUnitBuilder_.dispose(); + adUnitBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_CreateAdUnitRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateAdUnitRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.CreateAdUnitRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateAdUnitRequest build() { + com.google.ads.admanager.v1.CreateAdUnitRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateAdUnitRequest buildPartial() { + com.google.ads.admanager.v1.CreateAdUnitRequest result = + new com.google.ads.admanager.v1.CreateAdUnitRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.CreateAdUnitRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.adUnit_ = adUnitBuilder_ == null ? adUnit_ : adUnitBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.CreateAdUnitRequest) { + return mergeFrom((com.google.ads.admanager.v1.CreateAdUnitRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.CreateAdUnitRequest other) { + if (other == com.google.ads.admanager.v1.CreateAdUnitRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasAdUnit()) { + mergeAdUnit(other.getAdUnit()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + input.readMessage(getAdUnitFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent resource where this `AdUnit` will be created.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where this `AdUnit` will be created.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where this `AdUnit` will be created.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where this `AdUnit` will be created.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where this `AdUnit` will be created.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.ads.admanager.v1.AdUnit adUnit_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + adUnitBuilder_; + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the adUnit field is set. + */ + public boolean hasAdUnit() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The adUnit. + */ + public com.google.ads.admanager.v1.AdUnit getAdUnit() { + if (adUnitBuilder_ == null) { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } else { + return adUnitBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setAdUnit(com.google.ads.admanager.v1.AdUnit value) { + if (adUnitBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + adUnit_ = value; + } else { + adUnitBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setAdUnit(com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitBuilder_ == null) { + adUnit_ = builderForValue.build(); + } else { + adUnitBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeAdUnit(com.google.ads.admanager.v1.AdUnit value) { + if (adUnitBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) + && adUnit_ != null + && adUnit_ != com.google.ads.admanager.v1.AdUnit.getDefaultInstance()) { + getAdUnitBuilder().mergeFrom(value); + } else { + adUnit_ = value; + } + } else { + adUnitBuilder_.mergeFrom(value); + } + if (adUnit_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearAdUnit() { + bitField0_ = (bitField0_ & ~0x00000002); + adUnit_ = null; + if (adUnitBuilder_ != null) { + adUnitBuilder_.dispose(); + adUnitBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.AdUnit.Builder getAdUnitBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getAdUnitFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitOrBuilder() { + if (adUnitBuilder_ != null) { + return adUnitBuilder_.getMessageOrBuilder(); + } else { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } + } + + /** + * + * + *
+     * Required. The `AdUnit` to create.
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + getAdUnitFieldBuilder() { + if (adUnitBuilder_ == null) { + adUnitBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder>( + getAdUnit(), getParentForChildren(), isClean()); + adUnit_ = null; + } + return adUnitBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.CreateAdUnitRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.CreateAdUnitRequest) + private static final com.google.ads.admanager.v1.CreateAdUnitRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.CreateAdUnitRequest(); + } + + public static com.google.ads.admanager.v1.CreateAdUnitRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public CreateAdUnitRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateAdUnitRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdUnitRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdUnitRequestOrBuilder.java new file mode 100644 index 000000000000..a62139e9df7c --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateAdUnitRequestOrBuilder.java @@ -0,0 +1,98 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface CreateAdUnitRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.CreateAdUnitRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent resource where this `AdUnit` will be created.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent resource where this `AdUnit` will be created.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The `AdUnit` to create.
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the adUnit field is set. + */ + boolean hasAdUnit(); + + /** + * + * + *
+   * Required. The `AdUnit` to create.
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The adUnit. + */ + com.google.ads.admanager.v1.AdUnit getAdUnit(); + + /** + * + * + *
+   * Required. The `AdUnit` to create.
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitOrBuilder(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequest.java index fe31279f423a..32c5d5f7e163 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequestOrBuilder.java index 1fb7ad1c8d59..edeedc0c19dd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateContactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequest.java index c27d7af0ea97..fcb3499e6b51 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequestOrBuilder.java index 0752427decec..2da726f6948b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomFieldRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomTargetingKeyRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomTargetingKeyRequest.java new file mode 100644 index 000000000000..a61fc149e124 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomTargetingKeyRequest.java @@ -0,0 +1,979 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `CreateCustomTargetingKey` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.CreateCustomTargetingKeyRequest} + */ +public final class CreateCustomTargetingKeyRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.CreateCustomTargetingKeyRequest) + CreateCustomTargetingKeyRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use CreateCustomTargetingKeyRequest.newBuilder() to construct. + private CreateCustomTargetingKeyRequest( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private CreateCustomTargetingKeyRequest() { + parent_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new CreateCustomTargetingKeyRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.class, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder.class); + } + + private int bitField0_; + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent resource where this `CustomTargetingKey` will be
+   * created. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent resource where this `CustomTargetingKey` will be
+   * created. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int CUSTOM_TARGETING_KEY_FIELD_NUMBER = 2; + private com.google.ads.admanager.v1.CustomTargetingKey customTargetingKey_; + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to create.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the customTargetingKey field is set. + */ + @java.lang.Override + public boolean hasCustomTargetingKey() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to create.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The customTargetingKey. + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKey() { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to create.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeyOrBuilder() { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getCustomTargetingKey()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getCustomTargetingKey()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest other = + (com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (hasCustomTargetingKey() != other.hasCustomTargetingKey()) return false; + if (hasCustomTargetingKey()) { + if (!getCustomTargetingKey().equals(other.getCustomTargetingKey())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + if (hasCustomTargetingKey()) { + hash = (37 * hash) + CUSTOM_TARGETING_KEY_FIELD_NUMBER; + hash = (53 * hash) + getCustomTargetingKey().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `CreateCustomTargetingKey` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.CreateCustomTargetingKeyRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.CreateCustomTargetingKeyRequest) + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.class, + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getCustomTargetingKeyFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + customTargetingKey_ = null; + if (customTargetingKeyBuilder_ != null) { + customTargetingKeyBuilder_.dispose(); + customTargetingKeyBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest build() { + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest buildPartial() { + com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest result = + new com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.customTargetingKey_ = + customTargetingKeyBuilder_ == null + ? customTargetingKey_ + : customTargetingKeyBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest) { + return mergeFrom((com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest other) { + if (other == com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasCustomTargetingKey()) { + mergeCustomTargetingKey(other.getCustomTargetingKey()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + input.readMessage( + getCustomTargetingKeyFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent resource where this `CustomTargetingKey` will be
+     * created. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where this `CustomTargetingKey` will be
+     * created. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent resource where this `CustomTargetingKey` will be
+     * created. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where this `CustomTargetingKey` will be
+     * created. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent resource where this `CustomTargetingKey` will be
+     * created. Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.ads.admanager.v1.CustomTargetingKey customTargetingKey_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + customTargetingKeyBuilder_; + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the customTargetingKey field is set. + */ + public boolean hasCustomTargetingKey() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The customTargetingKey. + */ + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKey() { + if (customTargetingKeyBuilder_ == null) { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } else { + return customTargetingKeyBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setCustomTargetingKey(com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeyBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + customTargetingKey_ = value; + } else { + customTargetingKeyBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setCustomTargetingKey( + com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeyBuilder_ == null) { + customTargetingKey_ = builderForValue.build(); + } else { + customTargetingKeyBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeCustomTargetingKey(com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeyBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) + && customTargetingKey_ != null + && customTargetingKey_ + != com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance()) { + getCustomTargetingKeyBuilder().mergeFrom(value); + } else { + customTargetingKey_ = value; + } + } else { + customTargetingKeyBuilder_.mergeFrom(value); + } + if (customTargetingKey_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearCustomTargetingKey() { + bitField0_ = (bitField0_ & ~0x00000002); + customTargetingKey_ = null; + if (customTargetingKeyBuilder_ != null) { + customTargetingKeyBuilder_.dispose(); + customTargetingKeyBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder getCustomTargetingKeyBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getCustomTargetingKeyFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder + getCustomTargetingKeyOrBuilder() { + if (customTargetingKeyBuilder_ != null) { + return customTargetingKeyBuilder_.getMessageOrBuilder(); + } else { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to create.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + getCustomTargetingKeyFieldBuilder() { + if (customTargetingKeyBuilder_ == null) { + customTargetingKeyBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder>( + getCustomTargetingKey(), getParentForChildren(), isClean()); + customTargetingKey_ = null; + } + return customTargetingKeyBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.CreateCustomTargetingKeyRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.CreateCustomTargetingKeyRequest) + private static final com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest(); + } + + public static com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public CreateCustomTargetingKeyRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomTargetingKeyRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomTargetingKeyRequestOrBuilder.java new file mode 100644 index 000000000000..451cd751c9b1 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateCustomTargetingKeyRequestOrBuilder.java @@ -0,0 +1,101 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface CreateCustomTargetingKeyRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.CreateCustomTargetingKeyRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent resource where this `CustomTargetingKey` will be
+   * created. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent resource where this `CustomTargetingKey` will be
+   * created. Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to create.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the customTargetingKey field is set. + */ + boolean hasCustomTargetingKey(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to create.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The customTargetingKey. + */ + com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKey(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to create.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeyOrBuilder(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequest.java index 62b8d64729a6..6426f10b0d0e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequestOrBuilder.java index f2efde6c6937..25190bf877cc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateEntitySignalsMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequest.java index 5c8b056eddcf..6eb0b46a218a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequestOrBuilder.java index 6a65b79208af..a690e2a29b9a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePlacementRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequest.java index 7ed1c3867e93..5e862d55adb8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequestOrBuilder.java index ac44c9bceab0..f5c56fc2e984 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionDealRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequest.java index 44e63e967857..690f586490ba 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequestOrBuilder.java index afb6a74ca803..e1c9816cbf90 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreatePrivateAuctionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequest.java index 99a31435ee4e..be01b8ce5f32 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequestOrBuilder.java index 9460718265fe..ecdce9707cfa 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequest.java index 51848fcd1ec2..dfc05c9b7e91 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequestOrBuilder.java index e0f6f07b714b..8c17fca63369 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateSiteRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequest.java index c5680fd63d40..e482e431da7c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequestOrBuilder.java index d587fbfcf8b1..16337098a8f1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreateTeamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplate.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplate.java index e0d673f896f5..8670b5ac5f42 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplate.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateEnumsProto.java index fb7d554595a4..ce49695f3af9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateMessagesProto.java index 4503d6a46f3d..4e908338b02e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateName.java index 7619bce1c32f..e9ba4bcc9fd7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateOrBuilder.java index e9cc82667395..6493c58ef8f9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceProto.java index 53e9df4f523a..b86ef594b581 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnum.java index 8507787b493f..1408502ed4a9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnumOrBuilder.java index ac8dc64830ad..7cfe14337af0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnum.java index 664d58591c4a..4bcc4a6d6983 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnumOrBuilder.java index 4f7a0978cc7e..3e1168008103 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariable.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariable.java index 1612d829da4f..d5b1cde79f66 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariable.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableOrBuilder.java index b325fc69376c..ed97015abb4b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnum.java index fef3305e7e01..87b24f93866f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumOrBuilder.java index acfd34c56638..be7e02b95f6d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumProto.java index beab04914a46..391f90581e9f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CreativeTemplateVariableUrlTypeEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomField.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomField.java index f77e553503c1..38870ae92b5f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomField.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnum.java index 97aff8b7477b..4fea5249f313 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnumOrBuilder.java index 497d41be9893..83bd1c58afc8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldDataTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnum.java index e4eef0f798ff..ce6181d0c34f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnumOrBuilder.java index c7e4c3d3e7e4..f0f6380144bb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEntityTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEnumsProto.java index 58d9b71f61d3..48242d8bf3df 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldMessagesProto.java index dc885e47c81e..054fbe9a14ac 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldName.java index 38fe6af84850..d5687a672229 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOption.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOption.java index c4198223802b..39932a140e06 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOption.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOption.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOptionOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOptionOrBuilder.java index 146e0a4ae90f..97076c6514dc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOptionOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOptionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOrBuilder.java index 6593bc2d1d12..58db13226df9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceProto.java index 5ec0d353af27..cfca23541361 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnum.java index 11b74d50bd2e..b876c18a5e7f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnumOrBuilder.java index feba31831fe6..8f81747ca34a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValue.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValue.java index 44f604b61582..60cd10a5999e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValue.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueOrBuilder.java index 68167649113c..da17cd9d851f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueProto.java index 219a28559bf6..fdc47a550325 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldValueProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnum.java index acb74094528d..cdae3aae799e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnumOrBuilder.java index b27aa1b3b707..e07b7cfd2a27 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomFieldVisibilityEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargeting.java index d17047d6fd9c..0dacd9c1dcc5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClause.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClause.java index 7781a8fa263b..9ae265383dee 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClause.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClause.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClauseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClauseOrBuilder.java index 0883d663c95f..add748b505f3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClauseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingClauseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKey.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKey.java index 25b69bccc603..3057733dde2b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKey.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyEnumsProto.java index 381b63651a2e..69fc54525a4d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyMessagesProto.java index f714e18f8805..175fbb795864 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyName.java index dcc4512d3395..c65fffaf68e0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyOrBuilder.java index 10fda4af5baf..7d5b558dcc67 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnum.java index 595b92ef2629..d250e11c4d45 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnumOrBuilder.java index f41cfa5cab85..a4dc3e0076e2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyReportableTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceProto.java index 24de01092545..02132aa6feb7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -40,6 +40,46 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_ads_admanager_v1_ListCustomTargetingKeysResponse_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_admanager_v1_ListCustomTargetingKeysResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { return descriptor; @@ -54,15 +94,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "er.v1\032;google/ads/admanager/v1/custom_ta" + "rgeting_key_messages.proto\032\034google/api/a" + "nnotations.proto\032\027google/api/client.prot" - + "o\032\037google/api/field_behavior.proto\032\031google/api/resource.proto\"a\n" + + "o\032\037google/api/field_behavior.proto\032\031google/api/resource.proto\032" + + " google/protobuf/field_mask.proto\"a\n" + "\034GetCustomTargetingKeyRequest\022A\n" + "\004name\030\001 \001(\tB3\340A\002\372A-\n" + "+admanager.googleapis.com/CustomTargetingKey\"\312\001\n" + "\036ListCustomTargetingKeysRequest\0228\n" + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + " admanager.googleapis.com/Network\022\026\n" - + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n" - + "\n" + + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n" + "page_token\030\003 \001(\tB\003\340A\001\022\023\n" + "\006filter\030\004 \001(\tB\003\340A\001\022\025\n" + "\010order_by\030\005 \001(\tB\003\340A\001\022\021\n" @@ -71,21 +111,85 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\025custom_targeting_keys\030\001" + " \003(\0132+.google.ads.admanager.v1.CustomTargetingKey\022\027\n" + "\017next_page_token\030\002 \001(\t\022\022\n\n" - + "total_size\030\003 \001(\0052\353\003\n" + + "total_size\030\003 \001(\005\"\253\001\n" + + "\037CreateCustomTargetingKeyRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022N\n" + + "\024custom_targeting_key\030\002 \001(\013" + + "2+.google.ads.admanager.v1.CustomTargetingKeyB\003\340A\002\"\262\001\n" + + "%BatchCreateCustomTargetingKeysRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022O\n" + + "\010requests\030\002" + + " \003(\01328.google.ads.admanager.v1.CreateCustomTargetingKeyRequestB\003\340A\002\"t\n" + + "&BatchCreateCustomTargetingKeysResponse\022J\n" + + "\025custom_targeting_keys\030\001" + + " \003(\0132+.google.ads.admanager.v1.CustomTargetingKey\"\247\001\n" + + "\037UpdateCustomTargetingKeyRequest\022N\n" + + "\024custom_targeting_key\030\001" + + " \001(\0132+.google.ads.admanager.v1.CustomTargetingKeyB\003\340A\002\0224\n" + + "\013update_mask\030\002" + + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\262\001\n" + + "%BatchUpdateCustomTargetingKeysRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022O\n" + + "\010requests\030\002 \003(\01328." + + "google.ads.admanager.v1.UpdateCustomTargetingKeyRequestB\003\340A\002\"t\n" + + "&BatchUpdateCustomTargetingKeysResponse\022J\n" + + "\025custom_targeting_keys\030\001" + + " \003(\0132+.google.ads.admanager.v1.CustomTargetingKey\"\247\001\n" + + "\'BatchActivateCustomTargetingKeysRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022B\n" + + "\005names\030\002 \003(\tB3\340A\002\372A-\n" + + "+admanager.googleapis.com/CustomTargetingKey\"*\n" + + "(BatchActivateCustomTargetingKeysResponse\"\251\001\n" + + ")BatchDeactivateCustomTargetingKeysRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022B\n" + + "\005names\030\002 \003(\tB3\340A\002\372A-\n" + + "+admanager.googleapis.com/CustomTargetingKey\",\n" + + "*BatchDeactivateCustomTargetingKeysResponse2\332\017\n" + "\031CustomTargetingKeyService\022\267\001\n" - + "\025GetCustomTargetingKey\0225.google.ads.admanage" - + "r.v1.GetCustomTargetingKeyRequest\032+.google.ads.admanager.v1.CustomTargetingKey\":" - + "\332A\004name\202\323\344\223\002-\022+/v1/{name=networks/*/customTargetingKeys/*}\022\312\001\n" - + "\027ListCustomTargetingKeys\0227.google.ads.admanager.v1.ListCus" - + "tomTargetingKeysRequest\0328.google.ads.admanager.v1.ListCustomTargetingKeysRespons" - + "e\"<\332A\006parent\202\323\344\223\002-\022+/v1/{parent=networks" - + "/*}/customTargetingKeys\032G\312A\030admanager.go" - + "ogleapis.com\322A)https://www.googleapis.com/auth/admanagerB\322\001\n" - + "\033com.google.ads.admanager.v1B\036CustomTargetingKeyServiceProto" - + "P\001Z@google.golang.org/genproto/googleapi" - + "s/ads/admanager/v1;admanager\252\002\027Google.Ad" - + "s.AdManager.V1\312\002\027Google\\Ads\\AdManager\\V1" - + "\352\002\032Google::Ads::AdManager::V1b\006proto3" + + "\025GetCustomTargetingKey\0225.google.ads.admanager.v1.GetCustomTargetingKeyReques" + + "t\032+.google.ads.admanager.v1.CustomTarget" + + "ingKey\":\332A\004name\202\323\344\223\002-\022+/v1/{name=networks/*/customTargetingKeys/*}\022\312\001\n" + + "\027ListCustomTargetingKeys\0227.google.ads.admanager.v1" + + ".ListCustomTargetingKeysRequest\0328.google.ads.admanager.v1.ListCustomTargetingKey" + + "sResponse\"<\332A\006parent\202\323\344\223\002-\022+/v1/{parent=networks/*}/customTargetingKeys\022\352\001\n" + + "\030CreateCustomTargetingKey\0228.google.ads.admana" + + "ger.v1.CreateCustomTargetingKeyRequest\032+.google.ads.admanager.v1.CustomTargeting" + + "Key\"g\332A\033parent,custom_targeting_key\202\323\344\223\002" + + "C\"+/v1/{parent=networks/*}/customTargetingKeys:\024custom_targeting_key\022\367\001\n" + + "\036BatchCreateCustomTargetingKeys\022>.google.ads.adm" + + "anager.v1.BatchCreateCustomTargetingKeysRequest\032?.google.ads.admanager.v1.BatchC" + + "reateCustomTargetingKeysResponse\"T\332A\017par" + + "ent,requests\202\323\344\223\002<\"7/v1/{parent=networks" + + "/*}/customTargetingKeys:batchCreate:\001*\022\205\002\n" + + "\030UpdateCustomTargetingKey\0228.google.ads.admanager.v1.UpdateCustomTargetingKeyRe" + + "quest\032+.google.ads.admanager.v1.CustomTargetingKey\"\201\001\332A" + + " custom_targeting_key,update_mask\202\323\344\223\002X2@/v1/{custom_targeting_ke" + + "y.name=networks/*/customTargetingKeys/*}:\024custom_targeting_key\022\367\001\n" + + "\036BatchUpdateCustomTargetingKeys\022>.google.ads.admanager" + + ".v1.BatchUpdateCustomTargetingKeysRequest\032?.google.ads.admanager.v1.BatchUpdateC" + + "ustomTargetingKeysResponse\"T\332A\017parent,re" + + "quests\202\323\344\223\002<\"7/v1/{parent=networks/*}/customTargetingKeys:batchUpdate:\001*\022\374\001\n" + + " BatchActivateCustomTargetingKeys\022@.google.a" + + "ds.admanager.v1.BatchActivateCustomTargetingKeysRequest\032A.google.ads.admanager.v" + + "1.BatchActivateCustomTargetingKeysRespon" + + "se\"S\332A\014parent,names\202\323\344\223\002>\"9/v1/{parent=n" + + "etworks/*}/customTargetingKeys:batchActivate:\001*\022\204\002\n" + + "\"BatchDeactivateCustomTargetingKeys\022B.google.ads.admanager.v1.BatchDe" + + "activateCustomTargetingKeysRequest\032C.google.ads.admanager.v1.BatchDeactivateCust" + + "omTargetingKeysResponse\"U\332A\014parent,names" + + "\202\323\344\223\002@\";/v1/{parent=networks/*}/customTa" + + "rgetingKeys:batchDeactivate:\001*\032G\312A\030adman" + + "ager.googleapis.com\322A)https://www.googleapis.com/auth/admanagerB\322\001\n" + + "\033com.google.ads.admanager.v1B\036CustomTargetingKeyServi" + + "ceProtoP\001Z@google.golang.org/genproto/go" + + "ogleapis/ads/admanager/v1;admanager\252\002\027Go" + + "ogle.Ads.AdManager.V1\312\002\027Google\\Ads\\AdMan" + + "ager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -96,6 +200,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.api.ClientProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), + com.google.protobuf.FieldMaskProto.getDescriptor(), }); internal_static_google_ads_admanager_v1_GetCustomTargetingKeyRequest_descriptor = getDescriptor().getMessageTypes().get(0); @@ -121,6 +226,82 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "CustomTargetingKeys", "NextPageToken", "TotalSize", }); + internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_descriptor = + getDescriptor().getMessageTypes().get(3); + internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_CreateCustomTargetingKeyRequest_descriptor, + new java.lang.String[] { + "Parent", "CustomTargetingKey", + }); + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_descriptor = + getDescriptor().getMessageTypes().get(4); + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysRequest_descriptor, + new java.lang.String[] { + "Parent", "Requests", + }); + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_descriptor = + getDescriptor().getMessageTypes().get(5); + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchCreateCustomTargetingKeysResponse_descriptor, + new java.lang.String[] { + "CustomTargetingKeys", + }); + internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_descriptor = + getDescriptor().getMessageTypes().get(6); + internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_descriptor, + new java.lang.String[] { + "CustomTargetingKey", "UpdateMask", + }); + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_descriptor = + getDescriptor().getMessageTypes().get(7); + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysRequest_descriptor, + new java.lang.String[] { + "Parent", "Requests", + }); + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_descriptor = + getDescriptor().getMessageTypes().get(8); + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchUpdateCustomTargetingKeysResponse_descriptor, + new java.lang.String[] { + "CustomTargetingKeys", + }); + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_descriptor = + getDescriptor().getMessageTypes().get(9); + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysRequest_descriptor, + new java.lang.String[] { + "Parent", "Names", + }); + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_descriptor = + getDescriptor().getMessageTypes().get(10); + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchActivateCustomTargetingKeysResponse_descriptor, + new java.lang.String[] {}); + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_descriptor = + getDescriptor().getMessageTypes().get(11); + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysRequest_descriptor, + new java.lang.String[] { + "Parent", "Names", + }); + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_descriptor = + getDescriptor().getMessageTypes().get(12); + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_BatchDeactivateCustomTargetingKeysResponse_descriptor, + new java.lang.String[] {}); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.ClientProto.defaultHost); @@ -136,6 +317,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.api.ClientProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); + com.google.protobuf.FieldMaskProto.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnum.java index 81169e93dd46..a37b8b12abe3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnumOrBuilder.java index 8e715a5120e3..e5cdec480c79 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnum.java index c178dffb1303..29acafbcd0d3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnumOrBuilder.java index a0fc19b096cd..629c1c7cdc91 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingKeyTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteral.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteral.java index 74641811be69..6a3f166966a7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteral.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteral.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteralOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteralOrBuilder.java index a23a8b2ffbe6..bda3d05208bb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteralOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingLiteralOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingOrBuilder.java index f2ed65e5ded3..91a347f98cd9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValue.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValue.java index c0f8433abee4..dcab0ec1150e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValue.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueEnumsProto.java index 634acb345741..800254881328 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnum.java index 47123da7817a..873ae19619c5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnumOrBuilder.java index 9a12dd57c4bc..abb02a450a08 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMatchTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMessagesProto.java index f5e09ef9a436..6ed92caebff6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueName.java index f15d3f131438..9e79f8e072f7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueOrBuilder.java index 71c2672f1a90..62ae5b238c7d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceProto.java index f0f1d21449cd..fa7c5ab5e578 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnum.java index dc0cb2e68172..f66b87f4ffd7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnumOrBuilder.java index dc005b053835..9755175f6a2a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/CustomTargetingValueStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargeting.java index 8e7b3f1d84be..d751cd017a65 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargetingOrBuilder.java index 7d809db325e0..40692ce6d7f2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DataSegmentTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnum.java index 3298016b4eb2..04c177207a0a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumOrBuilder.java index dd1a38b69bc4..641d894d927f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumProto.java index ca30893988af..353fa43f4eaf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DealBuyerPermissionTypeEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequest.java index 1688e1f420fb..4c7d1242683b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequestOrBuilder.java index 5d0d4c1323d0..49500e294f9c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeleteAdBreakRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapability.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapability.java index 3cffba6225d7..8a35aab4ddb7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapability.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapability.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityMessagesProto.java index e2f94eb12e7d..2f85ac24ca5b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityName.java index d7dc064a6bea..dbee14d0378b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityOrBuilder.java index fc4ac0f535ce..13c17f1c2eb8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceProto.java index 65c836d450e5..b458ef8e92c4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargeting.java index 3fec8d1c35f0..2c83c1d373ee 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargetingOrBuilder.java index 5d4be6d05c77..12e3bfcb2a37 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCapabilityTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategory.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategory.java index 2e373d6c6dfb..5e26e1ca8806 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategory.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryMessagesProto.java index 767b19ab80ea..b99dff461313 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryName.java index f7576f6fffbf..f06b83014054 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryOrBuilder.java index 27bee58185c4..e879b7868d18 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceProto.java index 505af1547a4b..8209a469ad8c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargeting.java index c2055ed1e85a..ca3e2c2fbc7b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargetingOrBuilder.java index 7c3d4d5559c1..86c778ed41b0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceCategoryTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturer.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturer.java index be640785931f..b7ba389a9831 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturer.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerMessagesProto.java index 60b9a246b418..473c0e9809f4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerName.java index 68400b6da14e..08ab908a73aa 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerOrBuilder.java index 5c10d6631fa5..d807249e5b0c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceProto.java index ef55af168c4c..062fe37849b6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargeting.java index 4067f5179b32..f6c37762723a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargetingOrBuilder.java index 949326da8132..96b97370a94c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DeviceManufacturerTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReason.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReason.java index 27c380fe6441..4c7ecb3feb14 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReason.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReason.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReasonOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReasonOrBuilder.java index 77b3e5ac87b2..72bc11d3a2ba 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReasonOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/DisapprovalReasonOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EarlyAdBreakNotificationEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EarlyAdBreakNotificationEnumsProto.java index 2946bd70b96b..c19d4183c17f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EarlyAdBreakNotificationEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EarlyAdBreakNotificationEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMapping.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMapping.java index 0a15d5cdbbe8..3add7e268bbd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMapping.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingMessagesProto.java index b7da12ee1381..872e57547d51 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingName.java index a6961510424f..a05ca1bea15f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingOrBuilder.java index 7f16473d0d63..c981db9b038e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceProto.java index ffd095f2b5c1..6fc2759ad8ac 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EntitySignalsMappingServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnum.java index b1421dfc5ac3..b837f26180bc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumOrBuilder.java index ce1086501b60..d1c2cf4f05f9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumProto.java index 1bad28f251d3..7d263840429e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/EnvironmentTypeEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnum.java index e4cb2e56fb3e..e8de55a45fa7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumOrBuilder.java index e5d29d649045..569183c352f9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumProto.java index cee16bdf7961..90a771f7eb5b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ExchangeSyndicationProductEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequest.java index 5f0c54ae790e..e8d2cbcc1c1e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequestOrBuilder.java index c531ea11f0c7..7fe39302757f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponse.java index acc2a6c9d5e7..68afc98610c0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponseOrBuilder.java index d053aee28ee6..5bdb85711e62 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FetchReportResultRowsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargeting.java index 7065a3a817ad..93e73e566931 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargetingOrBuilder.java index 0868db04378e..37714e248a6a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FirstPartyMobileApplicationTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCap.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCap.java index 5c183112d13c..1291a5ca82d6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCap.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCap.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapOrBuilder.java index e18abd533e2f..2c75889b1838 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapProto.java index 363674658a43..acbca118222f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/FrequencyCapProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTarget.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTarget.java index 91053909e3ea..eb48b0491d80 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTarget.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTarget.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetMessagesProto.java index b7732f32f10b..d42ec39d8fdb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetName.java index 8c0765d58331..24087f97f10f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetOrBuilder.java index dbb8f8f24f58..192c5ef70ad4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceProto.java index f85d3a3a8f5d..5350a594dd1b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargeting.java index aab315ab27bd..1da6a68642fe 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetingOrBuilder.java index efcf1c47e386..352413d19174 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GeoTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequest.java index b070ba81a5f3..79b6870dd2b3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequestOrBuilder.java index f6d0563f215e..acb49acef8d0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdBreakRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequest.java index 19e465a04c18..e5d8559dfb2d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequestOrBuilder.java index c7f794cb661c..c8cbdd737ec1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAdUnitRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequest.java index 4d32ad07ce3e..6bdfe085c9a2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequestOrBuilder.java index 0f542f63eabe..b3f5f72cfe89 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequest.java index 616e9606c6d2..71a9f0871ed6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequestOrBuilder.java index 9b3eecc9a603..d99ca61663ac 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetAudienceSegmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequest.java index 8e93d96c49a7..9d86592ae356 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequestOrBuilder.java index 9514af4624d9..2d1a18d70a30 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBandwidthGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequest.java index a7c9e4d366cd..24b31fcfb8da 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequestOrBuilder.java index 022b775f0a39..5dc9ca111cce 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserLanguageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequest.java index 2a589242b852..ff8cd1c1681f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequestOrBuilder.java index 9b6160a52552..42b5e950c666 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetBrowserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequest.java index 3fb089ec0bc5..1725753ce548 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequestOrBuilder.java index e907d2d87252..0abd0ba4680c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequest.java index efcac56f027b..fa41733a96d0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -73,7 +73,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. The resource name of the CmsMetadataKey.
+   * Required. The resource name of the CmsMetadataValue.
    * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
    * 
* @@ -100,7 +100,7 @@ public java.lang.String getName() { * * *
-   * Required. The resource name of the CmsMetadataKey.
+   * Required. The resource name of the CmsMetadataValue.
    * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
    * 
* @@ -473,7 +473,7 @@ public Builder mergeFrom( * * *
-     * Required. The resource name of the CmsMetadataKey.
+     * Required. The resource name of the CmsMetadataValue.
      * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
      * 
* @@ -499,7 +499,7 @@ public java.lang.String getName() { * * *
-     * Required. The resource name of the CmsMetadataKey.
+     * Required. The resource name of the CmsMetadataValue.
      * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
      * 
* @@ -525,7 +525,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required. The resource name of the CmsMetadataKey.
+     * Required. The resource name of the CmsMetadataValue.
      * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
      * 
* @@ -550,7 +550,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Required. The resource name of the CmsMetadataKey.
+     * Required. The resource name of the CmsMetadataValue.
      * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
      * 
* @@ -571,7 +571,7 @@ public Builder clearName() { * * *
-     * Required. The resource name of the CmsMetadataKey.
+     * Required. The resource name of the CmsMetadataValue.
      * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
      * 
* diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequestOrBuilder.java index 755409398549..8d0fb9ec1b12 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCmsMetadataValueRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ public interface GetCmsMetadataValueRequestOrBuilder * * *
-   * Required. The resource name of the CmsMetadataKey.
+   * Required. The resource name of the CmsMetadataValue.
    * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
    * 
* @@ -44,7 +44,7 @@ public interface GetCmsMetadataValueRequestOrBuilder * * *
-   * Required. The resource name of the CmsMetadataKey.
+   * Required. The resource name of the CmsMetadataValue.
    * Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
    * 
* diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequest.java index 744b852ee12c..ada6f281a63e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequestOrBuilder.java index e749dd71b713..58b2a934ba40 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCompanyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequest.java index 90570bac10e9..09fbd59ce3bf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequestOrBuilder.java index be3e79d002c2..0aff5d2e7342 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequest.java index efe516536355..c841e7809d92 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequestOrBuilder.java index dfb7bce9b463..3271166d9cfe 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentBundleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequest.java index 779814d91a7f..4f98baa978a2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequestOrBuilder.java index 63065966788c..857c8e60143b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentLabelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequest.java index 362b896f48eb..2836c18aebc0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequestOrBuilder.java index 5f6aa16c4dfe..8206571705e0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequest.java index 18abe1897733..2d5d766cd307 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequestOrBuilder.java index d8188ab47997..6da544c00c16 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCreativeTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequest.java index 1f09175665cd..8af82d7f3350 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequestOrBuilder.java index 567b0c51f517..dbc9f35d5771 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomFieldRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequest.java index 02afb458b818..a64dbd78e79e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequestOrBuilder.java index 2dd60f757770..475871af3a86 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequest.java index df9870d1cf88..5c7b5720c235 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequestOrBuilder.java index f8ae3ac35373..89e509e05958 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetCustomTargetingValueRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequest.java index 0f36c7f74b42..cd39e01b4c60 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequestOrBuilder.java index aebe31dbd324..cacffba08e4a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCapabilityRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequest.java index 62a3e32850cf..06d82cb65064 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequestOrBuilder.java index 129fcdb92b89..8715c1a327c6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceCategoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequest.java index b9dfe544e1d5..0617e685d552 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequestOrBuilder.java index 8ee00920eb53..b50df555d58b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetDeviceManufacturerRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequest.java index 83f0c727e97b..1b47b3708d8d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequestOrBuilder.java index 938f1b4fc808..0260cd150740 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetEntitySignalsMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequest.java index d40d655c067e..0638f35c6288 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequestOrBuilder.java index 48edaf955a86..1d32e73b6a48 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetGeoTargetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetLineItemRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetLineItemRequest.java new file mode 100644 index 000000000000..4593e449a297 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetLineItemRequest.java @@ -0,0 +1,654 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `GetLineItem` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.GetLineItemRequest} + */ +public final class GetLineItemRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.GetLineItemRequest) + GetLineItemRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use GetLineItemRequest.newBuilder() to construct. + private GetLineItemRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private GetLineItemRequest() { + name_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new GetLineItemRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_GetLineItemRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_GetLineItemRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.GetLineItemRequest.class, + com.google.ads.admanager.v1.GetLineItemRequest.Builder.class); + } + + public static final int NAME_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object name_ = ""; + + /** + * + * + *
+   * Required. The resource name of the LineItem.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The name. + */ + @java.lang.Override + public java.lang.String getName() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The resource name of the LineItem.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for name. + */ + @java.lang.Override + public com.google.protobuf.ByteString getNameBytes() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + name_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.GetLineItemRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.GetLineItemRequest other = + (com.google.ads.admanager.v1.GetLineItemRequest) obj; + + if (!getName().equals(other.getName())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + NAME_FIELD_NUMBER; + hash = (53 * hash) + getName().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.GetLineItemRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `GetLineItem` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.GetLineItemRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.GetLineItemRequest) + com.google.ads.admanager.v1.GetLineItemRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_GetLineItemRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_GetLineItemRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.GetLineItemRequest.class, + com.google.ads.admanager.v1.GetLineItemRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.GetLineItemRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + name_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_GetLineItemRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.GetLineItemRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.GetLineItemRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.GetLineItemRequest build() { + com.google.ads.admanager.v1.GetLineItemRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.GetLineItemRequest buildPartial() { + com.google.ads.admanager.v1.GetLineItemRequest result = + new com.google.ads.admanager.v1.GetLineItemRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.GetLineItemRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.name_ = name_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.GetLineItemRequest) { + return mergeFrom((com.google.ads.admanager.v1.GetLineItemRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.GetLineItemRequest other) { + if (other == com.google.ads.admanager.v1.GetLineItemRequest.getDefaultInstance()) return this; + if (!other.getName().isEmpty()) { + name_ = other.name_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + name_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object name_ = ""; + + /** + * + * + *
+     * Required. The resource name of the LineItem.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The name. + */ + public java.lang.String getName() { + java.lang.Object ref = name_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The resource name of the LineItem.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for name. + */ + public com.google.protobuf.ByteString getNameBytes() { + java.lang.Object ref = name_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + name_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The resource name of the LineItem.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The name to set. + * @return This builder for chaining. + */ + public Builder setName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + name_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource name of the LineItem.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearName() { + name_ = getDefaultInstance().getName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The resource name of the LineItem.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for name to set. + * @return This builder for chaining. + */ + public Builder setNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + name_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.GetLineItemRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.GetLineItemRequest) + private static final com.google.ads.admanager.v1.GetLineItemRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.GetLineItemRequest(); + } + + public static com.google.ads.admanager.v1.GetLineItemRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public GetLineItemRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.GetLineItemRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetLineItemRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetLineItemRequestOrBuilder.java new file mode 100644 index 000000000000..e5fdd380fa0a --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetLineItemRequestOrBuilder.java @@ -0,0 +1,58 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface GetLineItemRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.GetLineItemRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The resource name of the LineItem.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The name. + */ + java.lang.String getName(); + + /** + * + * + *
+   * Required. The resource name of the LineItem.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * + * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for name. + */ + com.google.protobuf.ByteString getNameBytes(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequest.java index fa5446f7fef2..fc97c629c0ea 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequestOrBuilder.java index 3a12205a440f..658e70557e82 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileCarrierRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequest.java index d72e4db58f9d..c6130c17278a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequestOrBuilder.java index 3436901d4454..04996fb69d09 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequest.java index a6b1a20a3a92..3a5811951932 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequestOrBuilder.java index 16a286d311b1..976fdd968412 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetMobileDeviceSubmodelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequest.java index ec9af0a93ec2..983b8cef8892 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequestOrBuilder.java index 85407d1fcf93..2a5c59357b28 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetNetworkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequest.java index 252530ab1c60..49699d290bb0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequestOrBuilder.java index e2b349589f1a..f59c610f9ed3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequest.java index 929140ec08f6..343fb012af73 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequestOrBuilder.java index b92e3e28a08d..035182ec1cc6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOperatingSystemVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequest.java index be5f7f9eed4c..23ea7c8ab114 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequestOrBuilder.java index e6bc5705b271..ec6e543d9ca6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetOrderRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequest.java index 8b37bd82ed03..2869d7631892 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequestOrBuilder.java index 47d1f14b6f1d..851d24269537 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPlacementRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequest.java index a02d7412fca0..6d27ee31074f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequestOrBuilder.java index f76146f53473..ae6276642b0a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionDealRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequest.java index c87a69874d50..edaf265847cb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequestOrBuilder.java index c0fe32de5a17..a93215b74b3a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetPrivateAuctionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequest.java index 5400dcffaff3..74176133d845 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequestOrBuilder.java index b615db66ba98..1e9ead0a9816 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetProgrammaticBuyerRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequest.java index 9a06a27422ef..f7a87abbab4e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequestOrBuilder.java index 02ffea007a57..7f60dcc16332 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequest.java index 593e71977c16..8385ac3f6951 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequestOrBuilder.java index cc378e3f962a..748a7c45cf88 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetRoleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequest.java index b4f56ae19f9b..893cdb0b91d3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequestOrBuilder.java index 2b70b73a3df3..6e700e185fd9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetSiteRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequest.java index 2b587bafc4c3..9f844ec6f3db 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequestOrBuilder.java index 6db3dd092d9b..256ddb8575a4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTaxonomyCategoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequest.java index c2d242690519..27bb22dcb487 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequestOrBuilder.java index af9684d64b2b..b70363eda9b4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetTeamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequest.java index 3a06b819c4b3..21f070f75505 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequestOrBuilder.java index 754cf0627b48..858926ccf540 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GetUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Goal.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Goal.java new file mode 100644 index 000000000000..03152ad96874 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Goal.java @@ -0,0 +1,1075 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Defines the criteria a [LineItem][google.ads.admanager.v1.LineItem] needs to
+ * satisfy to meet its delivery goal.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.Goal} + */ +public final class Goal extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.Goal) + GoalOrBuilder { + private static final long serialVersionUID = 0L; + + // Use Goal.newBuilder() to construct. + private Goal(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private Goal() { + goalType_ = 0; + unitType_ = 0; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new Goal(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalProto + .internal_static_google_ads_admanager_v1_Goal_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.GoalProto + .internal_static_google_ads_admanager_v1_Goal_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.Goal.class, com.google.ads.admanager.v1.Goal.Builder.class); + } + + private int bitField0_; + public static final int GOAL_TYPE_FIELD_NUMBER = 1; + private int goalType_ = 0; + + /** + * + * + *
+   * The type of the goal for the LineItem. It defines the period over which the
+   * goal should be reached.
+   * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return Whether the goalType field is set. + */ + @java.lang.Override + public boolean hasGoalType() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * The type of the goal for the LineItem. It defines the period over which the
+   * goal should be reached.
+   * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return The enum numeric value on the wire for goalType. + */ + @java.lang.Override + public int getGoalTypeValue() { + return goalType_; + } + + /** + * + * + *
+   * The type of the goal for the LineItem. It defines the period over which the
+   * goal should be reached.
+   * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return The goalType. + */ + @java.lang.Override + public com.google.ads.admanager.v1.GoalTypeEnum.GoalType getGoalType() { + com.google.ads.admanager.v1.GoalTypeEnum.GoalType result = + com.google.ads.admanager.v1.GoalTypeEnum.GoalType.forNumber(goalType_); + return result == null ? com.google.ads.admanager.v1.GoalTypeEnum.GoalType.UNRECOGNIZED : result; + } + + public static final int UNIT_TYPE_FIELD_NUMBER = 2; + private int unitType_ = 0; + + /** + * + * + *
+   * The type of the goal unit for the LineItem.
+   * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return Whether the unitType field is set. + */ + @java.lang.Override + public boolean hasUnitType() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * The type of the goal unit for the LineItem.
+   * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return The enum numeric value on the wire for unitType. + */ + @java.lang.Override + public int getUnitTypeValue() { + return unitType_; + } + + /** + * + * + *
+   * The type of the goal unit for the LineItem.
+   * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return The unitType. + */ + @java.lang.Override + public com.google.ads.admanager.v1.UnitTypeEnum.UnitType getUnitType() { + com.google.ads.admanager.v1.UnitTypeEnum.UnitType result = + com.google.ads.admanager.v1.UnitTypeEnum.UnitType.forNumber(unitType_); + return result == null ? com.google.ads.admanager.v1.UnitTypeEnum.UnitType.UNRECOGNIZED : result; + } + + public static final int UNITS_FIELD_NUMBER = 3; + private long units_ = 0L; + + /** + * + * + *
+   * If this is a primary goal, it represents the number or percentage of
+   * impressions or clicks that will be reserved. If the line item is of type
+   * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+   * it represents the percentage of available impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+   * or
+   * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+   * it represents the number of remaining impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+   * or
+   * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+   * it represents the percentage of remaining impressions reserved. <p>If this
+   * is an impression cap goal, it represents the number of impressions or
+   * conversions that the line item will stop serving at if reached. For valid
+   * line item types, see [LineItem.impressions_cap][].
+   * 
+ * + * optional int64 units = 3; + * + * @return Whether the units field is set. + */ + @java.lang.Override + public boolean hasUnits() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+   * If this is a primary goal, it represents the number or percentage of
+   * impressions or clicks that will be reserved. If the line item is of type
+   * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+   * it represents the percentage of available impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+   * or
+   * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+   * it represents the number of remaining impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+   * or
+   * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+   * it represents the percentage of remaining impressions reserved. <p>If this
+   * is an impression cap goal, it represents the number of impressions or
+   * conversions that the line item will stop serving at if reached. For valid
+   * line item types, see [LineItem.impressions_cap][].
+   * 
+ * + * optional int64 units = 3; + * + * @return The units. + */ + @java.lang.Override + public long getUnits() { + return units_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeEnum(1, goalType_); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeEnum(2, unitType_); + } + if (((bitField0_ & 0x00000004) != 0)) { + output.writeInt64(3, units_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeEnumSize(1, goalType_); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeEnumSize(2, unitType_); + } + if (((bitField0_ & 0x00000004) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(3, units_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.Goal)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.Goal other = (com.google.ads.admanager.v1.Goal) obj; + + if (hasGoalType() != other.hasGoalType()) return false; + if (hasGoalType()) { + if (goalType_ != other.goalType_) return false; + } + if (hasUnitType() != other.hasUnitType()) return false; + if (hasUnitType()) { + if (unitType_ != other.unitType_) return false; + } + if (hasUnits() != other.hasUnits()) return false; + if (hasUnits()) { + if (getUnits() != other.getUnits()) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasGoalType()) { + hash = (37 * hash) + GOAL_TYPE_FIELD_NUMBER; + hash = (53 * hash) + goalType_; + } + if (hasUnitType()) { + hash = (37 * hash) + UNIT_TYPE_FIELD_NUMBER; + hash = (53 * hash) + unitType_; + } + if (hasUnits()) { + hash = (37 * hash) + UNITS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getUnits()); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.Goal parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.Goal parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.Goal parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.Goal parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.Goal parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.Goal parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.Goal parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.Goal parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.Goal parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.Goal parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.Goal parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.Goal parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.Goal prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Defines the criteria a [LineItem][google.ads.admanager.v1.LineItem] needs to
+   * satisfy to meet its delivery goal.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.Goal} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.Goal) + com.google.ads.admanager.v1.GoalOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalProto + .internal_static_google_ads_admanager_v1_Goal_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.GoalProto + .internal_static_google_ads_admanager_v1_Goal_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.Goal.class, + com.google.ads.admanager.v1.Goal.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.Goal.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + goalType_ = 0; + unitType_ = 0; + units_ = 0L; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.GoalProto + .internal_static_google_ads_admanager_v1_Goal_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.Goal getDefaultInstanceForType() { + return com.google.ads.admanager.v1.Goal.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.Goal build() { + com.google.ads.admanager.v1.Goal result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.Goal buildPartial() { + com.google.ads.admanager.v1.Goal result = new com.google.ads.admanager.v1.Goal(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.Goal result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.goalType_ = goalType_; + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.unitType_ = unitType_; + to_bitField0_ |= 0x00000002; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.units_ = units_; + to_bitField0_ |= 0x00000004; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.Goal) { + return mergeFrom((com.google.ads.admanager.v1.Goal) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.Goal other) { + if (other == com.google.ads.admanager.v1.Goal.getDefaultInstance()) return this; + if (other.hasGoalType()) { + setGoalType(other.getGoalType()); + } + if (other.hasUnitType()) { + setUnitType(other.getUnitType()); + } + if (other.hasUnits()) { + setUnits(other.getUnits()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: + { + goalType_ = input.readEnum(); + bitField0_ |= 0x00000001; + break; + } // case 8 + case 16: + { + unitType_ = input.readEnum(); + bitField0_ |= 0x00000002; + break; + } // case 16 + case 24: + { + units_ = input.readInt64(); + bitField0_ |= 0x00000004; + break; + } // case 24 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private int goalType_ = 0; + + /** + * + * + *
+     * The type of the goal for the LineItem. It defines the period over which the
+     * goal should be reached.
+     * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return Whether the goalType field is set. + */ + @java.lang.Override + public boolean hasGoalType() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+     * The type of the goal for the LineItem. It defines the period over which the
+     * goal should be reached.
+     * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return The enum numeric value on the wire for goalType. + */ + @java.lang.Override + public int getGoalTypeValue() { + return goalType_; + } + + /** + * + * + *
+     * The type of the goal for the LineItem. It defines the period over which the
+     * goal should be reached.
+     * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @param value The enum numeric value on the wire for goalType to set. + * @return This builder for chaining. + */ + public Builder setGoalTypeValue(int value) { + goalType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * The type of the goal for the LineItem. It defines the period over which the
+     * goal should be reached.
+     * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return The goalType. + */ + @java.lang.Override + public com.google.ads.admanager.v1.GoalTypeEnum.GoalType getGoalType() { + com.google.ads.admanager.v1.GoalTypeEnum.GoalType result = + com.google.ads.admanager.v1.GoalTypeEnum.GoalType.forNumber(goalType_); + return result == null + ? com.google.ads.admanager.v1.GoalTypeEnum.GoalType.UNRECOGNIZED + : result; + } + + /** + * + * + *
+     * The type of the goal for the LineItem. It defines the period over which the
+     * goal should be reached.
+     * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @param value The goalType to set. + * @return This builder for chaining. + */ + public Builder setGoalType(com.google.ads.admanager.v1.GoalTypeEnum.GoalType value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000001; + goalType_ = value.getNumber(); + onChanged(); + return this; + } + + /** + * + * + *
+     * The type of the goal for the LineItem. It defines the period over which the
+     * goal should be reached.
+     * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return This builder for chaining. + */ + public Builder clearGoalType() { + bitField0_ = (bitField0_ & ~0x00000001); + goalType_ = 0; + onChanged(); + return this; + } + + private int unitType_ = 0; + + /** + * + * + *
+     * The type of the goal unit for the LineItem.
+     * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return Whether the unitType field is set. + */ + @java.lang.Override + public boolean hasUnitType() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * The type of the goal unit for the LineItem.
+     * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return The enum numeric value on the wire for unitType. + */ + @java.lang.Override + public int getUnitTypeValue() { + return unitType_; + } + + /** + * + * + *
+     * The type of the goal unit for the LineItem.
+     * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @param value The enum numeric value on the wire for unitType to set. + * @return This builder for chaining. + */ + public Builder setUnitTypeValue(int value) { + unitType_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * The type of the goal unit for the LineItem.
+     * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return The unitType. + */ + @java.lang.Override + public com.google.ads.admanager.v1.UnitTypeEnum.UnitType getUnitType() { + com.google.ads.admanager.v1.UnitTypeEnum.UnitType result = + com.google.ads.admanager.v1.UnitTypeEnum.UnitType.forNumber(unitType_); + return result == null + ? com.google.ads.admanager.v1.UnitTypeEnum.UnitType.UNRECOGNIZED + : result; + } + + /** + * + * + *
+     * The type of the goal unit for the LineItem.
+     * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @param value The unitType to set. + * @return This builder for chaining. + */ + public Builder setUnitType(com.google.ads.admanager.v1.UnitTypeEnum.UnitType value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000002; + unitType_ = value.getNumber(); + onChanged(); + return this; + } + + /** + * + * + *
+     * The type of the goal unit for the LineItem.
+     * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return This builder for chaining. + */ + public Builder clearUnitType() { + bitField0_ = (bitField0_ & ~0x00000002); + unitType_ = 0; + onChanged(); + return this; + } + + private long units_; + + /** + * + * + *
+     * If this is a primary goal, it represents the number or percentage of
+     * impressions or clicks that will be reserved. If the line item is of type
+     * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+     * it represents the percentage of available impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * or
+     * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+     * it represents the number of remaining impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+     * or
+     * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+     * it represents the percentage of remaining impressions reserved. <p>If this
+     * is an impression cap goal, it represents the number of impressions or
+     * conversions that the line item will stop serving at if reached. For valid
+     * line item types, see [LineItem.impressions_cap][].
+     * 
+ * + * optional int64 units = 3; + * + * @return Whether the units field is set. + */ + @java.lang.Override + public boolean hasUnits() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+     * If this is a primary goal, it represents the number or percentage of
+     * impressions or clicks that will be reserved. If the line item is of type
+     * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+     * it represents the percentage of available impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * or
+     * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+     * it represents the number of remaining impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+     * or
+     * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+     * it represents the percentage of remaining impressions reserved. <p>If this
+     * is an impression cap goal, it represents the number of impressions or
+     * conversions that the line item will stop serving at if reached. For valid
+     * line item types, see [LineItem.impressions_cap][].
+     * 
+ * + * optional int64 units = 3; + * + * @return The units. + */ + @java.lang.Override + public long getUnits() { + return units_; + } + + /** + * + * + *
+     * If this is a primary goal, it represents the number or percentage of
+     * impressions or clicks that will be reserved. If the line item is of type
+     * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+     * it represents the percentage of available impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * or
+     * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+     * it represents the number of remaining impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+     * or
+     * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+     * it represents the percentage of remaining impressions reserved. <p>If this
+     * is an impression cap goal, it represents the number of impressions or
+     * conversions that the line item will stop serving at if reached. For valid
+     * line item types, see [LineItem.impressions_cap][].
+     * 
+ * + * optional int64 units = 3; + * + * @param value The units to set. + * @return This builder for chaining. + */ + public Builder setUnits(long value) { + + units_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * If this is a primary goal, it represents the number or percentage of
+     * impressions or clicks that will be reserved. If the line item is of type
+     * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+     * it represents the percentage of available impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * or
+     * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+     * it represents the number of remaining impressions reserved. If the line
+     * item is of type
+     * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+     * or
+     * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+     * it represents the percentage of remaining impressions reserved. <p>If this
+     * is an impression cap goal, it represents the number of impressions or
+     * conversions that the line item will stop serving at if reached. For valid
+     * line item types, see [LineItem.impressions_cap][].
+     * 
+ * + * optional int64 units = 3; + * + * @return This builder for chaining. + */ + public Builder clearUnits() { + bitField0_ = (bitField0_ & ~0x00000004); + units_ = 0L; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.Goal) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.Goal) + private static final com.google.ads.admanager.v1.Goal DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.Goal(); + } + + public static com.google.ads.admanager.v1.Goal getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public Goal parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.Goal getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalEnumsProto.java new file mode 100644 index 000000000000..fc14cbff5867 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalEnumsProto.java @@ -0,0 +1,90 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public final class GoalEnumsProto { + private GoalEnumsProto() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_GoalTypeEnum_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_GoalTypeEnum_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_UnitTypeEnum_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_UnitTypeEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n" + + "(google/ads/admanager/v1/goal_enums.proto\022\027google.ads.admanager.v1\"X\n" + + "\014GoalTypeEnum\"H\n" + + "\010GoalType\022\031\n" + + "\025GOAL_TYPE_UNSPECIFIED\020\000\022\010\n" + + "\004NONE\020\001\022\014\n" + + "\010LIFETIME\020\002\022\t\n" + + "\005DAILY\020\003\"\350\001\n" + + "\014UnitTypeEnum\"\327\001\n" + + "\010UnitType\022\031\n" + + "\025UNIT_TYPE_UNSPECIFIED\020\000\022\017\n" + + "\013IMPRESSIONS\020\001\022\n\n" + + "\006CLICKS\020\002\022!\n" + + "\035CLICK_THROUGH_CPA_CONVERSIONS\020\003\022 \n" + + "\034VIEW_THROUGH_CPA_CONVERSIONS\020\004\022\031\n" + + "\025TOTAL_CPA_CONVERSIONS\020\005\022\030\n" + + "\024VIEWABLE_IMPRESSIONS\020\006\022\031\n" + + "\025IN_TARGET_IMPRESSIONS\020\007B\302\001\n" + + "\033com.google.ads.admanager.v1B\016GoalEnumsProto" + + "P\001Z@google.golang.org/genproto/googleapi" + + "s/ads/admanager/v1;admanager\252\002\027Google.Ad" + + "s.AdManager.V1\312\002\027Google\\Ads\\AdManager\\V1" + + "\352\002\032Google::Ads::AdManager::V1b\006proto3" + }; + descriptor = + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}); + internal_static_google_ads_admanager_v1_GoalTypeEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_admanager_v1_GoalTypeEnum_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_GoalTypeEnum_descriptor, + new java.lang.String[] {}); + internal_static_google_ads_admanager_v1_UnitTypeEnum_descriptor = + getDescriptor().getMessageTypes().get(1); + internal_static_google_ads_admanager_v1_UnitTypeEnum_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_UnitTypeEnum_descriptor, + new java.lang.String[] {}); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalOrBuilder.java new file mode 100644 index 000000000000..3897d3d9d144 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalOrBuilder.java @@ -0,0 +1,165 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface GoalOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.Goal) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The type of the goal for the LineItem. It defines the period over which the
+   * goal should be reached.
+   * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return Whether the goalType field is set. + */ + boolean hasGoalType(); + + /** + * + * + *
+   * The type of the goal for the LineItem. It defines the period over which the
+   * goal should be reached.
+   * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return The enum numeric value on the wire for goalType. + */ + int getGoalTypeValue(); + + /** + * + * + *
+   * The type of the goal for the LineItem. It defines the period over which the
+   * goal should be reached.
+   * 
+ * + * optional .google.ads.admanager.v1.GoalTypeEnum.GoalType goal_type = 1; + * + * @return The goalType. + */ + com.google.ads.admanager.v1.GoalTypeEnum.GoalType getGoalType(); + + /** + * + * + *
+   * The type of the goal unit for the LineItem.
+   * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return Whether the unitType field is set. + */ + boolean hasUnitType(); + + /** + * + * + *
+   * The type of the goal unit for the LineItem.
+   * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return The enum numeric value on the wire for unitType. + */ + int getUnitTypeValue(); + + /** + * + * + *
+   * The type of the goal unit for the LineItem.
+   * 
+ * + * optional .google.ads.admanager.v1.UnitTypeEnum.UnitType unit_type = 2; + * + * @return The unitType. + */ + com.google.ads.admanager.v1.UnitTypeEnum.UnitType getUnitType(); + + /** + * + * + *
+   * If this is a primary goal, it represents the number or percentage of
+   * impressions or clicks that will be reserved. If the line item is of type
+   * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+   * it represents the percentage of available impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+   * or
+   * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+   * it represents the number of remaining impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+   * or
+   * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+   * it represents the percentage of remaining impressions reserved. <p>If this
+   * is an impression cap goal, it represents the number of impressions or
+   * conversions that the line item will stop serving at if reached. For valid
+   * line item types, see [LineItem.impressions_cap][].
+   * 
+ * + * optional int64 units = 3; + * + * @return Whether the units field is set. + */ + boolean hasUnits(); + + /** + * + * + *
+   * If this is a primary goal, it represents the number or percentage of
+   * impressions or clicks that will be reserved. If the line item is of type
+   * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP],
+   * it represents the percentage of available impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+   * or
+   * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY],
+   * it represents the number of remaining impressions reserved. If the line
+   * item is of type
+   * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+   * or
+   * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE],
+   * it represents the percentage of remaining impressions reserved. <p>If this
+   * is an impression cap goal, it represents the number of impressions or
+   * conversions that the line item will stop serving at if reached. For valid
+   * line item types, see [LineItem.impressions_cap][].
+   * 
+ * + * optional int64 units = 3; + * + * @return The units. + */ + long getUnits(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalProto.java new file mode 100644 index 000000000000..bab98b9ac347 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalProto.java @@ -0,0 +1,80 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public final class GoalProto { + private GoalProto() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_Goal_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_Goal_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n" + + "\"google/ads/admanager/v1/goal.proto\022\027go" + + "ogle.ads.admanager.v1\032(google/ads/admanager/v1/goal_enums.proto\"\320\001\n" + + "\004Goal\022F\n" + + "\tgoal_type\030\001" + + " \001(\0162..google.ads.admanager.v1.GoalTypeEnum.GoalTypeH\000\210\001\001\022F\n" + + "\tunit_type\030\002 " + + "\001(\0162..google.ads.admanager.v1.UnitTypeEnum.UnitTypeH\001\210\001\001\022\022\n" + + "\005units\030\003 \001(\003H\002\210\001\001B\014\n\n" + + "_goal_typeB\014\n\n" + + "_unit_typeB\010\n" + + "\006_unitsB\275\001\n" + + "\033com.google.ads.admanager.v1B\tGoalProtoP\001Z" + + "@google.golang.org/genproto/googleapis/a" + + "ds/admanager/v1;admanager\252\002\027Google.Ads.A" + + "dManager.V1\312\002\027Google\\Ads\\AdManager\\V1\352\002\032" + + "Google::Ads::AdManager::V1b\006proto3" + }; + descriptor = + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.ads.admanager.v1.GoalEnumsProto.getDescriptor(), + }); + internal_static_google_ads_admanager_v1_Goal_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_admanager_v1_Goal_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_Goal_descriptor, + new java.lang.String[] { + "GoalType", "UnitType", "Units", + }); + com.google.ads.admanager.v1.GoalEnumsProto.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalTypeEnum.java new file mode 100644 index 000000000000..f42837d64e0b --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalTypeEnum.java @@ -0,0 +1,672 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Wrapper message for
+ * [GoalType][google.ads.admanager.v1.GoalTypeEnum.GoalType].
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.GoalTypeEnum} + */ +public final class GoalTypeEnum extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.GoalTypeEnum) + GoalTypeEnumOrBuilder { + private static final long serialVersionUID = 0L; + + // Use GoalTypeEnum.newBuilder() to construct. + private GoalTypeEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private GoalTypeEnum() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new GoalTypeEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_GoalTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_GoalTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.GoalTypeEnum.class, + com.google.ads.admanager.v1.GoalTypeEnum.Builder.class); + } + + /** + * + * + *
+   * Specifies the type of the goal for a LineItem.
+   * 
+ * + * Protobuf enum {@code google.ads.admanager.v1.GoalTypeEnum.GoalType} + */ + public enum GoalType implements com.google.protobuf.ProtocolMessageEnum { + /** + * + * + *
+     * Default value. This value is unused.
+     * 
+ * + * GOAL_TYPE_UNSPECIFIED = 0; + */ + GOAL_TYPE_UNSPECIFIED(0), + /** + * + * + *
+     * No goal is specified for the number of ads delivered.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE]
+     * * [LineItemTypeEnum.LineItemType.CLICK_TRACKING][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.CLICK_TRACKING]
+     * 
+ * + * NONE = 1; + */ + NONE(1), + /** + * + * + *
+     * There is a goal on the number of ads delivered for this line item during
+     * its entire lifetime.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD]
+     * * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * * [LineItemTypeEnum.LineItemType.ADSENSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.ADSENSE]
+     * * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE]
+     * * [LineItemTypeEnum.LineItemType.ADMOB][]
+     * * [LineItemTypeEnum.LineItemType.CLICK_TRACKING][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.CLICK_TRACKING]
+     * 
+ * + * LIFETIME = 2; + */ + LIFETIME(2), + /** + * + * + *
+     * There is a daily goal on the number of ads delivered for this line item.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP]
+     * * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE]
+     * * [LineItemTypeEnum.LineItemType.ADSENSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.ADSENSE]
+     * * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE]
+     * * [LineItemTypeEnum.LineItemType.ADMOB][]
+     * * [LineItemTypeEnum.LineItemType.BUMPER][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BUMPER]
+     * 
+ * + * DAILY = 3; + */ + DAILY(3), + UNRECOGNIZED(-1), + ; + + /** + * + * + *
+     * Default value. This value is unused.
+     * 
+ * + * GOAL_TYPE_UNSPECIFIED = 0; + */ + public static final int GOAL_TYPE_UNSPECIFIED_VALUE = 0; + + /** + * + * + *
+     * No goal is specified for the number of ads delivered.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE]
+     * * [LineItemTypeEnum.LineItemType.CLICK_TRACKING][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.CLICK_TRACKING]
+     * 
+ * + * NONE = 1; + */ + public static final int NONE_VALUE = 1; + + /** + * + * + *
+     * There is a goal on the number of ads delivered for this line item during
+     * its entire lifetime.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD]
+     * * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * * [LineItemTypeEnum.LineItemType.ADSENSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.ADSENSE]
+     * * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE]
+     * * [LineItemTypeEnum.LineItemType.ADMOB][]
+     * * [LineItemTypeEnum.LineItemType.CLICK_TRACKING][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.CLICK_TRACKING]
+     * 
+ * + * LIFETIME = 2; + */ + public static final int LIFETIME_VALUE = 2; + + /** + * + * + *
+     * There is a daily goal on the number of ads delivered for this line item.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP]
+     * * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK]
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE]
+     * * [LineItemTypeEnum.LineItemType.ADSENSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.ADSENSE]
+     * * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE]
+     * * [LineItemTypeEnum.LineItemType.ADMOB][]
+     * * [LineItemTypeEnum.LineItemType.BUMPER][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BUMPER]
+     * 
+ * + * DAILY = 3; + */ + public static final int DAILY_VALUE = 3; + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static GoalType valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static GoalType forNumber(int value) { + switch (value) { + case 0: + return GOAL_TYPE_UNSPECIFIED; + case 1: + return NONE; + case 2: + return LIFETIME; + case 3: + return DAILY; + default: + return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { + return internalValueMap; + } + + private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public GoalType findValueByNumber(int number) { + return GoalType.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + + public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + return getDescriptor(); + } + + public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalTypeEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final GoalType[] VALUES = values(); + + public static GoalType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private GoalType(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.admanager.v1.GoalTypeEnum.GoalType) + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.GoalTypeEnum)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.GoalTypeEnum other = (com.google.ads.admanager.v1.GoalTypeEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.GoalTypeEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Wrapper message for
+   * [GoalType][google.ads.admanager.v1.GoalTypeEnum.GoalType].
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.GoalTypeEnum} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.GoalTypeEnum) + com.google.ads.admanager.v1.GoalTypeEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_GoalTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_GoalTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.GoalTypeEnum.class, + com.google.ads.admanager.v1.GoalTypeEnum.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.GoalTypeEnum.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_GoalTypeEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.GoalTypeEnum getDefaultInstanceForType() { + return com.google.ads.admanager.v1.GoalTypeEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.GoalTypeEnum build() { + com.google.ads.admanager.v1.GoalTypeEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.GoalTypeEnum buildPartial() { + com.google.ads.admanager.v1.GoalTypeEnum result = + new com.google.ads.admanager.v1.GoalTypeEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.GoalTypeEnum) { + return mergeFrom((com.google.ads.admanager.v1.GoalTypeEnum) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.GoalTypeEnum other) { + if (other == com.google.ads.admanager.v1.GoalTypeEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.GoalTypeEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.GoalTypeEnum) + private static final com.google.ads.admanager.v1.GoalTypeEnum DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.GoalTypeEnum(); + } + + public static com.google.ads.admanager.v1.GoalTypeEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public GoalTypeEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.GoalTypeEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalTypeEnumOrBuilder.java new file mode 100644 index 000000000000..ec4873870687 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/GoalTypeEnumOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface GoalTypeEnumOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.GoalTypeEnum) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargeting.java index b9c1ef5b1eae..25089baf1833 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargetingOrBuilder.java index 96a20aeb0060..201f25b209a1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/InventoryTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Label.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Label.java index c7f5180b686c..088f0596b79c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Label.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Label.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCap.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCap.java index a354297ef0d9..a51f56230a6e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCap.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCap.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCapOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCapOrBuilder.java index ff83b91d0819..e9c056ff81e7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCapOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelFrequencyCapOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelMessagesProto.java index 6a3abd48095a..7e9a27e26985 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelOrBuilder.java index 2e4a4d7a7715..67e6230ac959 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LabelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItem.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItem.java new file mode 100644 index 000000000000..53bfd93bd146 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItem.java @@ -0,0 +1,3439 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_messages.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * A LineItem contains information about how specific ad creatives are intended
+ * to serve to your website or app along with pricing and other delivery
+ * details.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.LineItem} + */ +public final class LineItem extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.LineItem) + LineItemOrBuilder { + private static final long serialVersionUID = 0L; + + // Use LineItem.newBuilder() to construct. + private LineItem(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private LineItem() { + name_ = ""; + order_ = ""; + displayName_ = ""; + lineItemType_ = 0; + customFieldValues_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new LineItem(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemMessagesProto + .internal_static_google_ads_admanager_v1_LineItem_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemMessagesProto + .internal_static_google_ads_admanager_v1_LineItem_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.LineItem.class, + com.google.ads.admanager.v1.LineItem.Builder.class); + } + + private int bitField0_; + public static final int NAME_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object name_ = ""; + + /** + * + * + *
+   * Identifier. The resource name of the `LineItem`.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return The name. + */ + @java.lang.Override + public java.lang.String getName() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; + return s; + } + } + + /** + * + * + *
+   * Identifier. The resource name of the `LineItem`.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return The bytes for name. + */ + @java.lang.Override + public com.google.protobuf.ByteString getNameBytes() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + name_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ORDER_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object order_ = ""; + + /** + * + * + *
+   * Output only. The ID of the Order to which the LineItem belongs. This
+   * attribute is required. Format: `networks/{network_code}/orders/{order}`
+   * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return Whether the order field is set. + */ + @java.lang.Override + public boolean hasOrder() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Output only. The ID of the Order to which the LineItem belongs. This
+   * attribute is required. Format: `networks/{network_code}/orders/{order}`
+   * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return The order. + */ + @java.lang.Override + public java.lang.String getOrder() { + java.lang.Object ref = order_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + order_ = s; + return s; + } + } + + /** + * + * + *
+   * Output only. The ID of the Order to which the LineItem belongs. This
+   * attribute is required. Format: `networks/{network_code}/orders/{order}`
+   * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for order. + */ + @java.lang.Override + public com.google.protobuf.ByteString getOrderBytes() { + java.lang.Object ref = order_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + order_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int DISPLAY_NAME_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object displayName_ = ""; + + /** + * + * + *
+   * Required. The name of the line item. This attribute is required and has a
+   * maximum length of 255 characters.
+   * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return Whether the displayName field is set. + */ + @java.lang.Override + public boolean hasDisplayName() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * Required. The name of the line item. This attribute is required and has a
+   * maximum length of 255 characters.
+   * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The displayName. + */ + @java.lang.Override + public java.lang.String getDisplayName() { + java.lang.Object ref = displayName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + displayName_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The name of the line item. This attribute is required and has a
+   * maximum length of 255 characters.
+   * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for displayName. + */ + @java.lang.Override + public com.google.protobuf.ByteString getDisplayNameBytes() { + java.lang.Object ref = displayName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + displayName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int START_TIME_FIELD_NUMBER = 6; + private com.google.protobuf.Timestamp startTime_; + + /** + * + * + *
+   * Required. The date and time on which the LineItem is enabled to begin
+   * serving. This attribute is required and must be in the future.
+   * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the startTime field is set. + */ + @java.lang.Override + public boolean hasStartTime() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+   * Required. The date and time on which the LineItem is enabled to begin
+   * serving. This attribute is required and must be in the future.
+   * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The startTime. + */ + @java.lang.Override + public com.google.protobuf.Timestamp getStartTime() { + return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_; + } + + /** + * + * + *
+   * Required. The date and time on which the LineItem is enabled to begin
+   * serving. This attribute is required and must be in the future.
+   * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() { + return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_; + } + + public static final int END_TIME_FIELD_NUMBER = 7; + private com.google.protobuf.Timestamp endTime_; + + /** + * + * + *
+   * Output only. The timestamp when the LineItem will stop serving. This
+   * attribute is read-only and includes auto extension days.
+   * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return Whether the endTime field is set. + */ + @java.lang.Override + public boolean hasEndTime() { + return ((bitField0_ & 0x00000008) != 0); + } + + /** + * + * + *
+   * Output only. The timestamp when the LineItem will stop serving. This
+   * attribute is read-only and includes auto extension days.
+   * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return The endTime. + */ + @java.lang.Override + public com.google.protobuf.Timestamp getEndTime() { + return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_; + } + + /** + * + * + *
+   * Output only. The timestamp when the LineItem will stop serving. This
+   * attribute is read-only and includes auto extension days.
+   * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() { + return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_; + } + + public static final int LINE_ITEM_TYPE_FIELD_NUMBER = 17; + private int lineItemType_ = 0; + + /** + * + * + *
+   * Required. Indicates the line item type of a LineItem. This attribute is
+   * required. The line item type determines the default priority of the line
+   * item. More information can be found at
+   * https://support.google.com/admanager/answer/177279.
+   * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the lineItemType field is set. + */ + @java.lang.Override + public boolean hasLineItemType() { + return ((bitField0_ & 0x00000010) != 0); + } + + /** + * + * + *
+   * Required. Indicates the line item type of a LineItem. This attribute is
+   * required. The line item type determines the default priority of the line
+   * item. More information can be found at
+   * https://support.google.com/admanager/answer/177279.
+   * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The enum numeric value on the wire for lineItemType. + */ + @java.lang.Override + public int getLineItemTypeValue() { + return lineItemType_; + } + + /** + * + * + *
+   * Required. Indicates the line item type of a LineItem. This attribute is
+   * required. The line item type determines the default priority of the line
+   * item. More information can be found at
+   * https://support.google.com/admanager/answer/177279.
+   * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The lineItemType. + */ + @java.lang.Override + public com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType getLineItemType() { + com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType result = + com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType.forNumber(lineItemType_); + return result == null + ? com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType.UNRECOGNIZED + : result; + } + + public static final int RATE_FIELD_NUMBER = 20; + private com.google.type.Money rate_; + + /** + * + * + *
+   * Required. The amount of money to spend per impression or click.
+   * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + * + * @return Whether the rate field is set. + */ + @java.lang.Override + public boolean hasRate() { + return ((bitField0_ & 0x00000020) != 0); + } + + /** + * + * + *
+   * Required. The amount of money to spend per impression or click.
+   * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The rate. + */ + @java.lang.Override + public com.google.type.Money getRate() { + return rate_ == null ? com.google.type.Money.getDefaultInstance() : rate_; + } + + /** + * + * + *
+   * Required. The amount of money to spend per impression or click.
+   * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.type.MoneyOrBuilder getRateOrBuilder() { + return rate_ == null ? com.google.type.Money.getDefaultInstance() : rate_; + } + + public static final int BUDGET_FIELD_NUMBER = 35; + private com.google.type.Money budget_; + + /** + * + * + *
+   * Output only. The amount of money allocated to the LineItem. This attribute
+   * is readonly and is populated by Google. The currency code is readonly.
+   * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return Whether the budget field is set. + */ + @java.lang.Override + public boolean hasBudget() { + return ((bitField0_ & 0x00000040) != 0); + } + + /** + * + * + *
+   * Output only. The amount of money allocated to the LineItem. This attribute
+   * is readonly and is populated by Google. The currency code is readonly.
+   * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return The budget. + */ + @java.lang.Override + public com.google.type.Money getBudget() { + return budget_ == null ? com.google.type.Money.getDefaultInstance() : budget_; + } + + /** + * + * + *
+   * Output only. The amount of money allocated to the LineItem. This attribute
+   * is readonly and is populated by Google. The currency code is readonly.
+   * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public com.google.type.MoneyOrBuilder getBudgetOrBuilder() { + return budget_ == null ? com.google.type.Money.getDefaultInstance() : budget_; + } + + public static final int CUSTOM_FIELD_VALUES_FIELD_NUMBER = 59; + + @SuppressWarnings("serial") + private java.util.List customFieldValues_; + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List getCustomFieldValuesList() { + return customFieldValues_; + } + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getCustomFieldValuesOrBuilderList() { + return customFieldValues_; + } + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public int getCustomFieldValuesCount() { + return customFieldValues_.size(); + } + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomFieldValue getCustomFieldValues(int index) { + return customFieldValues_.get(index); + } + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomFieldValueOrBuilder getCustomFieldValuesOrBuilder( + int index) { + return customFieldValues_.get(index); + } + + public static final int GOAL_FIELD_NUMBER = 76; + private com.google.ads.admanager.v1.Goal goal_; + + /** + * + * + *
+   * Optional. The primary goal that this LineItem is associated with, which is
+   * used in its pacing and budgeting.
+   * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the goal field is set. + */ + @java.lang.Override + public boolean hasGoal() { + return ((bitField0_ & 0x00000080) != 0); + } + + /** + * + * + *
+   * Optional. The primary goal that this LineItem is associated with, which is
+   * used in its pacing and budgeting.
+   * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The goal. + */ + @java.lang.Override + public com.google.ads.admanager.v1.Goal getGoal() { + return goal_ == null ? com.google.ads.admanager.v1.Goal.getDefaultInstance() : goal_; + } + + /** + * + * + *
+   * Optional. The primary goal that this LineItem is associated with, which is
+   * used in its pacing and budgeting.
+   * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.GoalOrBuilder getGoalOrBuilder() { + return goal_ == null ? com.google.ads.admanager.v1.Goal.getDefaultInstance() : goal_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); + } + if (((bitField0_ & 0x00000001) != 0)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, order_); + } + if (((bitField0_ & 0x00000002) != 0)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, displayName_); + } + if (((bitField0_ & 0x00000004) != 0)) { + output.writeMessage(6, getStartTime()); + } + if (((bitField0_ & 0x00000008) != 0)) { + output.writeMessage(7, getEndTime()); + } + if (((bitField0_ & 0x00000010) != 0)) { + output.writeEnum(17, lineItemType_); + } + if (((bitField0_ & 0x00000020) != 0)) { + output.writeMessage(20, getRate()); + } + if (((bitField0_ & 0x00000040) != 0)) { + output.writeMessage(35, getBudget()); + } + for (int i = 0; i < customFieldValues_.size(); i++) { + output.writeMessage(59, customFieldValues_.get(i)); + } + if (((bitField0_ & 0x00000080) != 0)) { + output.writeMessage(76, getGoal()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, order_); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, displayName_); + } + if (((bitField0_ & 0x00000004) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getStartTime()); + } + if (((bitField0_ & 0x00000008) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getEndTime()); + } + if (((bitField0_ & 0x00000010) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeEnumSize(17, lineItemType_); + } + if (((bitField0_ & 0x00000020) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(20, getRate()); + } + if (((bitField0_ & 0x00000040) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(35, getBudget()); + } + for (int i = 0; i < customFieldValues_.size(); i++) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(59, customFieldValues_.get(i)); + } + if (((bitField0_ & 0x00000080) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(76, getGoal()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.LineItem)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.LineItem other = (com.google.ads.admanager.v1.LineItem) obj; + + if (!getName().equals(other.getName())) return false; + if (hasOrder() != other.hasOrder()) return false; + if (hasOrder()) { + if (!getOrder().equals(other.getOrder())) return false; + } + if (hasDisplayName() != other.hasDisplayName()) return false; + if (hasDisplayName()) { + if (!getDisplayName().equals(other.getDisplayName())) return false; + } + if (hasStartTime() != other.hasStartTime()) return false; + if (hasStartTime()) { + if (!getStartTime().equals(other.getStartTime())) return false; + } + if (hasEndTime() != other.hasEndTime()) return false; + if (hasEndTime()) { + if (!getEndTime().equals(other.getEndTime())) return false; + } + if (hasLineItemType() != other.hasLineItemType()) return false; + if (hasLineItemType()) { + if (lineItemType_ != other.lineItemType_) return false; + } + if (hasRate() != other.hasRate()) return false; + if (hasRate()) { + if (!getRate().equals(other.getRate())) return false; + } + if (hasBudget() != other.hasBudget()) return false; + if (hasBudget()) { + if (!getBudget().equals(other.getBudget())) return false; + } + if (!getCustomFieldValuesList().equals(other.getCustomFieldValuesList())) return false; + if (hasGoal() != other.hasGoal()) return false; + if (hasGoal()) { + if (!getGoal().equals(other.getGoal())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + NAME_FIELD_NUMBER; + hash = (53 * hash) + getName().hashCode(); + if (hasOrder()) { + hash = (37 * hash) + ORDER_FIELD_NUMBER; + hash = (53 * hash) + getOrder().hashCode(); + } + if (hasDisplayName()) { + hash = (37 * hash) + DISPLAY_NAME_FIELD_NUMBER; + hash = (53 * hash) + getDisplayName().hashCode(); + } + if (hasStartTime()) { + hash = (37 * hash) + START_TIME_FIELD_NUMBER; + hash = (53 * hash) + getStartTime().hashCode(); + } + if (hasEndTime()) { + hash = (37 * hash) + END_TIME_FIELD_NUMBER; + hash = (53 * hash) + getEndTime().hashCode(); + } + if (hasLineItemType()) { + hash = (37 * hash) + LINE_ITEM_TYPE_FIELD_NUMBER; + hash = (53 * hash) + lineItemType_; + } + if (hasRate()) { + hash = (37 * hash) + RATE_FIELD_NUMBER; + hash = (53 * hash) + getRate().hashCode(); + } + if (hasBudget()) { + hash = (37 * hash) + BUDGET_FIELD_NUMBER; + hash = (53 * hash) + getBudget().hashCode(); + } + if (getCustomFieldValuesCount() > 0) { + hash = (37 * hash) + CUSTOM_FIELD_VALUES_FIELD_NUMBER; + hash = (53 * hash) + getCustomFieldValuesList().hashCode(); + } + if (hasGoal()) { + hash = (37 * hash) + GOAL_FIELD_NUMBER; + hash = (53 * hash) + getGoal().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.LineItem parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItem parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.LineItem parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.LineItem parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.LineItem prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * A LineItem contains information about how specific ad creatives are intended
+   * to serve to your website or app along with pricing and other delivery
+   * details.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.LineItem} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.LineItem) + com.google.ads.admanager.v1.LineItemOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemMessagesProto + .internal_static_google_ads_admanager_v1_LineItem_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemMessagesProto + .internal_static_google_ads_admanager_v1_LineItem_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.LineItem.class, + com.google.ads.admanager.v1.LineItem.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.LineItem.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getStartTimeFieldBuilder(); + getEndTimeFieldBuilder(); + getRateFieldBuilder(); + getBudgetFieldBuilder(); + getCustomFieldValuesFieldBuilder(); + getGoalFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + name_ = ""; + order_ = ""; + displayName_ = ""; + startTime_ = null; + if (startTimeBuilder_ != null) { + startTimeBuilder_.dispose(); + startTimeBuilder_ = null; + } + endTime_ = null; + if (endTimeBuilder_ != null) { + endTimeBuilder_.dispose(); + endTimeBuilder_ = null; + } + lineItemType_ = 0; + rate_ = null; + if (rateBuilder_ != null) { + rateBuilder_.dispose(); + rateBuilder_ = null; + } + budget_ = null; + if (budgetBuilder_ != null) { + budgetBuilder_.dispose(); + budgetBuilder_ = null; + } + if (customFieldValuesBuilder_ == null) { + customFieldValues_ = java.util.Collections.emptyList(); + } else { + customFieldValues_ = null; + customFieldValuesBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000100); + goal_ = null; + if (goalBuilder_ != null) { + goalBuilder_.dispose(); + goalBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.LineItemMessagesProto + .internal_static_google_ads_admanager_v1_LineItem_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItem getDefaultInstanceForType() { + return com.google.ads.admanager.v1.LineItem.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItem build() { + com.google.ads.admanager.v1.LineItem result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItem buildPartial() { + com.google.ads.admanager.v1.LineItem result = new com.google.ads.admanager.v1.LineItem(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields(com.google.ads.admanager.v1.LineItem result) { + if (customFieldValuesBuilder_ == null) { + if (((bitField0_ & 0x00000100) != 0)) { + customFieldValues_ = java.util.Collections.unmodifiableList(customFieldValues_); + bitField0_ = (bitField0_ & ~0x00000100); + } + result.customFieldValues_ = customFieldValues_; + } else { + result.customFieldValues_ = customFieldValuesBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.admanager.v1.LineItem result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.name_ = name_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.order_ = order_; + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.displayName_ = displayName_; + to_bitField0_ |= 0x00000002; + } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.startTime_ = startTimeBuilder_ == null ? startTime_ : startTimeBuilder_.build(); + to_bitField0_ |= 0x00000004; + } + if (((from_bitField0_ & 0x00000010) != 0)) { + result.endTime_ = endTimeBuilder_ == null ? endTime_ : endTimeBuilder_.build(); + to_bitField0_ |= 0x00000008; + } + if (((from_bitField0_ & 0x00000020) != 0)) { + result.lineItemType_ = lineItemType_; + to_bitField0_ |= 0x00000010; + } + if (((from_bitField0_ & 0x00000040) != 0)) { + result.rate_ = rateBuilder_ == null ? rate_ : rateBuilder_.build(); + to_bitField0_ |= 0x00000020; + } + if (((from_bitField0_ & 0x00000080) != 0)) { + result.budget_ = budgetBuilder_ == null ? budget_ : budgetBuilder_.build(); + to_bitField0_ |= 0x00000040; + } + if (((from_bitField0_ & 0x00000200) != 0)) { + result.goal_ = goalBuilder_ == null ? goal_ : goalBuilder_.build(); + to_bitField0_ |= 0x00000080; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.LineItem) { + return mergeFrom((com.google.ads.admanager.v1.LineItem) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.LineItem other) { + if (other == com.google.ads.admanager.v1.LineItem.getDefaultInstance()) return this; + if (!other.getName().isEmpty()) { + name_ = other.name_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasOrder()) { + order_ = other.order_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (other.hasDisplayName()) { + displayName_ = other.displayName_; + bitField0_ |= 0x00000004; + onChanged(); + } + if (other.hasStartTime()) { + mergeStartTime(other.getStartTime()); + } + if (other.hasEndTime()) { + mergeEndTime(other.getEndTime()); + } + if (other.hasLineItemType()) { + setLineItemType(other.getLineItemType()); + } + if (other.hasRate()) { + mergeRate(other.getRate()); + } + if (other.hasBudget()) { + mergeBudget(other.getBudget()); + } + if (customFieldValuesBuilder_ == null) { + if (!other.customFieldValues_.isEmpty()) { + if (customFieldValues_.isEmpty()) { + customFieldValues_ = other.customFieldValues_; + bitField0_ = (bitField0_ & ~0x00000100); + } else { + ensureCustomFieldValuesIsMutable(); + customFieldValues_.addAll(other.customFieldValues_); + } + onChanged(); + } + } else { + if (!other.customFieldValues_.isEmpty()) { + if (customFieldValuesBuilder_.isEmpty()) { + customFieldValuesBuilder_.dispose(); + customFieldValuesBuilder_ = null; + customFieldValues_ = other.customFieldValues_; + bitField0_ = (bitField0_ & ~0x00000100); + customFieldValuesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getCustomFieldValuesFieldBuilder() + : null; + } else { + customFieldValuesBuilder_.addAllMessages(other.customFieldValues_); + } + } + } + if (other.hasGoal()) { + mergeGoal(other.getGoal()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + name_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + order_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + displayName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 50: + { + input.readMessage(getStartTimeFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000008; + break; + } // case 50 + case 58: + { + input.readMessage(getEndTimeFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000010; + break; + } // case 58 + case 136: + { + lineItemType_ = input.readEnum(); + bitField0_ |= 0x00000020; + break; + } // case 136 + case 162: + { + input.readMessage(getRateFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000040; + break; + } // case 162 + case 282: + { + input.readMessage(getBudgetFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000080; + break; + } // case 282 + case 474: + { + com.google.ads.admanager.v1.CustomFieldValue m = + input.readMessage( + com.google.ads.admanager.v1.CustomFieldValue.parser(), extensionRegistry); + if (customFieldValuesBuilder_ == null) { + ensureCustomFieldValuesIsMutable(); + customFieldValues_.add(m); + } else { + customFieldValuesBuilder_.addMessage(m); + } + break; + } // case 474 + case 610: + { + input.readMessage(getGoalFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000200; + break; + } // case 610 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object name_ = ""; + + /** + * + * + *
+     * Identifier. The resource name of the `LineItem`.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return The name. + */ + public java.lang.String getName() { + java.lang.Object ref = name_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Identifier. The resource name of the `LineItem`.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return The bytes for name. + */ + public com.google.protobuf.ByteString getNameBytes() { + java.lang.Object ref = name_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + name_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Identifier. The resource name of the `LineItem`.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @param value The name to set. + * @return This builder for chaining. + */ + public Builder setName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + name_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Identifier. The resource name of the `LineItem`.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return This builder for chaining. + */ + public Builder clearName() { + name_ = getDefaultInstance().getName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Identifier. The resource name of the `LineItem`.
+     * Format: `networks/{network_code}/lineItems/{line_item_id}`
+     * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @param value The bytes for name to set. + * @return This builder for chaining. + */ + public Builder setNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + name_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.lang.Object order_ = ""; + + /** + * + * + *
+     * Output only. The ID of the Order to which the LineItem belongs. This
+     * attribute is required. Format: `networks/{network_code}/orders/{order}`
+     * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return Whether the order field is set. + */ + public boolean hasOrder() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Output only. The ID of the Order to which the LineItem belongs. This
+     * attribute is required. Format: `networks/{network_code}/orders/{order}`
+     * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return The order. + */ + public java.lang.String getOrder() { + java.lang.Object ref = order_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + order_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Output only. The ID of the Order to which the LineItem belongs. This
+     * attribute is required. Format: `networks/{network_code}/orders/{order}`
+     * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for order. + */ + public com.google.protobuf.ByteString getOrderBytes() { + java.lang.Object ref = order_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + order_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Output only. The ID of the Order to which the LineItem belongs. This
+     * attribute is required. Format: `networks/{network_code}/orders/{order}`
+     * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @param value The order to set. + * @return This builder for chaining. + */ + public Builder setOrder(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + order_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The ID of the Order to which the LineItem belongs. This
+     * attribute is required. Format: `networks/{network_code}/orders/{order}`
+     * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearOrder() { + order_ = getDefaultInstance().getOrder(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The ID of the Order to which the LineItem belongs. This
+     * attribute is required. Format: `networks/{network_code}/orders/{order}`
+     * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for order to set. + * @return This builder for chaining. + */ + public Builder setOrderBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + order_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object displayName_ = ""; + + /** + * + * + *
+     * Required. The name of the line item. This attribute is required and has a
+     * maximum length of 255 characters.
+     * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return Whether the displayName field is set. + */ + public boolean hasDisplayName() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+     * Required. The name of the line item. This attribute is required and has a
+     * maximum length of 255 characters.
+     * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The displayName. + */ + public java.lang.String getDisplayName() { + java.lang.Object ref = displayName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + displayName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The name of the line item. This attribute is required and has a
+     * maximum length of 255 characters.
+     * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for displayName. + */ + public com.google.protobuf.ByteString getDisplayNameBytes() { + java.lang.Object ref = displayName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + displayName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The name of the line item. This attribute is required and has a
+     * maximum length of 255 characters.
+     * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The displayName to set. + * @return This builder for chaining. + */ + public Builder setDisplayName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + displayName_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the line item. This attribute is required and has a
+     * maximum length of 255 characters.
+     * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearDisplayName() { + displayName_ = getDefaultInstance().getDisplayName(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the line item. This attribute is required and has a
+     * maximum length of 255 characters.
+     * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for displayName to set. + * @return This builder for chaining. + */ + public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + displayName_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + private com.google.protobuf.Timestamp startTime_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, + com.google.protobuf.Timestamp.Builder, + com.google.protobuf.TimestampOrBuilder> + startTimeBuilder_; + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the startTime field is set. + */ + public boolean hasStartTime() { + return ((bitField0_ & 0x00000008) != 0); + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The startTime. + */ + public com.google.protobuf.Timestamp getStartTime() { + if (startTimeBuilder_ == null) { + return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_; + } else { + return startTimeBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setStartTime(com.google.protobuf.Timestamp value) { + if (startTimeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + startTime_ = value; + } else { + startTimeBuilder_.setMessage(value); + } + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValue) { + if (startTimeBuilder_ == null) { + startTime_ = builderForValue.build(); + } else { + startTimeBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeStartTime(com.google.protobuf.Timestamp value) { + if (startTimeBuilder_ == null) { + if (((bitField0_ & 0x00000008) != 0) + && startTime_ != null + && startTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) { + getStartTimeBuilder().mergeFrom(value); + } else { + startTime_ = value; + } + } else { + startTimeBuilder_.mergeFrom(value); + } + if (startTime_ != null) { + bitField0_ |= 0x00000008; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearStartTime() { + bitField0_ = (bitField0_ & ~0x00000008); + startTime_ = null; + if (startTimeBuilder_ != null) { + startTimeBuilder_.dispose(); + startTimeBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() { + bitField0_ |= 0x00000008; + onChanged(); + return getStartTimeFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() { + if (startTimeBuilder_ != null) { + return startTimeBuilder_.getMessageOrBuilder(); + } else { + return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_; + } + } + + /** + * + * + *
+     * Required. The date and time on which the LineItem is enabled to begin
+     * serving. This attribute is required and must be in the future.
+     * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, + com.google.protobuf.Timestamp.Builder, + com.google.protobuf.TimestampOrBuilder> + getStartTimeFieldBuilder() { + if (startTimeBuilder_ == null) { + startTimeBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, + com.google.protobuf.Timestamp.Builder, + com.google.protobuf.TimestampOrBuilder>( + getStartTime(), getParentForChildren(), isClean()); + startTime_ = null; + } + return startTimeBuilder_; + } + + private com.google.protobuf.Timestamp endTime_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, + com.google.protobuf.Timestamp.Builder, + com.google.protobuf.TimestampOrBuilder> + endTimeBuilder_; + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return Whether the endTime field is set. + */ + public boolean hasEndTime() { + return ((bitField0_ & 0x00000010) != 0); + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return The endTime. + */ + public com.google.protobuf.Timestamp getEndTime() { + if (endTimeBuilder_ == null) { + return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_; + } else { + return endTimeBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder setEndTime(com.google.protobuf.Timestamp value) { + if (endTimeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + endTime_ = value; + } else { + endTimeBuilder_.setMessage(value); + } + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue) { + if (endTimeBuilder_ == null) { + endTime_ = builderForValue.build(); + } else { + endTimeBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder mergeEndTime(com.google.protobuf.Timestamp value) { + if (endTimeBuilder_ == null) { + if (((bitField0_ & 0x00000010) != 0) + && endTime_ != null + && endTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) { + getEndTimeBuilder().mergeFrom(value); + } else { + endTime_ = value; + } + } else { + endTimeBuilder_.mergeFrom(value); + } + if (endTime_ != null) { + bitField0_ |= 0x00000010; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder clearEndTime() { + bitField0_ = (bitField0_ & ~0x00000010); + endTime_ = null; + if (endTimeBuilder_ != null) { + endTimeBuilder_.dispose(); + endTimeBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() { + bitField0_ |= 0x00000010; + onChanged(); + return getEndTimeFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() { + if (endTimeBuilder_ != null) { + return endTimeBuilder_.getMessageOrBuilder(); + } else { + return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_; + } + } + + /** + * + * + *
+     * Output only. The timestamp when the LineItem will stop serving. This
+     * attribute is read-only and includes auto extension days.
+     * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, + com.google.protobuf.Timestamp.Builder, + com.google.protobuf.TimestampOrBuilder> + getEndTimeFieldBuilder() { + if (endTimeBuilder_ == null) { + endTimeBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, + com.google.protobuf.Timestamp.Builder, + com.google.protobuf.TimestampOrBuilder>( + getEndTime(), getParentForChildren(), isClean()); + endTime_ = null; + } + return endTimeBuilder_; + } + + private int lineItemType_ = 0; + + /** + * + * + *
+     * Required. Indicates the line item type of a LineItem. This attribute is
+     * required. The line item type determines the default priority of the line
+     * item. More information can be found at
+     * https://support.google.com/admanager/answer/177279.
+     * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the lineItemType field is set. + */ + @java.lang.Override + public boolean hasLineItemType() { + return ((bitField0_ & 0x00000020) != 0); + } + + /** + * + * + *
+     * Required. Indicates the line item type of a LineItem. This attribute is
+     * required. The line item type determines the default priority of the line
+     * item. More information can be found at
+     * https://support.google.com/admanager/answer/177279.
+     * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The enum numeric value on the wire for lineItemType. + */ + @java.lang.Override + public int getLineItemTypeValue() { + return lineItemType_; + } + + /** + * + * + *
+     * Required. Indicates the line item type of a LineItem. This attribute is
+     * required. The line item type determines the default priority of the line
+     * item. More information can be found at
+     * https://support.google.com/admanager/answer/177279.
+     * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @param value The enum numeric value on the wire for lineItemType to set. + * @return This builder for chaining. + */ + public Builder setLineItemTypeValue(int value) { + lineItemType_ = value; + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Indicates the line item type of a LineItem. This attribute is
+     * required. The line item type determines the default priority of the line
+     * item. More information can be found at
+     * https://support.google.com/admanager/answer/177279.
+     * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The lineItemType. + */ + @java.lang.Override + public com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType getLineItemType() { + com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType result = + com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType.forNumber(lineItemType_); + return result == null + ? com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType.UNRECOGNIZED + : result; + } + + /** + * + * + *
+     * Required. Indicates the line item type of a LineItem. This attribute is
+     * required. The line item type determines the default priority of the line
+     * item. More information can be found at
+     * https://support.google.com/admanager/answer/177279.
+     * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @param value The lineItemType to set. + * @return This builder for chaining. + */ + public Builder setLineItemType( + com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000020; + lineItemType_ = value.getNumber(); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Indicates the line item type of a LineItem. This attribute is
+     * required. The line item type determines the default priority of the line
+     * item. More information can be found at
+     * https://support.google.com/admanager/answer/177279.
+     * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return This builder for chaining. + */ + public Builder clearLineItemType() { + bitField0_ = (bitField0_ & ~0x00000020); + lineItemType_ = 0; + onChanged(); + return this; + } + + private com.google.type.Money rate_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.type.Money, com.google.type.Money.Builder, com.google.type.MoneyOrBuilder> + rateBuilder_; + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + * + * @return Whether the rate field is set. + */ + public boolean hasRate() { + return ((bitField0_ & 0x00000040) != 0); + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The rate. + */ + public com.google.type.Money getRate() { + if (rateBuilder_ == null) { + return rate_ == null ? com.google.type.Money.getDefaultInstance() : rate_; + } else { + return rateBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setRate(com.google.type.Money value) { + if (rateBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + rate_ = value; + } else { + rateBuilder_.setMessage(value); + } + bitField0_ |= 0x00000040; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setRate(com.google.type.Money.Builder builderForValue) { + if (rateBuilder_ == null) { + rate_ = builderForValue.build(); + } else { + rateBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000040; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder mergeRate(com.google.type.Money value) { + if (rateBuilder_ == null) { + if (((bitField0_ & 0x00000040) != 0) + && rate_ != null + && rate_ != com.google.type.Money.getDefaultInstance()) { + getRateBuilder().mergeFrom(value); + } else { + rate_ = value; + } + } else { + rateBuilder_.mergeFrom(value); + } + if (rate_ != null) { + bitField0_ |= 0x00000040; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearRate() { + bitField0_ = (bitField0_ & ~0x00000040); + rate_ = null; + if (rateBuilder_ != null) { + rateBuilder_.dispose(); + rateBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.type.Money.Builder getRateBuilder() { + bitField0_ |= 0x00000040; + onChanged(); + return getRateFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.type.MoneyOrBuilder getRateOrBuilder() { + if (rateBuilder_ != null) { + return rateBuilder_.getMessageOrBuilder(); + } else { + return rate_ == null ? com.google.type.Money.getDefaultInstance() : rate_; + } + } + + /** + * + * + *
+     * Required. The amount of money to spend per impression or click.
+     * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.type.Money, com.google.type.Money.Builder, com.google.type.MoneyOrBuilder> + getRateFieldBuilder() { + if (rateBuilder_ == null) { + rateBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.type.Money, + com.google.type.Money.Builder, + com.google.type.MoneyOrBuilder>(getRate(), getParentForChildren(), isClean()); + rate_ = null; + } + return rateBuilder_; + } + + private com.google.type.Money budget_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.type.Money, com.google.type.Money.Builder, com.google.type.MoneyOrBuilder> + budgetBuilder_; + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return Whether the budget field is set. + */ + public boolean hasBudget() { + return ((bitField0_ & 0x00000080) != 0); + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return The budget. + */ + public com.google.type.Money getBudget() { + if (budgetBuilder_ == null) { + return budget_ == null ? com.google.type.Money.getDefaultInstance() : budget_; + } else { + return budgetBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder setBudget(com.google.type.Money value) { + if (budgetBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + budget_ = value; + } else { + budgetBuilder_.setMessage(value); + } + bitField0_ |= 0x00000080; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder setBudget(com.google.type.Money.Builder builderForValue) { + if (budgetBuilder_ == null) { + budget_ = builderForValue.build(); + } else { + budgetBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000080; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder mergeBudget(com.google.type.Money value) { + if (budgetBuilder_ == null) { + if (((bitField0_ & 0x00000080) != 0) + && budget_ != null + && budget_ != com.google.type.Money.getDefaultInstance()) { + getBudgetBuilder().mergeFrom(value); + } else { + budget_ = value; + } + } else { + budgetBuilder_.mergeFrom(value); + } + if (budget_ != null) { + bitField0_ |= 0x00000080; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder clearBudget() { + bitField0_ = (bitField0_ & ~0x00000080); + budget_ = null; + if (budgetBuilder_ != null) { + budgetBuilder_.dispose(); + budgetBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.type.Money.Builder getBudgetBuilder() { + bitField0_ |= 0x00000080; + onChanged(); + return getBudgetFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.type.MoneyOrBuilder getBudgetOrBuilder() { + if (budgetBuilder_ != null) { + return budgetBuilder_.getMessageOrBuilder(); + } else { + return budget_ == null ? com.google.type.Money.getDefaultInstance() : budget_; + } + } + + /** + * + * + *
+     * Output only. The amount of money allocated to the LineItem. This attribute
+     * is readonly and is populated by Google. The currency code is readonly.
+     * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.type.Money, com.google.type.Money.Builder, com.google.type.MoneyOrBuilder> + getBudgetFieldBuilder() { + if (budgetBuilder_ == null) { + budgetBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.type.Money, + com.google.type.Money.Builder, + com.google.type.MoneyOrBuilder>(getBudget(), getParentForChildren(), isClean()); + budget_ = null; + } + return budgetBuilder_; + } + + private java.util.List customFieldValues_ = + java.util.Collections.emptyList(); + + private void ensureCustomFieldValuesIsMutable() { + if (!((bitField0_ & 0x00000100) != 0)) { + customFieldValues_ = + new java.util.ArrayList( + customFieldValues_); + bitField0_ |= 0x00000100; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomFieldValue, + com.google.ads.admanager.v1.CustomFieldValue.Builder, + com.google.ads.admanager.v1.CustomFieldValueOrBuilder> + customFieldValuesBuilder_; + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List getCustomFieldValuesList() { + if (customFieldValuesBuilder_ == null) { + return java.util.Collections.unmodifiableList(customFieldValues_); + } else { + return customFieldValuesBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public int getCustomFieldValuesCount() { + if (customFieldValuesBuilder_ == null) { + return customFieldValues_.size(); + } else { + return customFieldValuesBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.CustomFieldValue getCustomFieldValues(int index) { + if (customFieldValuesBuilder_ == null) { + return customFieldValues_.get(index); + } else { + return customFieldValuesBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setCustomFieldValues( + int index, com.google.ads.admanager.v1.CustomFieldValue value) { + if (customFieldValuesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomFieldValuesIsMutable(); + customFieldValues_.set(index, value); + onChanged(); + } else { + customFieldValuesBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setCustomFieldValues( + int index, com.google.ads.admanager.v1.CustomFieldValue.Builder builderForValue) { + if (customFieldValuesBuilder_ == null) { + ensureCustomFieldValuesIsMutable(); + customFieldValues_.set(index, builderForValue.build()); + onChanged(); + } else { + customFieldValuesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addCustomFieldValues(com.google.ads.admanager.v1.CustomFieldValue value) { + if (customFieldValuesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomFieldValuesIsMutable(); + customFieldValues_.add(value); + onChanged(); + } else { + customFieldValuesBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addCustomFieldValues( + int index, com.google.ads.admanager.v1.CustomFieldValue value) { + if (customFieldValuesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCustomFieldValuesIsMutable(); + customFieldValues_.add(index, value); + onChanged(); + } else { + customFieldValuesBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addCustomFieldValues( + com.google.ads.admanager.v1.CustomFieldValue.Builder builderForValue) { + if (customFieldValuesBuilder_ == null) { + ensureCustomFieldValuesIsMutable(); + customFieldValues_.add(builderForValue.build()); + onChanged(); + } else { + customFieldValuesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addCustomFieldValues( + int index, com.google.ads.admanager.v1.CustomFieldValue.Builder builderForValue) { + if (customFieldValuesBuilder_ == null) { + ensureCustomFieldValuesIsMutable(); + customFieldValues_.add(index, builderForValue.build()); + onChanged(); + } else { + customFieldValuesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addAllCustomFieldValues( + java.lang.Iterable values) { + if (customFieldValuesBuilder_ == null) { + ensureCustomFieldValuesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, customFieldValues_); + onChanged(); + } else { + customFieldValuesBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearCustomFieldValues() { + if (customFieldValuesBuilder_ == null) { + customFieldValues_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000100); + onChanged(); + } else { + customFieldValuesBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder removeCustomFieldValues(int index) { + if (customFieldValuesBuilder_ == null) { + ensureCustomFieldValuesIsMutable(); + customFieldValues_.remove(index); + onChanged(); + } else { + customFieldValuesBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.CustomFieldValue.Builder getCustomFieldValuesBuilder( + int index) { + return getCustomFieldValuesFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.CustomFieldValueOrBuilder getCustomFieldValuesOrBuilder( + int index) { + if (customFieldValuesBuilder_ == null) { + return customFieldValues_.get(index); + } else { + return customFieldValuesBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getCustomFieldValuesOrBuilderList() { + if (customFieldValuesBuilder_ != null) { + return customFieldValuesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(customFieldValues_); + } + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.CustomFieldValue.Builder addCustomFieldValuesBuilder() { + return getCustomFieldValuesFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.CustomFieldValue.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.CustomFieldValue.Builder addCustomFieldValuesBuilder( + int index) { + return getCustomFieldValuesFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.CustomFieldValue.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. The values of the custom fields associated with this line item.
+     * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getCustomFieldValuesBuilderList() { + return getCustomFieldValuesFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomFieldValue, + com.google.ads.admanager.v1.CustomFieldValue.Builder, + com.google.ads.admanager.v1.CustomFieldValueOrBuilder> + getCustomFieldValuesFieldBuilder() { + if (customFieldValuesBuilder_ == null) { + customFieldValuesBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.CustomFieldValue, + com.google.ads.admanager.v1.CustomFieldValue.Builder, + com.google.ads.admanager.v1.CustomFieldValueOrBuilder>( + customFieldValues_, + ((bitField0_ & 0x00000100) != 0), + getParentForChildren(), + isClean()); + customFieldValues_ = null; + } + return customFieldValuesBuilder_; + } + + private com.google.ads.admanager.v1.Goal goal_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.Goal, + com.google.ads.admanager.v1.Goal.Builder, + com.google.ads.admanager.v1.GoalOrBuilder> + goalBuilder_; + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the goal field is set. + */ + public boolean hasGoal() { + return ((bitField0_ & 0x00000200) != 0); + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The goal. + */ + public com.google.ads.admanager.v1.Goal getGoal() { + if (goalBuilder_ == null) { + return goal_ == null ? com.google.ads.admanager.v1.Goal.getDefaultInstance() : goal_; + } else { + return goalBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setGoal(com.google.ads.admanager.v1.Goal value) { + if (goalBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + goal_ = value; + } else { + goalBuilder_.setMessage(value); + } + bitField0_ |= 0x00000200; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setGoal(com.google.ads.admanager.v1.Goal.Builder builderForValue) { + if (goalBuilder_ == null) { + goal_ = builderForValue.build(); + } else { + goalBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000200; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder mergeGoal(com.google.ads.admanager.v1.Goal value) { + if (goalBuilder_ == null) { + if (((bitField0_ & 0x00000200) != 0) + && goal_ != null + && goal_ != com.google.ads.admanager.v1.Goal.getDefaultInstance()) { + getGoalBuilder().mergeFrom(value); + } else { + goal_ = value; + } + } else { + goalBuilder_.mergeFrom(value); + } + if (goal_ != null) { + bitField0_ |= 0x00000200; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearGoal() { + bitField0_ = (bitField0_ & ~0x00000200); + goal_ = null; + if (goalBuilder_ != null) { + goalBuilder_.dispose(); + goalBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.Goal.Builder getGoalBuilder() { + bitField0_ |= 0x00000200; + onChanged(); + return getGoalFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.ads.admanager.v1.GoalOrBuilder getGoalOrBuilder() { + if (goalBuilder_ != null) { + return goalBuilder_.getMessageOrBuilder(); + } else { + return goal_ == null ? com.google.ads.admanager.v1.Goal.getDefaultInstance() : goal_; + } + } + + /** + * + * + *
+     * Optional. The primary goal that this LineItem is associated with, which is
+     * used in its pacing and budgeting.
+     * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.Goal, + com.google.ads.admanager.v1.Goal.Builder, + com.google.ads.admanager.v1.GoalOrBuilder> + getGoalFieldBuilder() { + if (goalBuilder_ == null) { + goalBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.Goal, + com.google.ads.admanager.v1.Goal.Builder, + com.google.ads.admanager.v1.GoalOrBuilder>( + getGoal(), getParentForChildren(), isClean()); + goal_ = null; + } + return goalBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.LineItem) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.LineItem) + private static final com.google.ads.admanager.v1.LineItem DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.LineItem(); + } + + public static com.google.ads.admanager.v1.LineItem getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public LineItem parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItem getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemEnumsProto.java new file mode 100644 index 000000000000..c7da7675505c --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemEnumsProto.java @@ -0,0 +1,80 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public final class LineItemEnumsProto { + private LineItemEnumsProto() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_LineItemTypeEnum_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_LineItemTypeEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n" + + "-google/ads/admanager/v1/line_item_enums.proto\022\027google.ads.admanager.v1\"\202\002\n" + + "\020LineItemTypeEnum\"\355\001\n" + + "\014LineItemType\022\036\n" + + "\032LINE_ITEM_TYPE_UNSPECIFIED\020\000\022\017\n" + + "\013SPONSORSHIP\020\014\022\014\n" + + "\010STANDARD\020\r" + + "\022\013\n" + + "\007NETWORK\020\t\022\010\n" + + "\004BULK\020\004\022\022\n" + + "\016PRICE_PRIORITY\020\013\022\t\n" + + "\005HOUSE\020\007\022\022\n" + + "\016CLICK_TRACKING\020\006\022\013\n" + + "\007ADSENSE\020\002\022\017\n" + + "\013AD_EXCHANGE\020\003\022\n\n" + + "\006BUMPER\020\005\022\022\n" + + "\016PREFERRED_DEAL\020\n" + + "\022\026\n" + + "\022AUDIENCE_EXTENSION\020\016B\306\001\n" + + "\033com.google.ads.admanager.v1B\022LineItemEnumsProtoP\001Z@google.gola" + + "ng.org/genproto/googleapis/ads/admanager" + + "/v1;admanager\252\002\027Google.Ads.AdManager.V1\312" + + "\002\027Google\\Ads\\AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" + }; + descriptor = + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}); + internal_static_google_ads_admanager_v1_LineItemTypeEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_admanager_v1_LineItemTypeEnum_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_LineItemTypeEnum_descriptor, + new java.lang.String[] {}); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemMessagesProto.java new file mode 100644 index 000000000000..df98d1a8e5f9 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemMessagesProto.java @@ -0,0 +1,124 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_messages.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public final class LineItemMessagesProto { + private LineItemMessagesProto() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_LineItem_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_LineItem_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n0google/ads/admanager/v1/line_item_mess" + + "ages.proto\022\027google.ads.admanager.v1\0320goo" + + "gle/ads/admanager/v1/custom_field_value." + + "proto\032\"google/ads/admanager/v1/goal.prot" + + "o\032-google/ads/admanager/v1/line_item_enu" + + "ms.proto\032\037google/api/field_behavior.prot" + + "o\032\031google/api/resource.proto\032\037google/pro" + + "tobuf/timestamp.proto\032\027google/type/money" + + ".proto\"\366\005\n\010LineItem\022\021\n\004name\030\001 \001(\tB\003\340A\010\022:" + + "\n\005order\030\002 \001(\tB&\340A\003\372A \n\036admanager.googlea" + + "pis.com/OrderH\000\210\001\001\022\036\n\014display_name\030\003 \001(\t" + + "B\003\340A\002H\001\210\001\001\0228\n\nstart_time\030\006 \001(\0132\032.google." + + "protobuf.TimestampB\003\340A\002H\002\210\001\001\0226\n\010end_time" + + "\030\007 \001(\0132\032.google.protobuf.TimestampB\003\340A\003H" + + "\003\210\001\001\022X\n\016line_item_type\030\021 \001(\01626.google.ad" + + "s.admanager.v1.LineItemTypeEnum.LineItem" + + "TypeB\003\340A\002H\004\210\001\001\022*\n\004rate\030\024 \001(\0132\022.google.ty" + + "pe.MoneyB\003\340A\002H\005\210\001\001\022,\n\006budget\030# \001(\0132\022.goo" + + "gle.type.MoneyB\003\340A\003H\006\210\001\001\022K\n\023custom_field" + + "_values\030; \003(\0132).google.ads.admanager.v1." + + "CustomFieldValueB\003\340A\001\0225\n\004goal\030L \001(\0132\035.go" + + "ogle.ads.admanager.v1.GoalB\003\340A\001H\007\210\001\001:j\352A" + + "g\n!admanager.googleapis.com/LineItem\022-ne" + + "tworks/{network_code}/lineItems/{line_it" + + "em}*\tlineItems2\010lineItemB\010\n\006_orderB\017\n\r_d" + + "isplay_nameB\r\n\013_start_timeB\013\n\t_end_timeB" + + "\021\n\017_line_item_typeB\007\n\005_rateB\t\n\007_budgetB\007" + + "\n\005_goalB\311\001\n\033com.google.ads.admanager.v1B" + + "\025LineItemMessagesProtoP\001Z@google.golang." + + "org/genproto/googleapis/ads/admanager/v1" + + ";admanager\252\002\027Google.Ads.AdManager.V1\312\002\027G" + + "oogle\\Ads\\AdManager\\V1\352\002\032Google::Ads::Ad" + + "Manager::V1b\006proto3" + }; + descriptor = + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.ads.admanager.v1.CustomFieldValueProto.getDescriptor(), + com.google.ads.admanager.v1.GoalProto.getDescriptor(), + com.google.ads.admanager.v1.LineItemEnumsProto.getDescriptor(), + com.google.api.FieldBehaviorProto.getDescriptor(), + com.google.api.ResourceProto.getDescriptor(), + com.google.protobuf.TimestampProto.getDescriptor(), + com.google.type.MoneyProto.getDescriptor(), + }); + internal_static_google_ads_admanager_v1_LineItem_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_admanager_v1_LineItem_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_LineItem_descriptor, + new java.lang.String[] { + "Name", + "Order", + "DisplayName", + "StartTime", + "EndTime", + "LineItemType", + "Rate", + "Budget", + "CustomFieldValues", + "Goal", + }); + com.google.protobuf.ExtensionRegistry registry = + com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); + registry.add(com.google.api.ResourceProto.resource); + registry.add(com.google.api.ResourceProto.resourceReference); + com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( + descriptor, registry); + com.google.ads.admanager.v1.CustomFieldValueProto.getDescriptor(); + com.google.ads.admanager.v1.GoalProto.getDescriptor(); + com.google.ads.admanager.v1.LineItemEnumsProto.getDescriptor(); + com.google.api.FieldBehaviorProto.getDescriptor(); + com.google.api.ResourceProto.getDescriptor(); + com.google.protobuf.TimestampProto.getDescriptor(); + com.google.type.MoneyProto.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemName.java new file mode 100644 index 000000000000..7bf792f807dc --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemName.java @@ -0,0 +1,192 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1; + +import com.google.api.pathtemplate.PathTemplate; +import com.google.api.resourcenames.ResourceName; +import com.google.common.base.Preconditions; +import com.google.common.collect.ImmutableMap; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +@Generated("by gapic-generator-java") +public class LineItemName implements ResourceName { + private static final PathTemplate NETWORK_CODE_LINE_ITEM = + PathTemplate.createWithoutUrlEncoding("networks/{network_code}/lineItems/{line_item}"); + private volatile Map fieldValuesMap; + private final String networkCode; + private final String lineItem; + + @Deprecated + protected LineItemName() { + networkCode = null; + lineItem = null; + } + + private LineItemName(Builder builder) { + networkCode = Preconditions.checkNotNull(builder.getNetworkCode()); + lineItem = Preconditions.checkNotNull(builder.getLineItem()); + } + + public String getNetworkCode() { + return networkCode; + } + + public String getLineItem() { + return lineItem; + } + + public static Builder newBuilder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + public static LineItemName of(String networkCode, String lineItem) { + return newBuilder().setNetworkCode(networkCode).setLineItem(lineItem).build(); + } + + public static String format(String networkCode, String lineItem) { + return newBuilder().setNetworkCode(networkCode).setLineItem(lineItem).build().toString(); + } + + public static LineItemName parse(String formattedString) { + if (formattedString.isEmpty()) { + return null; + } + Map matchMap = + NETWORK_CODE_LINE_ITEM.validatedMatch( + formattedString, "LineItemName.parse: formattedString not in valid format"); + return of(matchMap.get("network_code"), matchMap.get("line_item")); + } + + public static List parseList(List formattedStrings) { + List list = new ArrayList<>(formattedStrings.size()); + for (String formattedString : formattedStrings) { + list.add(parse(formattedString)); + } + return list; + } + + public static List toStringList(List values) { + List list = new ArrayList<>(values.size()); + for (LineItemName value : values) { + if (value == null) { + list.add(""); + } else { + list.add(value.toString()); + } + } + return list; + } + + public static boolean isParsableFrom(String formattedString) { + return NETWORK_CODE_LINE_ITEM.matches(formattedString); + } + + @Override + public Map getFieldValuesMap() { + if (fieldValuesMap == null) { + synchronized (this) { + if (fieldValuesMap == null) { + ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); + if (networkCode != null) { + fieldMapBuilder.put("network_code", networkCode); + } + if (lineItem != null) { + fieldMapBuilder.put("line_item", lineItem); + } + fieldValuesMap = fieldMapBuilder.build(); + } + } + } + return fieldValuesMap; + } + + public String getFieldValue(String fieldName) { + return getFieldValuesMap().get(fieldName); + } + + @Override + public String toString() { + return NETWORK_CODE_LINE_ITEM.instantiate("network_code", networkCode, "line_item", lineItem); + } + + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (o != null && getClass() == o.getClass()) { + LineItemName that = ((LineItemName) o); + return Objects.equals(this.networkCode, that.networkCode) + && Objects.equals(this.lineItem, that.lineItem); + } + return false; + } + + @Override + public int hashCode() { + int h = 1; + h *= 1000003; + h ^= Objects.hashCode(networkCode); + h *= 1000003; + h ^= Objects.hashCode(lineItem); + return h; + } + + /** Builder for networks/{network_code}/lineItems/{line_item}. */ + public static class Builder { + private String networkCode; + private String lineItem; + + protected Builder() {} + + public String getNetworkCode() { + return networkCode; + } + + public String getLineItem() { + return lineItem; + } + + public Builder setNetworkCode(String networkCode) { + this.networkCode = networkCode; + return this; + } + + public Builder setLineItem(String lineItem) { + this.lineItem = lineItem; + return this; + } + + private Builder(LineItemName lineItemName) { + this.networkCode = lineItemName.networkCode; + this.lineItem = lineItemName.lineItem; + } + + public LineItemName build() { + return new LineItemName(this); + } + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemOrBuilder.java new file mode 100644 index 000000000000..03fbde228cdc --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemOrBuilder.java @@ -0,0 +1,482 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_messages.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface LineItemOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.LineItem) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Identifier. The resource name of the `LineItem`.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return The name. + */ + java.lang.String getName(); + + /** + * + * + *
+   * Identifier. The resource name of the `LineItem`.
+   * Format: `networks/{network_code}/lineItems/{line_item_id}`
+   * 
+ * + * string name = 1 [(.google.api.field_behavior) = IDENTIFIER]; + * + * @return The bytes for name. + */ + com.google.protobuf.ByteString getNameBytes(); + + /** + * + * + *
+   * Output only. The ID of the Order to which the LineItem belongs. This
+   * attribute is required. Format: `networks/{network_code}/orders/{order}`
+   * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return Whether the order field is set. + */ + boolean hasOrder(); + + /** + * + * + *
+   * Output only. The ID of the Order to which the LineItem belongs. This
+   * attribute is required. Format: `networks/{network_code}/orders/{order}`
+   * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return The order. + */ + java.lang.String getOrder(); + + /** + * + * + *
+   * Output only. The ID of the Order to which the LineItem belongs. This
+   * attribute is required. Format: `networks/{network_code}/orders/{order}`
+   * 
+ * + * + * optional string order = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for order. + */ + com.google.protobuf.ByteString getOrderBytes(); + + /** + * + * + *
+   * Required. The name of the line item. This attribute is required and has a
+   * maximum length of 255 characters.
+   * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return Whether the displayName field is set. + */ + boolean hasDisplayName(); + + /** + * + * + *
+   * Required. The name of the line item. This attribute is required and has a
+   * maximum length of 255 characters.
+   * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The displayName. + */ + java.lang.String getDisplayName(); + + /** + * + * + *
+   * Required. The name of the line item. This attribute is required and has a
+   * maximum length of 255 characters.
+   * 
+ * + * optional string display_name = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for displayName. + */ + com.google.protobuf.ByteString getDisplayNameBytes(); + + /** + * + * + *
+   * Required. The date and time on which the LineItem is enabled to begin
+   * serving. This attribute is required and must be in the future.
+   * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the startTime field is set. + */ + boolean hasStartTime(); + + /** + * + * + *
+   * Required. The date and time on which the LineItem is enabled to begin
+   * serving. This attribute is required and must be in the future.
+   * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The startTime. + */ + com.google.protobuf.Timestamp getStartTime(); + + /** + * + * + *
+   * Required. The date and time on which the LineItem is enabled to begin
+   * serving. This attribute is required and must be in the future.
+   * 
+ * + * + * optional .google.protobuf.Timestamp start_time = 6 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder(); + + /** + * + * + *
+   * Output only. The timestamp when the LineItem will stop serving. This
+   * attribute is read-only and includes auto extension days.
+   * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return Whether the endTime field is set. + */ + boolean hasEndTime(); + + /** + * + * + *
+   * Output only. The timestamp when the LineItem will stop serving. This
+   * attribute is read-only and includes auto extension days.
+   * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return The endTime. + */ + com.google.protobuf.Timestamp getEndTime(); + + /** + * + * + *
+   * Output only. The timestamp when the LineItem will stop serving. This
+   * attribute is read-only and includes auto extension days.
+   * 
+ * + * + * optional .google.protobuf.Timestamp end_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder(); + + /** + * + * + *
+   * Required. Indicates the line item type of a LineItem. This attribute is
+   * required. The line item type determines the default priority of the line
+   * item. More information can be found at
+   * https://support.google.com/admanager/answer/177279.
+   * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the lineItemType field is set. + */ + boolean hasLineItemType(); + + /** + * + * + *
+   * Required. Indicates the line item type of a LineItem. This attribute is
+   * required. The line item type determines the default priority of the line
+   * item. More information can be found at
+   * https://support.google.com/admanager/answer/177279.
+   * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The enum numeric value on the wire for lineItemType. + */ + int getLineItemTypeValue(); + + /** + * + * + *
+   * Required. Indicates the line item type of a LineItem. This attribute is
+   * required. The line item type determines the default priority of the line
+   * item. More information can be found at
+   * https://support.google.com/admanager/answer/177279.
+   * 
+ * + * + * optional .google.ads.admanager.v1.LineItemTypeEnum.LineItemType line_item_type = 17 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The lineItemType. + */ + com.google.ads.admanager.v1.LineItemTypeEnum.LineItemType getLineItemType(); + + /** + * + * + *
+   * Required. The amount of money to spend per impression or click.
+   * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + * + * @return Whether the rate field is set. + */ + boolean hasRate(); + + /** + * + * + *
+   * Required. The amount of money to spend per impression or click.
+   * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The rate. + */ + com.google.type.Money getRate(); + + /** + * + * + *
+   * Required. The amount of money to spend per impression or click.
+   * 
+ * + * optional .google.type.Money rate = 20 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.type.MoneyOrBuilder getRateOrBuilder(); + + /** + * + * + *
+   * Output only. The amount of money allocated to the LineItem. This attribute
+   * is readonly and is populated by Google. The currency code is readonly.
+   * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return Whether the budget field is set. + */ + boolean hasBudget(); + + /** + * + * + *
+   * Output only. The amount of money allocated to the LineItem. This attribute
+   * is readonly and is populated by Google. The currency code is readonly.
+   * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * + * @return The budget. + */ + com.google.type.Money getBudget(); + + /** + * + * + *
+   * Output only. The amount of money allocated to the LineItem. This attribute
+   * is readonly and is populated by Google. The currency code is readonly.
+   * 
+ * + * optional .google.type.Money budget = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + com.google.type.MoneyOrBuilder getBudgetOrBuilder(); + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List getCustomFieldValuesList(); + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.ads.admanager.v1.CustomFieldValue getCustomFieldValues(int index); + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + int getCustomFieldValuesCount(); + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List + getCustomFieldValuesOrBuilderList(); + + /** + * + * + *
+   * Optional. The values of the custom fields associated with this line item.
+   * 
+ * + * + * repeated .google.ads.admanager.v1.CustomFieldValue custom_field_values = 59 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.ads.admanager.v1.CustomFieldValueOrBuilder getCustomFieldValuesOrBuilder(int index); + + /** + * + * + *
+   * Optional. The primary goal that this LineItem is associated with, which is
+   * used in its pacing and budgeting.
+   * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the goal field is set. + */ + boolean hasGoal(); + + /** + * + * + *
+   * Optional. The primary goal that this LineItem is associated with, which is
+   * used in its pacing and budgeting.
+   * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The goal. + */ + com.google.ads.admanager.v1.Goal getGoal(); + + /** + * + * + *
+   * Optional. The primary goal that this LineItem is associated with, which is
+   * used in its pacing and budgeting.
+   * 
+ * + * + * optional .google.ads.admanager.v1.Goal goal = 76 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.ads.admanager.v1.GoalOrBuilder getGoalOrBuilder(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemServiceProto.java new file mode 100644 index 000000000000..893eb8dda266 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemServiceProto.java @@ -0,0 +1,140 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public final class LineItemServiceProto { + private LineItemServiceProto() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_GetLineItemRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_GetLineItemRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_ListLineItemsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_ListLineItemsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_admanager_v1_ListLineItemsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_admanager_v1_ListLineItemsResponse_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n" + + "/google/ads/admanager/v1/line_item_serv" + + "ice.proto\022\027google.ads.admanager.v1\0320goog" + + "le/ads/admanager/v1/line_item_messages.p" + + "roto\032\034google/api/annotations.proto\032\027goog" + + "le/api/client.proto\032\037google/api/field_be" + + "havior.proto\032\031google/api/resource.proto\"M\n" + + "\022GetLineItemRequest\0227\n" + + "\004name\030\001 \001(\tB)\340A\002\372A#\n" + + "!admanager.googleapis.com/LineItem\"\300\001\n" + + "\024ListLineItemsRequest\0228\n" + + "\006parent\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\022\026\n" + + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n" + + "page_token\030\003 \001(\tB\003\340A\001\022\023\n" + + "\006filter\030\004 \001(\tB\003\340A\001\022\025\n" + + "\010order_by\030\005 \001(\tB\003\340A\001\022\021\n" + + "\004skip\030\006 \001(\005B\003\340A\001\"{\n" + + "\025ListLineItemsResponse\0225\n\n" + + "line_items\030\001 \003(\0132!.google.ads.admanager.v1.LineItem\022\027\n" + + "\017next_page_token\030\002 \001(\t\022\022\n\n" + + "total_size\030\003 \001(\0052\221\003\n" + + "\017LineItemService\022\217\001\n" + + "\013GetLineItem\022+.google.ads.admanager.v1.GetLineItemRequest\032" + + "!.google.ads.admanager.v1.LineItem\"0\332A\004n" + + "ame\202\323\344\223\002#\022!/v1/{name=networks/*/lineItems/*}\022\242\001\n\r" + + "ListLineItems\022-.google.ads.admanager.v1.ListLineItemsRequest\032..google.a" + + "ds.admanager.v1.ListLineItemsResponse\"2\332" + + "A\006parent\202\323\344\223\002#\022!/v1/{parent=networks/*}/" + + "lineItems\032G\312A\030admanager.googleapis.com\322A" + + ")https://www.googleapis.com/auth/admanagerB\310\001\n" + + "\033com.google.ads.admanager.v1B\024LineItemServiceProtoP\001Z@google.golang.org/ge" + + "nproto/googleapis/ads/admanager/v1;adman" + + "ager\252\002\027Google.Ads.AdManager.V1\312\002\027Google\\" + + "Ads\\AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" + }; + descriptor = + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.ads.admanager.v1.LineItemMessagesProto.getDescriptor(), + com.google.api.AnnotationsProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), + com.google.api.FieldBehaviorProto.getDescriptor(), + com.google.api.ResourceProto.getDescriptor(), + }); + internal_static_google_ads_admanager_v1_GetLineItemRequest_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_admanager_v1_GetLineItemRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_GetLineItemRequest_descriptor, + new java.lang.String[] { + "Name", + }); + internal_static_google_ads_admanager_v1_ListLineItemsRequest_descriptor = + getDescriptor().getMessageTypes().get(1); + internal_static_google_ads_admanager_v1_ListLineItemsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_ListLineItemsRequest_descriptor, + new java.lang.String[] { + "Parent", "PageSize", "PageToken", "Filter", "OrderBy", "Skip", + }); + internal_static_google_ads_admanager_v1_ListLineItemsResponse_descriptor = + getDescriptor().getMessageTypes().get(2); + internal_static_google_ads_admanager_v1_ListLineItemsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_admanager_v1_ListLineItemsResponse_descriptor, + new java.lang.String[] { + "LineItems", "NextPageToken", "TotalSize", + }); + com.google.protobuf.ExtensionRegistry registry = + com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); + registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); + registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.methodSignature); + registry.add(com.google.api.ClientProto.oauthScopes); + registry.add(com.google.api.ResourceProto.resourceReference); + com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( + descriptor, registry); + com.google.ads.admanager.v1.LineItemMessagesProto.getDescriptor(); + com.google.api.AnnotationsProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); + com.google.api.FieldBehaviorProto.getDescriptor(); + com.google.api.ResourceProto.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemTypeEnum.java new file mode 100644 index 000000000000..7e3da5e01dc2 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemTypeEnum.java @@ -0,0 +1,853 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Wrapper message for
+ * [LineItemType][google.ads.admanager.v1.LineItemTypeEnum.LineItemType].
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.LineItemTypeEnum} + */ +public final class LineItemTypeEnum extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.LineItemTypeEnum) + LineItemTypeEnumOrBuilder { + private static final long serialVersionUID = 0L; + + // Use LineItemTypeEnum.newBuilder() to construct. + private LineItemTypeEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private LineItemTypeEnum() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new LineItemTypeEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemEnumsProto + .internal_static_google_ads_admanager_v1_LineItemTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemEnumsProto + .internal_static_google_ads_admanager_v1_LineItemTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.LineItemTypeEnum.class, + com.google.ads.admanager.v1.LineItemTypeEnum.Builder.class); + } + + /** + * + * + *
+   * Indicates the priority of a LineItem, determined by the way in which
+   * impressions are reserved to be served for it.
+   * 
+ * + * Protobuf enum {@code google.ads.admanager.v1.LineItemTypeEnum.LineItemType} + */ + public enum LineItemType implements com.google.protobuf.ProtocolMessageEnum { + /** + * + * + *
+     * Not specified value.
+     * 
+ * + * LINE_ITEM_TYPE_UNSPECIFIED = 0; + */ + LINE_ITEM_TYPE_UNSPECIFIED(0), + /** + * + * + *
+     * The type of LineItem for which a percentage of all the impressions that
+     * are being sold are reserved.
+     * 
+ * + * SPONSORSHIP = 12; + */ + SPONSORSHIP(12), + /** + * + * + *
+     * The type of LineItem for which a fixed quantity of impressions or
+     * clicks are reserved.
+     * 
+ * + * STANDARD = 13; + */ + STANDARD(13), + /** + * + * + *
+     * The type of LineItem most commonly used to fill a site's unsold
+     * inventory if not contractually obligated to deliver a requested number
+     * of impressions. Uses daily percentage of unsold impressions or clicks.
+     * 
+ * + * NETWORK = 9; + */ + NETWORK(9), + /** + * + * + *
+     * The type of LineItem for which a fixed quantity of impressions or
+     * clicks will be delivered at a priority lower than the STANDARD type.
+     * 
+ * + * BULK = 4; + */ + BULK(4), + /** + * + * + *
+     * The type of LineItem most commonly used to fill a site's unsold
+     * inventory if not contractually obligated to deliver a requested number
+     * of impressions. Uses fixed quantity percentage of unsold impressions or
+     * clicks.
+     * 
+ * + * PRICE_PRIORITY = 11; + */ + PRICE_PRIORITY(11), + /** + * + * + *
+     * The type of LineItem typically used for ads that promote products and
+     * services chosen by the publisher.
+     * 
+ * + * HOUSE = 7; + */ + HOUSE(7), + /** + * + * + *
+     * The type of LineItem used for ads that track ads being served
+     * externally of Ad Manager.
+     * 
+ * + * CLICK_TRACKING = 6; + */ + CLICK_TRACKING(6), + /** + * + * + *
+     * Targets the LineItem to specific inventory available to AdSense buyers.
+     * 
+ * + * ADSENSE = 2; + */ + ADSENSE(2), + /** + * + * + *
+     * Targets the LineItem to specific inventory available to Authorized Buyers
+     * and the Open Auction.
+     * 
+ * + * AD_EXCHANGE = 3; + */ + AD_EXCHANGE(3), + /** + * + * + *
+     * Represents a non-monetizable video LineItem that targets one or more
+     * bumper positions, which are short house video messages used by
+     * publishers to separate content from ad breaks.
+     * 
+ * + * BUMPER = 5; + */ + BUMPER(5), + /** + * + * + *
+     * The type of LineItem for which there are no impressions reserved, and
+     * will serve for a second price bid.
+     * 
+ * + * PREFERRED_DEAL = 10; + */ + PREFERRED_DEAL(10), + /** + * + * + *
+     * The type of LineItem used for configuring audience extension campaigns.
+     * 
+ * + * AUDIENCE_EXTENSION = 14; + */ + AUDIENCE_EXTENSION(14), + UNRECOGNIZED(-1), + ; + + /** + * + * + *
+     * Not specified value.
+     * 
+ * + * LINE_ITEM_TYPE_UNSPECIFIED = 0; + */ + public static final int LINE_ITEM_TYPE_UNSPECIFIED_VALUE = 0; + + /** + * + * + *
+     * The type of LineItem for which a percentage of all the impressions that
+     * are being sold are reserved.
+     * 
+ * + * SPONSORSHIP = 12; + */ + public static final int SPONSORSHIP_VALUE = 12; + + /** + * + * + *
+     * The type of LineItem for which a fixed quantity of impressions or
+     * clicks are reserved.
+     * 
+ * + * STANDARD = 13; + */ + public static final int STANDARD_VALUE = 13; + + /** + * + * + *
+     * The type of LineItem most commonly used to fill a site's unsold
+     * inventory if not contractually obligated to deliver a requested number
+     * of impressions. Uses daily percentage of unsold impressions or clicks.
+     * 
+ * + * NETWORK = 9; + */ + public static final int NETWORK_VALUE = 9; + + /** + * + * + *
+     * The type of LineItem for which a fixed quantity of impressions or
+     * clicks will be delivered at a priority lower than the STANDARD type.
+     * 
+ * + * BULK = 4; + */ + public static final int BULK_VALUE = 4; + + /** + * + * + *
+     * The type of LineItem most commonly used to fill a site's unsold
+     * inventory if not contractually obligated to deliver a requested number
+     * of impressions. Uses fixed quantity percentage of unsold impressions or
+     * clicks.
+     * 
+ * + * PRICE_PRIORITY = 11; + */ + public static final int PRICE_PRIORITY_VALUE = 11; + + /** + * + * + *
+     * The type of LineItem typically used for ads that promote products and
+     * services chosen by the publisher.
+     * 
+ * + * HOUSE = 7; + */ + public static final int HOUSE_VALUE = 7; + + /** + * + * + *
+     * The type of LineItem used for ads that track ads being served
+     * externally of Ad Manager.
+     * 
+ * + * CLICK_TRACKING = 6; + */ + public static final int CLICK_TRACKING_VALUE = 6; + + /** + * + * + *
+     * Targets the LineItem to specific inventory available to AdSense buyers.
+     * 
+ * + * ADSENSE = 2; + */ + public static final int ADSENSE_VALUE = 2; + + /** + * + * + *
+     * Targets the LineItem to specific inventory available to Authorized Buyers
+     * and the Open Auction.
+     * 
+ * + * AD_EXCHANGE = 3; + */ + public static final int AD_EXCHANGE_VALUE = 3; + + /** + * + * + *
+     * Represents a non-monetizable video LineItem that targets one or more
+     * bumper positions, which are short house video messages used by
+     * publishers to separate content from ad breaks.
+     * 
+ * + * BUMPER = 5; + */ + public static final int BUMPER_VALUE = 5; + + /** + * + * + *
+     * The type of LineItem for which there are no impressions reserved, and
+     * will serve for a second price bid.
+     * 
+ * + * PREFERRED_DEAL = 10; + */ + public static final int PREFERRED_DEAL_VALUE = 10; + + /** + * + * + *
+     * The type of LineItem used for configuring audience extension campaigns.
+     * 
+ * + * AUDIENCE_EXTENSION = 14; + */ + public static final int AUDIENCE_EXTENSION_VALUE = 14; + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static LineItemType valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static LineItemType forNumber(int value) { + switch (value) { + case 0: + return LINE_ITEM_TYPE_UNSPECIFIED; + case 12: + return SPONSORSHIP; + case 13: + return STANDARD; + case 9: + return NETWORK; + case 4: + return BULK; + case 11: + return PRICE_PRIORITY; + case 7: + return HOUSE; + case 6: + return CLICK_TRACKING; + case 2: + return ADSENSE; + case 3: + return AD_EXCHANGE; + case 5: + return BUMPER; + case 10: + return PREFERRED_DEAL; + case 14: + return AUDIENCE_EXTENSION; + default: + return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { + return internalValueMap; + } + + private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public LineItemType findValueByNumber(int number) { + return LineItemType.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + + public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + return getDescriptor(); + } + + public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemTypeEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final LineItemType[] VALUES = values(); + + public static LineItemType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private LineItemType(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.admanager.v1.LineItemTypeEnum.LineItemType) + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.LineItemTypeEnum)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.LineItemTypeEnum other = + (com.google.ads.admanager.v1.LineItemTypeEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.LineItemTypeEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Wrapper message for
+   * [LineItemType][google.ads.admanager.v1.LineItemTypeEnum.LineItemType].
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.LineItemTypeEnum} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.LineItemTypeEnum) + com.google.ads.admanager.v1.LineItemTypeEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemEnumsProto + .internal_static_google_ads_admanager_v1_LineItemTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemEnumsProto + .internal_static_google_ads_admanager_v1_LineItemTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.LineItemTypeEnum.class, + com.google.ads.admanager.v1.LineItemTypeEnum.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.LineItemTypeEnum.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.LineItemEnumsProto + .internal_static_google_ads_admanager_v1_LineItemTypeEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItemTypeEnum getDefaultInstanceForType() { + return com.google.ads.admanager.v1.LineItemTypeEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItemTypeEnum build() { + com.google.ads.admanager.v1.LineItemTypeEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItemTypeEnum buildPartial() { + com.google.ads.admanager.v1.LineItemTypeEnum result = + new com.google.ads.admanager.v1.LineItemTypeEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.LineItemTypeEnum) { + return mergeFrom((com.google.ads.admanager.v1.LineItemTypeEnum) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.LineItemTypeEnum other) { + if (other == com.google.ads.admanager.v1.LineItemTypeEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.LineItemTypeEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.LineItemTypeEnum) + private static final com.google.ads.admanager.v1.LineItemTypeEnum DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.LineItemTypeEnum(); + } + + public static com.google.ads.admanager.v1.LineItemTypeEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public LineItemTypeEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.LineItemTypeEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemTypeEnumOrBuilder.java new file mode 100644 index 000000000000..5678cbbc2cfe --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LineItemTypeEnumOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface LineItemTypeEnumOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.LineItemTypeEnum) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequest.java index a7df6bf75674..ec0f4f45fd4f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequestOrBuilder.java index 2842ac3568fe..94bfe4a5033e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponse.java index 95be8145bca5..6faa312702a6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponseOrBuilder.java index 5e1039f78bf5..b31e7553c6ce 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdBreaksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequest.java index 94a98c9cb277..6555ca484952 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequestOrBuilder.java index 3136df899904..d15681f1ff9c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponse.java index 06f5c89ea93f..54b1dbb69cdd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponseOrBuilder.java index a4b316e20e17..e511cee4b506 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitSizesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequest.java index 1512292694eb..5af31d90ed0e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequestOrBuilder.java index bd9e434514e4..849de8d647f1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponse.java index 3dc4ec506808..47205722c301 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponseOrBuilder.java index 2ed59a87b7d6..84a53e0bbf6c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAdUnitsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequest.java index c6492f8947b4..75a17fa72b64 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequestOrBuilder.java index 1bf37bfe2dac..423f00b6e4d3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponse.java index 8d2c7bd4479a..a94e11f1d287 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponseOrBuilder.java index e6bd74a19dfc..6dc9d8da7561 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListApplicationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequest.java index 1d7b73719f4b..46866658f7dc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequestOrBuilder.java index 799d6b5fe83f..a8d8a91ba3cb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponse.java index abcefd0d2e0b..69ef9e3b92e1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponseOrBuilder.java index e6b6ae664ac9..8e1bd6decaf8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListAudienceSegmentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequest.java index c9d81a3ffbfa..143b37412108 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequestOrBuilder.java index b74071955abb..b99644a4a265 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponse.java index e2309069d9cf..bfd56a783fca 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponseOrBuilder.java index 536d8e82ee18..f38ec401e49f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBandwidthGroupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequest.java index e8dfb48cad60..806a5b53b23b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequestOrBuilder.java index 55bed4e5f1bf..ac701ca6b2f6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponse.java index a908553fbfb6..aa81318c6ab1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponseOrBuilder.java index 2858d041dcd7..0f75c7b96cda 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowserLanguagesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequest.java index 568a05602c41..5d4d4e446f85 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequestOrBuilder.java index d64439801533..249f46bc2d8c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponse.java index 69ae4811c940..f1456b3e3242 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponseOrBuilder.java index 93d309aca8e3..83072a60a6c9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListBrowsersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequest.java index 749f65e00a7b..073d4d3137bc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequestOrBuilder.java index 7e02ec8ebadb..cdb37c48ff62 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponse.java index 658113d3f331..991446dc4171 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponseOrBuilder.java index 264cf1b63fe0..b43d1c12735a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataKeysResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequest.java index 1502db06dace..287f7e92c2c7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequestOrBuilder.java index 7c8b07261098..1d608b6b4eec 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponse.java index 12bf707f9e21..9633def2e04d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponseOrBuilder.java index ebbcbd568503..b543408761e2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCmsMetadataValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequest.java index cabf5fa0a43b..c3c599d31a87 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequestOrBuilder.java index b787e8a79fc0..8304a046381a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponse.java index 01018309a9c7..da22354c90be 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponseOrBuilder.java index ce047526bd3a..d88e3e51c11b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCompaniesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequest.java index d65b8b63e5cb..107d95bf655b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequestOrBuilder.java index 44a349caaf68..a77fc5a05d1a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponse.java index 65f20fa055f2..c6d236848ea2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponseOrBuilder.java index a22b160feb0a..77c04f8472c5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequest.java index 1cfbe05bf300..0270f5b42597 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequestOrBuilder.java index eba4d446d1e3..73f266e4f647 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponse.java index 679883de0bdc..b128c4383e5d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponseOrBuilder.java index 75b635114428..4d208b6412cb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentBundlesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequest.java index 9cdc4af3d342..a081c2dd746e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequestOrBuilder.java index 1990404d32ee..b5d1c246d65d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponse.java index e2633883d1c7..bc5e5d578a4d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponseOrBuilder.java index d48a957a29d8..51ffd0f5bd91 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentLabelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequest.java index 9b1fe773578b..25f5f64bee5f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequestOrBuilder.java index 0528e6468952..1c2e45558845 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponse.java index a083fabfcba4..c25da7e9a132 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponseOrBuilder.java index a72a5a38e547..e7aadad838e7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListContentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequest.java index d68a96ea3edc..753cf96e57c0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequestOrBuilder.java index 2db60a6b7437..334a6d8076f8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponse.java index c62308b95c4c..262c18d814cd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponseOrBuilder.java index 31bff42c1aff..94f6ca2e686f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCreativeTemplatesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequest.java index b7650df4bfc2..f8f3b8530459 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequestOrBuilder.java index 001a6b2a023e..ff62faf512cf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponse.java index 9390c866ef89..33d4ef63a765 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponseOrBuilder.java index 674e8b87fb59..071ff2e0e860 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomFieldsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequest.java index 071e1e013b7c..5e982253303e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequestOrBuilder.java index f4c16b270dca..dc8712c3e681 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponse.java index d55e11403793..d3dc59b4ea6c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponseOrBuilder.java index d9106c6bc393..6d9f743b1afa 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingKeysResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequest.java index cf7de8c9e362..fe39d0ba40c3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequestOrBuilder.java index 5952a5bcc26d..802e678563da 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponse.java index ebd990baa8ee..eb89f76e481e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponseOrBuilder.java index bf43a3f41cb6..07f2aa0df6a4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListCustomTargetingValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequest.java index 00be54d99b85..2afabe59a4a3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequestOrBuilder.java index b751797c9e70..1330b8aea379 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponse.java index 6400939decd6..a18a47158335 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponseOrBuilder.java index 89c86a04e92d..e1580808d695 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCapabilitiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequest.java index 638a2a21b82b..1ebae65b2298 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequestOrBuilder.java index 18eba6012ce3..36d959a27788 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponse.java index 4943455fbb00..bab4c0f33096 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponseOrBuilder.java index c0003fc57a5b..aba261227f33 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceCategoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequest.java index 05fcc3e0a6e7..43380667b0c6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequestOrBuilder.java index 908008df33c4..316678aff9fc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponse.java index fc329ba88e97..7696b7ea7f2d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponseOrBuilder.java index 335e9da2d2a5..a48036802b90 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListDeviceManufacturersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequest.java index c6ba78292c7a..8b9d0aa335ee 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequestOrBuilder.java index 8e1afee1383c..f72d3d28d0cf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponse.java index a35770f1a201..a33c0d29e348 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponseOrBuilder.java index 7f52f64b31c1..dc122c1684d0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListEntitySignalsMappingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequest.java index e674bbed8160..c7925a46343a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequestOrBuilder.java index 57fd663b85fe..1336d0ea51a1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponse.java index 9e7607ece8e6..b8ab23929613 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponseOrBuilder.java index fef81c5b058e..9a0e7565dd33 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListGeoTargetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsRequest.java new file mode 100644 index 000000000000..53a6b7e24c13 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsRequest.java @@ -0,0 +1,1484 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `ListLineItems` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.ListLineItemsRequest} + */ +public final class ListLineItemsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.ListLineItemsRequest) + ListLineItemsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ListLineItemsRequest.newBuilder() to construct. + private ListLineItemsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ListLineItemsRequest() { + parent_ = ""; + pageToken_ = ""; + filter_ = ""; + orderBy_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ListLineItemsRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.ListLineItemsRequest.class, + com.google.ads.admanager.v1.ListLineItemsRequest.Builder.class); + } + + public static final int PARENT_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object parent_ = ""; + + /** + * + * + *
+   * Required. The parent, which owns this collection of LineItems.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + @java.lang.Override + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The parent, which owns this collection of LineItems.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + @java.lang.Override + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int PAGE_SIZE_FIELD_NUMBER = 2; + private int pageSize_ = 0; + + /** + * + * + *
+   * Optional. The maximum number of `LineItems` to return. The service may
+   * return fewer than this value. If unspecified, at most 50 `LineItems` will
+   * be returned. The maximum value is 1000; values greater than 1000 will be
+   * coerced to 1000.
+   * 
+ * + * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageSize. + */ + @java.lang.Override + public int getPageSize() { + return pageSize_; + } + + public static final int PAGE_TOKEN_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object pageToken_ = ""; + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListLineItems` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListLineItems` must
+   * match the call that provided the page token.
+   * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageToken. + */ + @java.lang.Override + public java.lang.String getPageToken() { + java.lang.Object ref = pageToken_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + pageToken_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListLineItems` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListLineItems` must
+   * match the call that provided the page token.
+   * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for pageToken. + */ + @java.lang.Override + public com.google.protobuf.ByteString getPageTokenBytes() { + java.lang.Object ref = pageToken_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + pageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int FILTER_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object filter_ = ""; + + /** + * + * + *
+   * Optional. Expression to filter the response.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters
+   * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The filter. + */ + @java.lang.Override + public java.lang.String getFilter() { + java.lang.Object ref = filter_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + filter_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. Expression to filter the response.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters
+   * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for filter. + */ + @java.lang.Override + public com.google.protobuf.ByteString getFilterBytes() { + java.lang.Object ref = filter_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + filter_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ORDER_BY_FIELD_NUMBER = 5; + + @SuppressWarnings("serial") + private volatile java.lang.Object orderBy_ = ""; + + /** + * + * + *
+   * Optional. Expression to specify sorting order.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters#order
+   * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The orderBy. + */ + @java.lang.Override + public java.lang.String getOrderBy() { + java.lang.Object ref = orderBy_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + orderBy_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. Expression to specify sorting order.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters#order
+   * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for orderBy. + */ + @java.lang.Override + public com.google.protobuf.ByteString getOrderByBytes() { + java.lang.Object ref = orderBy_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + orderBy_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int SKIP_FIELD_NUMBER = 6; + private int skip_ = 0; + + /** + * + * + *
+   * Optional. Number of individual resources to skip while paginating.
+   * 
+ * + * int32 skip = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The skip. + */ + @java.lang.Override + public int getSkip() { + return skip_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_); + } + if (pageSize_ != 0) { + output.writeInt32(2, pageSize_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, pageToken_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filter_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, filter_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, orderBy_); + } + if (skip_ != 0) { + output.writeInt32(6, skip_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_); + } + if (pageSize_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(2, pageSize_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, pageToken_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filter_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, filter_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(orderBy_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, orderBy_); + } + if (skip_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(6, skip_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.ListLineItemsRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.ListLineItemsRequest other = + (com.google.ads.admanager.v1.ListLineItemsRequest) obj; + + if (!getParent().equals(other.getParent())) return false; + if (getPageSize() != other.getPageSize()) return false; + if (!getPageToken().equals(other.getPageToken())) return false; + if (!getFilter().equals(other.getFilter())) return false; + if (!getOrderBy().equals(other.getOrderBy())) return false; + if (getSkip() != other.getSkip()) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PARENT_FIELD_NUMBER; + hash = (53 * hash) + getParent().hashCode(); + hash = (37 * hash) + PAGE_SIZE_FIELD_NUMBER; + hash = (53 * hash) + getPageSize(); + hash = (37 * hash) + PAGE_TOKEN_FIELD_NUMBER; + hash = (53 * hash) + getPageToken().hashCode(); + hash = (37 * hash) + FILTER_FIELD_NUMBER; + hash = (53 * hash) + getFilter().hashCode(); + hash = (37 * hash) + ORDER_BY_FIELD_NUMBER; + hash = (53 * hash) + getOrderBy().hashCode(); + hash = (37 * hash) + SKIP_FIELD_NUMBER; + hash = (53 * hash) + getSkip(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.ListLineItemsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `ListLineItems` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.ListLineItemsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.ListLineItemsRequest) + com.google.ads.admanager.v1.ListLineItemsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.ListLineItemsRequest.class, + com.google.ads.admanager.v1.ListLineItemsRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.ListLineItemsRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + parent_ = ""; + pageSize_ = 0; + pageToken_ = ""; + filter_ = ""; + orderBy_ = ""; + skip_ = 0; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.ListLineItemsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsRequest build() { + com.google.ads.admanager.v1.ListLineItemsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsRequest buildPartial() { + com.google.ads.admanager.v1.ListLineItemsRequest result = + new com.google.ads.admanager.v1.ListLineItemsRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.ListLineItemsRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.parent_ = parent_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.pageSize_ = pageSize_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.pageToken_ = pageToken_; + } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.filter_ = filter_; + } + if (((from_bitField0_ & 0x00000010) != 0)) { + result.orderBy_ = orderBy_; + } + if (((from_bitField0_ & 0x00000020) != 0)) { + result.skip_ = skip_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.ListLineItemsRequest) { + return mergeFrom((com.google.ads.admanager.v1.ListLineItemsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.ListLineItemsRequest other) { + if (other == com.google.ads.admanager.v1.ListLineItemsRequest.getDefaultInstance()) + return this; + if (!other.getParent().isEmpty()) { + parent_ = other.parent_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.getPageSize() != 0) { + setPageSize(other.getPageSize()); + } + if (!other.getPageToken().isEmpty()) { + pageToken_ = other.pageToken_; + bitField0_ |= 0x00000004; + onChanged(); + } + if (!other.getFilter().isEmpty()) { + filter_ = other.filter_; + bitField0_ |= 0x00000008; + onChanged(); + } + if (!other.getOrderBy().isEmpty()) { + orderBy_ = other.orderBy_; + bitField0_ |= 0x00000010; + onChanged(); + } + if (other.getSkip() != 0) { + setSkip(other.getSkip()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + parent_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 16: + { + pageSize_ = input.readInt32(); + bitField0_ |= 0x00000002; + break; + } // case 16 + case 26: + { + pageToken_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 34: + { + filter_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 34 + case 42: + { + orderBy_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000010; + break; + } // case 42 + case 48: + { + skip_ = input.readInt32(); + bitField0_ |= 0x00000020; + break; + } // case 48 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object parent_ = ""; + + /** + * + * + *
+     * Required. The parent, which owns this collection of LineItems.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + public java.lang.String getParent() { + java.lang.Object ref = parent_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + parent_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The parent, which owns this collection of LineItems.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + public com.google.protobuf.ByteString getParentBytes() { + java.lang.Object ref = parent_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + parent_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The parent, which owns this collection of LineItems.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The parent to set. + * @return This builder for chaining. + */ + public Builder setParent(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent, which owns this collection of LineItems.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearParent() { + parent_ = getDefaultInstance().getParent(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The parent, which owns this collection of LineItems.
+     * Format: `networks/{network_code}`
+     * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for parent to set. + * @return This builder for chaining. + */ + public Builder setParentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + parent_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private int pageSize_; + + /** + * + * + *
+     * Optional. The maximum number of `LineItems` to return. The service may
+     * return fewer than this value. If unspecified, at most 50 `LineItems` will
+     * be returned. The maximum value is 1000; values greater than 1000 will be
+     * coerced to 1000.
+     * 
+ * + * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageSize. + */ + @java.lang.Override + public int getPageSize() { + return pageSize_; + } + + /** + * + * + *
+     * Optional. The maximum number of `LineItems` to return. The service may
+     * return fewer than this value. If unspecified, at most 50 `LineItems` will
+     * be returned. The maximum value is 1000; values greater than 1000 will be
+     * coerced to 1000.
+     * 
+ * + * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The pageSize to set. + * @return This builder for chaining. + */ + public Builder setPageSize(int value) { + + pageSize_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The maximum number of `LineItems` to return. The service may
+     * return fewer than this value. If unspecified, at most 50 `LineItems` will
+     * be returned. The maximum value is 1000; values greater than 1000 will be
+     * coerced to 1000.
+     * 
+ * + * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearPageSize() { + bitField0_ = (bitField0_ & ~0x00000002); + pageSize_ = 0; + onChanged(); + return this; + } + + private java.lang.Object pageToken_ = ""; + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListLineItems` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListLineItems` must
+     * match the call that provided the page token.
+     * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageToken. + */ + public java.lang.String getPageToken() { + java.lang.Object ref = pageToken_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + pageToken_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListLineItems` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListLineItems` must
+     * match the call that provided the page token.
+     * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for pageToken. + */ + public com.google.protobuf.ByteString getPageTokenBytes() { + java.lang.Object ref = pageToken_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + pageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListLineItems` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListLineItems` must
+     * match the call that provided the page token.
+     * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The pageToken to set. + * @return This builder for chaining. + */ + public Builder setPageToken(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + pageToken_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListLineItems` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListLineItems` must
+     * match the call that provided the page token.
+     * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearPageToken() { + pageToken_ = getDefaultInstance().getPageToken(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListLineItems` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListLineItems` must
+     * match the call that provided the page token.
+     * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for pageToken to set. + * @return This builder for chaining. + */ + public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + pageToken_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + private java.lang.Object filter_ = ""; + + /** + * + * + *
+     * Optional. Expression to filter the response.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters
+     * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The filter. + */ + public java.lang.String getFilter() { + java.lang.Object ref = filter_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + filter_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. Expression to filter the response.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters
+     * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for filter. + */ + public com.google.protobuf.ByteString getFilterBytes() { + java.lang.Object ref = filter_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + filter_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. Expression to filter the response.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters
+     * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The filter to set. + * @return This builder for chaining. + */ + public Builder setFilter(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + filter_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Expression to filter the response.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters
+     * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearFilter() { + filter_ = getDefaultInstance().getFilter(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Expression to filter the response.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters
+     * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for filter to set. + * @return This builder for chaining. + */ + public Builder setFilterBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + filter_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + private java.lang.Object orderBy_ = ""; + + /** + * + * + *
+     * Optional. Expression to specify sorting order.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters#order
+     * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The orderBy. + */ + public java.lang.String getOrderBy() { + java.lang.Object ref = orderBy_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + orderBy_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. Expression to specify sorting order.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters#order
+     * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for orderBy. + */ + public com.google.protobuf.ByteString getOrderByBytes() { + java.lang.Object ref = orderBy_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + orderBy_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. Expression to specify sorting order.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters#order
+     * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The orderBy to set. + * @return This builder for chaining. + */ + public Builder setOrderBy(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + orderBy_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Expression to specify sorting order.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters#order
+     * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearOrderBy() { + orderBy_ = getDefaultInstance().getOrderBy(); + bitField0_ = (bitField0_ & ~0x00000010); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Expression to specify sorting order.
+     * See syntax details at
+     * https://developers.google.com/ad-manager/api/beta/filters#order
+     * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for orderBy to set. + * @return This builder for chaining. + */ + public Builder setOrderByBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + orderBy_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + private int skip_; + + /** + * + * + *
+     * Optional. Number of individual resources to skip while paginating.
+     * 
+ * + * int32 skip = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The skip. + */ + @java.lang.Override + public int getSkip() { + return skip_; + } + + /** + * + * + *
+     * Optional. Number of individual resources to skip while paginating.
+     * 
+ * + * int32 skip = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The skip to set. + * @return This builder for chaining. + */ + public Builder setSkip(int value) { + + skip_ = value; + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Number of individual resources to skip while paginating.
+     * 
+ * + * int32 skip = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearSkip() { + bitField0_ = (bitField0_ & ~0x00000020); + skip_ = 0; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.ListLineItemsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.ListLineItemsRequest) + private static final com.google.ads.admanager.v1.ListLineItemsRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.ListLineItemsRequest(); + } + + public static com.google.ads.admanager.v1.ListLineItemsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ListLineItemsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsRequestOrBuilder.java new file mode 100644 index 000000000000..420faf88cecd --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsRequestOrBuilder.java @@ -0,0 +1,181 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface ListLineItemsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.ListLineItemsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The parent, which owns this collection of LineItems.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The parent. + */ + java.lang.String getParent(); + + /** + * + * + *
+   * Required. The parent, which owns this collection of LineItems.
+   * Format: `networks/{network_code}`
+   * 
+ * + * + * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for parent. + */ + com.google.protobuf.ByteString getParentBytes(); + + /** + * + * + *
+   * Optional. The maximum number of `LineItems` to return. The service may
+   * return fewer than this value. If unspecified, at most 50 `LineItems` will
+   * be returned. The maximum value is 1000; values greater than 1000 will be
+   * coerced to 1000.
+   * 
+ * + * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageSize. + */ + int getPageSize(); + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListLineItems` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListLineItems` must
+   * match the call that provided the page token.
+   * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageToken. + */ + java.lang.String getPageToken(); + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListLineItems` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListLineItems` must
+   * match the call that provided the page token.
+   * 
+ * + * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for pageToken. + */ + com.google.protobuf.ByteString getPageTokenBytes(); + + /** + * + * + *
+   * Optional. Expression to filter the response.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters
+   * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The filter. + */ + java.lang.String getFilter(); + + /** + * + * + *
+   * Optional. Expression to filter the response.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters
+   * 
+ * + * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for filter. + */ + com.google.protobuf.ByteString getFilterBytes(); + + /** + * + * + *
+   * Optional. Expression to specify sorting order.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters#order
+   * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The orderBy. + */ + java.lang.String getOrderBy(); + + /** + * + * + *
+   * Optional. Expression to specify sorting order.
+   * See syntax details at
+   * https://developers.google.com/ad-manager/api/beta/filters#order
+   * 
+ * + * string order_by = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for orderBy. + */ + com.google.protobuf.ByteString getOrderByBytes(); + + /** + * + * + *
+   * Optional. Number of individual resources to skip while paginating.
+   * 
+ * + * int32 skip = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The skip. + */ + int getSkip(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsResponse.java new file mode 100644 index 000000000000..720701437028 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsResponse.java @@ -0,0 +1,1294 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Response object for `ListLineItemsRequest` containing matching `LineItem`
+ * objects.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.ListLineItemsResponse} + */ +public final class ListLineItemsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.ListLineItemsResponse) + ListLineItemsResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ListLineItemsResponse.newBuilder() to construct. + private ListLineItemsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ListLineItemsResponse() { + lineItems_ = java.util.Collections.emptyList(); + nextPageToken_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ListLineItemsResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.ListLineItemsResponse.class, + com.google.ads.admanager.v1.ListLineItemsResponse.Builder.class); + } + + public static final int LINE_ITEMS_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private java.util.List lineItems_; + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + @java.lang.Override + public java.util.List getLineItemsList() { + return lineItems_; + } + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + @java.lang.Override + public java.util.List + getLineItemsOrBuilderList() { + return lineItems_; + } + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + @java.lang.Override + public int getLineItemsCount() { + return lineItems_.size(); + } + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.LineItem getLineItems(int index) { + return lineItems_.get(index); + } + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + @java.lang.Override + public com.google.ads.admanager.v1.LineItemOrBuilder getLineItemsOrBuilder(int index) { + return lineItems_.get(index); + } + + public static final int NEXT_PAGE_TOKEN_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object nextPageToken_ = ""; + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The nextPageToken. + */ + @java.lang.Override + public java.lang.String getNextPageToken() { + java.lang.Object ref = nextPageToken_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + nextPageToken_ = s; + return s; + } + } + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The bytes for nextPageToken. + */ + @java.lang.Override + public com.google.protobuf.ByteString getNextPageTokenBytes() { + java.lang.Object ref = nextPageToken_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + nextPageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int TOTAL_SIZE_FIELD_NUMBER = 3; + private int totalSize_ = 0; + + /** + * + * + *
+   * Total number of `LineItem` objects.
+   * If a filter was included in the request, this reflects the total number
+   * after the filtering is applied.
+   *
+   * `total_size` won't be calculated in the response unless it has been
+   * included in a response field mask. The response field mask can be provided
+   * to the method by using the URL parameter `$fields` or `fields`, or by using
+   * the HTTP/gRPC header `X-Goog-FieldMask`.
+   *
+   * For more information, see
+   * https://developers.google.com/ad-manager/api/beta/field-masks
+   * 
+ * + * int32 total_size = 3; + * + * @return The totalSize. + */ + @java.lang.Override + public int getTotalSize() { + return totalSize_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < lineItems_.size(); i++) { + output.writeMessage(1, lineItems_.get(i)); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_); + } + if (totalSize_ != 0) { + output.writeInt32(3, totalSize_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < lineItems_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, lineItems_.get(i)); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_); + } + if (totalSize_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(3, totalSize_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.ListLineItemsResponse)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.ListLineItemsResponse other = + (com.google.ads.admanager.v1.ListLineItemsResponse) obj; + + if (!getLineItemsList().equals(other.getLineItemsList())) return false; + if (!getNextPageToken().equals(other.getNextPageToken())) return false; + if (getTotalSize() != other.getTotalSize()) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getLineItemsCount() > 0) { + hash = (37 * hash) + LINE_ITEMS_FIELD_NUMBER; + hash = (53 * hash) + getLineItemsList().hashCode(); + } + hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER; + hash = (53 * hash) + getNextPageToken().hashCode(); + hash = (37 * hash) + TOTAL_SIZE_FIELD_NUMBER; + hash = (53 * hash) + getTotalSize(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.ListLineItemsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Response object for `ListLineItemsRequest` containing matching `LineItem`
+   * objects.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.ListLineItemsResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.ListLineItemsResponse) + com.google.ads.admanager.v1.ListLineItemsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.ListLineItemsResponse.class, + com.google.ads.admanager.v1.ListLineItemsResponse.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.ListLineItemsResponse.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (lineItemsBuilder_ == null) { + lineItems_ = java.util.Collections.emptyList(); + } else { + lineItems_ = null; + lineItemsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + nextPageToken_ = ""; + totalSize_ = 0; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.LineItemServiceProto + .internal_static_google_ads_admanager_v1_ListLineItemsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsResponse getDefaultInstanceForType() { + return com.google.ads.admanager.v1.ListLineItemsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsResponse build() { + com.google.ads.admanager.v1.ListLineItemsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsResponse buildPartial() { + com.google.ads.admanager.v1.ListLineItemsResponse result = + new com.google.ads.admanager.v1.ListLineItemsResponse(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.ads.admanager.v1.ListLineItemsResponse result) { + if (lineItemsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + lineItems_ = java.util.Collections.unmodifiableList(lineItems_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.lineItems_ = lineItems_; + } else { + result.lineItems_ = lineItemsBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.admanager.v1.ListLineItemsResponse result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.nextPageToken_ = nextPageToken_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.totalSize_ = totalSize_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.ListLineItemsResponse) { + return mergeFrom((com.google.ads.admanager.v1.ListLineItemsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.ListLineItemsResponse other) { + if (other == com.google.ads.admanager.v1.ListLineItemsResponse.getDefaultInstance()) + return this; + if (lineItemsBuilder_ == null) { + if (!other.lineItems_.isEmpty()) { + if (lineItems_.isEmpty()) { + lineItems_ = other.lineItems_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureLineItemsIsMutable(); + lineItems_.addAll(other.lineItems_); + } + onChanged(); + } + } else { + if (!other.lineItems_.isEmpty()) { + if (lineItemsBuilder_.isEmpty()) { + lineItemsBuilder_.dispose(); + lineItemsBuilder_ = null; + lineItems_ = other.lineItems_; + bitField0_ = (bitField0_ & ~0x00000001); + lineItemsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getLineItemsFieldBuilder() + : null; + } else { + lineItemsBuilder_.addAllMessages(other.lineItems_); + } + } + } + if (!other.getNextPageToken().isEmpty()) { + nextPageToken_ = other.nextPageToken_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (other.getTotalSize() != 0) { + setTotalSize(other.getTotalSize()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + com.google.ads.admanager.v1.LineItem m = + input.readMessage( + com.google.ads.admanager.v1.LineItem.parser(), extensionRegistry); + if (lineItemsBuilder_ == null) { + ensureLineItemsIsMutable(); + lineItems_.add(m); + } else { + lineItemsBuilder_.addMessage(m); + } + break; + } // case 10 + case 18: + { + nextPageToken_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 24: + { + totalSize_ = input.readInt32(); + bitField0_ |= 0x00000004; + break; + } // case 24 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List lineItems_ = + java.util.Collections.emptyList(); + + private void ensureLineItemsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + lineItems_ = new java.util.ArrayList(lineItems_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.LineItem, + com.google.ads.admanager.v1.LineItem.Builder, + com.google.ads.admanager.v1.LineItemOrBuilder> + lineItemsBuilder_; + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public java.util.List getLineItemsList() { + if (lineItemsBuilder_ == null) { + return java.util.Collections.unmodifiableList(lineItems_); + } else { + return lineItemsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public int getLineItemsCount() { + if (lineItemsBuilder_ == null) { + return lineItems_.size(); + } else { + return lineItemsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public com.google.ads.admanager.v1.LineItem getLineItems(int index) { + if (lineItemsBuilder_ == null) { + return lineItems_.get(index); + } else { + return lineItemsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder setLineItems(int index, com.google.ads.admanager.v1.LineItem value) { + if (lineItemsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLineItemsIsMutable(); + lineItems_.set(index, value); + onChanged(); + } else { + lineItemsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder setLineItems( + int index, com.google.ads.admanager.v1.LineItem.Builder builderForValue) { + if (lineItemsBuilder_ == null) { + ensureLineItemsIsMutable(); + lineItems_.set(index, builderForValue.build()); + onChanged(); + } else { + lineItemsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder addLineItems(com.google.ads.admanager.v1.LineItem value) { + if (lineItemsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLineItemsIsMutable(); + lineItems_.add(value); + onChanged(); + } else { + lineItemsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder addLineItems(int index, com.google.ads.admanager.v1.LineItem value) { + if (lineItemsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLineItemsIsMutable(); + lineItems_.add(index, value); + onChanged(); + } else { + lineItemsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder addLineItems(com.google.ads.admanager.v1.LineItem.Builder builderForValue) { + if (lineItemsBuilder_ == null) { + ensureLineItemsIsMutable(); + lineItems_.add(builderForValue.build()); + onChanged(); + } else { + lineItemsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder addLineItems( + int index, com.google.ads.admanager.v1.LineItem.Builder builderForValue) { + if (lineItemsBuilder_ == null) { + ensureLineItemsIsMutable(); + lineItems_.add(index, builderForValue.build()); + onChanged(); + } else { + lineItemsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder addAllLineItems( + java.lang.Iterable values) { + if (lineItemsBuilder_ == null) { + ensureLineItemsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, lineItems_); + onChanged(); + } else { + lineItemsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder clearLineItems() { + if (lineItemsBuilder_ == null) { + lineItems_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + lineItemsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public Builder removeLineItems(int index) { + if (lineItemsBuilder_ == null) { + ensureLineItemsIsMutable(); + lineItems_.remove(index); + onChanged(); + } else { + lineItemsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public com.google.ads.admanager.v1.LineItem.Builder getLineItemsBuilder(int index) { + return getLineItemsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public com.google.ads.admanager.v1.LineItemOrBuilder getLineItemsOrBuilder(int index) { + if (lineItemsBuilder_ == null) { + return lineItems_.get(index); + } else { + return lineItemsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public java.util.List + getLineItemsOrBuilderList() { + if (lineItemsBuilder_ != null) { + return lineItemsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(lineItems_); + } + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public com.google.ads.admanager.v1.LineItem.Builder addLineItemsBuilder() { + return getLineItemsFieldBuilder() + .addBuilder(com.google.ads.admanager.v1.LineItem.getDefaultInstance()); + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public com.google.ads.admanager.v1.LineItem.Builder addLineItemsBuilder(int index) { + return getLineItemsFieldBuilder() + .addBuilder(index, com.google.ads.admanager.v1.LineItem.getDefaultInstance()); + } + + /** + * + * + *
+     * The `LineItem` objects from the specified network.
+     * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + public java.util.List getLineItemsBuilderList() { + return getLineItemsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.LineItem, + com.google.ads.admanager.v1.LineItem.Builder, + com.google.ads.admanager.v1.LineItemOrBuilder> + getLineItemsFieldBuilder() { + if (lineItemsBuilder_ == null) { + lineItemsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.admanager.v1.LineItem, + com.google.ads.admanager.v1.LineItem.Builder, + com.google.ads.admanager.v1.LineItemOrBuilder>( + lineItems_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); + lineItems_ = null; + } + return lineItemsBuilder_; + } + + private java.lang.Object nextPageToken_ = ""; + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @return The nextPageToken. + */ + public java.lang.String getNextPageToken() { + java.lang.Object ref = nextPageToken_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + nextPageToken_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @return The bytes for nextPageToken. + */ + public com.google.protobuf.ByteString getNextPageTokenBytes() { + java.lang.Object ref = nextPageToken_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + nextPageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @param value The nextPageToken to set. + * @return This builder for chaining. + */ + public Builder setNextPageToken(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + nextPageToken_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @return This builder for chaining. + */ + public Builder clearNextPageToken() { + nextPageToken_ = getDefaultInstance().getNextPageToken(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @param value The bytes for nextPageToken to set. + * @return This builder for chaining. + */ + public Builder setNextPageTokenBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + nextPageToken_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private int totalSize_; + + /** + * + * + *
+     * Total number of `LineItem` objects.
+     * If a filter was included in the request, this reflects the total number
+     * after the filtering is applied.
+     *
+     * `total_size` won't be calculated in the response unless it has been
+     * included in a response field mask. The response field mask can be provided
+     * to the method by using the URL parameter `$fields` or `fields`, or by using
+     * the HTTP/gRPC header `X-Goog-FieldMask`.
+     *
+     * For more information, see
+     * https://developers.google.com/ad-manager/api/beta/field-masks
+     * 
+ * + * int32 total_size = 3; + * + * @return The totalSize. + */ + @java.lang.Override + public int getTotalSize() { + return totalSize_; + } + + /** + * + * + *
+     * Total number of `LineItem` objects.
+     * If a filter was included in the request, this reflects the total number
+     * after the filtering is applied.
+     *
+     * `total_size` won't be calculated in the response unless it has been
+     * included in a response field mask. The response field mask can be provided
+     * to the method by using the URL parameter `$fields` or `fields`, or by using
+     * the HTTP/gRPC header `X-Goog-FieldMask`.
+     *
+     * For more information, see
+     * https://developers.google.com/ad-manager/api/beta/field-masks
+     * 
+ * + * int32 total_size = 3; + * + * @param value The totalSize to set. + * @return This builder for chaining. + */ + public Builder setTotalSize(int value) { + + totalSize_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Total number of `LineItem` objects.
+     * If a filter was included in the request, this reflects the total number
+     * after the filtering is applied.
+     *
+     * `total_size` won't be calculated in the response unless it has been
+     * included in a response field mask. The response field mask can be provided
+     * to the method by using the URL parameter `$fields` or `fields`, or by using
+     * the HTTP/gRPC header `X-Goog-FieldMask`.
+     *
+     * For more information, see
+     * https://developers.google.com/ad-manager/api/beta/field-masks
+     * 
+ * + * int32 total_size = 3; + * + * @return This builder for chaining. + */ + public Builder clearTotalSize() { + bitField0_ = (bitField0_ & ~0x00000004); + totalSize_ = 0; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.ListLineItemsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.ListLineItemsResponse) + private static final com.google.ads.admanager.v1.ListLineItemsResponse DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.ListLineItemsResponse(); + } + + public static com.google.ads.admanager.v1.ListLineItemsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ListLineItemsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.ListLineItemsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsResponseOrBuilder.java new file mode 100644 index 000000000000..7014c7bcd850 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListLineItemsResponseOrBuilder.java @@ -0,0 +1,133 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/line_item_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface ListLineItemsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.ListLineItemsResponse) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + java.util.List getLineItemsList(); + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + com.google.ads.admanager.v1.LineItem getLineItems(int index); + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + int getLineItemsCount(); + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + java.util.List + getLineItemsOrBuilderList(); + + /** + * + * + *
+   * The `LineItem` objects from the specified network.
+   * 
+ * + * repeated .google.ads.admanager.v1.LineItem line_items = 1; + */ + com.google.ads.admanager.v1.LineItemOrBuilder getLineItemsOrBuilder(int index); + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The nextPageToken. + */ + java.lang.String getNextPageToken(); + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The bytes for nextPageToken. + */ + com.google.protobuf.ByteString getNextPageTokenBytes(); + + /** + * + * + *
+   * Total number of `LineItem` objects.
+   * If a filter was included in the request, this reflects the total number
+   * after the filtering is applied.
+   *
+   * `total_size` won't be calculated in the response unless it has been
+   * included in a response field mask. The response field mask can be provided
+   * to the method by using the URL parameter `$fields` or `fields`, or by using
+   * the HTTP/gRPC header `X-Goog-FieldMask`.
+   *
+   * For more information, see
+   * https://developers.google.com/ad-manager/api/beta/field-masks
+   * 
+ * + * int32 total_size = 3; + * + * @return The totalSize. + */ + int getTotalSize(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequest.java index 88238443cb88..5cb964b62bb3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequestOrBuilder.java index 62a3463fe5d3..fdff6ea5f68a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponse.java index 069d68b1ce6c..e68aa258b382 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponseOrBuilder.java index dcb77177e981..db2fdd316830 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileCarriersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequest.java index 4b24032738b7..19c55cd059ca 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequestOrBuilder.java index 88f2eea287a9..1b57c0e5c49d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponse.java index 79a19f7fef01..4574e3b9cb5e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponseOrBuilder.java index a9d2028eed09..5f1961696818 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDeviceSubmodelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequest.java index 4ecab0379617..9b334b94daa7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequestOrBuilder.java index b58131a24205..8cc668648bdf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponse.java index 86a13817d02a..fa27842fcb05 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponseOrBuilder.java index a92a229a6154..588cdfdeeb61 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListMobileDevicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequest.java index 1350ccf292fa..80247cb1df04 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -39,7 +39,9 @@ private ListNetworksRequest(com.google.protobuf.GeneratedMessageV3.Builder bu super(builder); } - private ListNetworksRequest() {} + private ListNetworksRequest() { + pageToken_ = ""; + } @java.lang.Override @SuppressWarnings({"unused"}) @@ -62,6 +64,108 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { com.google.ads.admanager.v1.ListNetworksRequest.Builder.class); } + public static final int PAGE_SIZE_FIELD_NUMBER = 3; + private int pageSize_ = 0; + + /** + * + * + *
+   * Optional. The maximum number of `Network`s to return. The service may
+   * return fewer than this value. If unspecified, at most 50 `Network`s will be
+   * returned. The maximum value is 1000; values greater than 1000 will be
+   * coerced to 1000.
+   * 
+ * + * int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageSize. + */ + @java.lang.Override + public int getPageSize() { + return pageSize_; + } + + public static final int PAGE_TOKEN_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object pageToken_ = ""; + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListNetworks` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListNetworks` must match
+   * the call that provided the page token.
+   * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageToken. + */ + @java.lang.Override + public java.lang.String getPageToken() { + java.lang.Object ref = pageToken_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + pageToken_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListNetworks` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListNetworks` must match
+   * the call that provided the page token.
+   * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for pageToken. + */ + @java.lang.Override + public com.google.protobuf.ByteString getPageTokenBytes() { + java.lang.Object ref = pageToken_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + pageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int SKIP_FIELD_NUMBER = 5; + private int skip_ = 0; + + /** + * + * + *
+   * Optional. Number of individual resources to skip while paginating.
+   * 
+ * + * int32 skip = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The skip. + */ + @java.lang.Override + public int getSkip() { + return skip_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -76,6 +180,15 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (pageSize_ != 0) { + output.writeInt32(3, pageSize_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, pageToken_); + } + if (skip_ != 0) { + output.writeInt32(5, skip_); + } getUnknownFields().writeTo(output); } @@ -85,6 +198,15 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; + if (pageSize_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(3, pageSize_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, pageToken_); + } + if (skip_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(5, skip_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -101,6 +223,9 @@ public boolean equals(final java.lang.Object obj) { com.google.ads.admanager.v1.ListNetworksRequest other = (com.google.ads.admanager.v1.ListNetworksRequest) obj; + if (getPageSize() != other.getPageSize()) return false; + if (!getPageToken().equals(other.getPageToken())) return false; + if (getSkip() != other.getSkip()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -112,6 +237,12 @@ public int hashCode() { } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + PAGE_SIZE_FIELD_NUMBER; + hash = (53 * hash) + getPageSize(); + hash = (37 * hash) + PAGE_TOKEN_FIELD_NUMBER; + hash = (53 * hash) + getPageToken().hashCode(); + hash = (37 * hash) + SKIP_FIELD_NUMBER; + hash = (53 * hash) + getSkip(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -251,6 +382,10 @@ private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { @java.lang.Override public Builder clear() { super.clear(); + bitField0_ = 0; + pageSize_ = 0; + pageToken_ = ""; + skip_ = 0; return this; } @@ -278,10 +413,26 @@ public com.google.ads.admanager.v1.ListNetworksRequest build() { public com.google.ads.admanager.v1.ListNetworksRequest buildPartial() { com.google.ads.admanager.v1.ListNetworksRequest result = new com.google.ads.admanager.v1.ListNetworksRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } onBuilt(); return result; } + private void buildPartial0(com.google.ads.admanager.v1.ListNetworksRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.pageSize_ = pageSize_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.pageToken_ = pageToken_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.skip_ = skip_; + } + } + @java.lang.Override public Builder clone() { return super.clone(); @@ -328,6 +479,17 @@ public Builder mergeFrom(com.google.protobuf.Message other) { public Builder mergeFrom(com.google.ads.admanager.v1.ListNetworksRequest other) { if (other == com.google.ads.admanager.v1.ListNetworksRequest.getDefaultInstance()) return this; + if (other.getPageSize() != 0) { + setPageSize(other.getPageSize()); + } + if (!other.getPageToken().isEmpty()) { + pageToken_ = other.pageToken_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (other.getSkip() != 0) { + setSkip(other.getSkip()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -354,6 +516,24 @@ public Builder mergeFrom( case 0: done = true; break; + case 24: + { + pageSize_ = input.readInt32(); + bitField0_ |= 0x00000001; + break; + } // case 24 + case 34: + { + pageToken_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 34 + case 40: + { + skip_ = input.readInt32(); + bitField0_ |= 0x00000004; + break; + } // case 40 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -371,6 +551,260 @@ public Builder mergeFrom( return this; } + private int bitField0_; + + private int pageSize_; + + /** + * + * + *
+     * Optional. The maximum number of `Network`s to return. The service may
+     * return fewer than this value. If unspecified, at most 50 `Network`s will be
+     * returned. The maximum value is 1000; values greater than 1000 will be
+     * coerced to 1000.
+     * 
+ * + * int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageSize. + */ + @java.lang.Override + public int getPageSize() { + return pageSize_; + } + + /** + * + * + *
+     * Optional. The maximum number of `Network`s to return. The service may
+     * return fewer than this value. If unspecified, at most 50 `Network`s will be
+     * returned. The maximum value is 1000; values greater than 1000 will be
+     * coerced to 1000.
+     * 
+ * + * int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The pageSize to set. + * @return This builder for chaining. + */ + public Builder setPageSize(int value) { + + pageSize_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The maximum number of `Network`s to return. The service may
+     * return fewer than this value. If unspecified, at most 50 `Network`s will be
+     * returned. The maximum value is 1000; values greater than 1000 will be
+     * coerced to 1000.
+     * 
+ * + * int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearPageSize() { + bitField0_ = (bitField0_ & ~0x00000001); + pageSize_ = 0; + onChanged(); + return this; + } + + private java.lang.Object pageToken_ = ""; + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListNetworks` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListNetworks` must match
+     * the call that provided the page token.
+     * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageToken. + */ + public java.lang.String getPageToken() { + java.lang.Object ref = pageToken_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + pageToken_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListNetworks` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListNetworks` must match
+     * the call that provided the page token.
+     * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for pageToken. + */ + public com.google.protobuf.ByteString getPageTokenBytes() { + java.lang.Object ref = pageToken_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + pageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListNetworks` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListNetworks` must match
+     * the call that provided the page token.
+     * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The pageToken to set. + * @return This builder for chaining. + */ + public Builder setPageToken(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + pageToken_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListNetworks` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListNetworks` must match
+     * the call that provided the page token.
+     * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearPageToken() { + pageToken_ = getDefaultInstance().getPageToken(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. A page token, received from a previous `ListNetworks` call.
+     * Provide this to retrieve the subsequent page.
+     *
+     * When paginating, all other parameters provided to `ListNetworks` must match
+     * the call that provided the page token.
+     * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for pageToken to set. + * @return This builder for chaining. + */ + public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + pageToken_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private int skip_; + + /** + * + * + *
+     * Optional. Number of individual resources to skip while paginating.
+     * 
+ * + * int32 skip = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The skip. + */ + @java.lang.Override + public int getSkip() { + return skip_; + } + + /** + * + * + *
+     * Optional. Number of individual resources to skip while paginating.
+     * 
+ * + * int32 skip = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The skip to set. + * @return This builder for chaining. + */ + public Builder setSkip(int value) { + + skip_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Number of individual resources to skip while paginating.
+     * 
+ * + * int32 skip = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearSkip() { + bitField0_ = (bitField0_ & ~0x00000004); + skip_ = 0; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequestOrBuilder.java index 8d80c9035d31..8d40d98e238e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,4 +22,68 @@ public interface ListNetworksRequestOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.ListNetworksRequest) - com.google.protobuf.MessageOrBuilder {} + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. The maximum number of `Network`s to return. The service may
+   * return fewer than this value. If unspecified, at most 50 `Network`s will be
+   * returned. The maximum value is 1000; values greater than 1000 will be
+   * coerced to 1000.
+   * 
+ * + * int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageSize. + */ + int getPageSize(); + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListNetworks` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListNetworks` must match
+   * the call that provided the page token.
+   * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The pageToken. + */ + java.lang.String getPageToken(); + + /** + * + * + *
+   * Optional. A page token, received from a previous `ListNetworks` call.
+   * Provide this to retrieve the subsequent page.
+   *
+   * When paginating, all other parameters provided to `ListNetworks` must match
+   * the call that provided the page token.
+   * 
+ * + * string page_token = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for pageToken. + */ + com.google.protobuf.ByteString getPageTokenBytes(); + + /** + * + * + *
+   * Optional. Number of individual resources to skip while paginating.
+   * 
+ * + * int32 skip = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The skip. + */ + int getSkip(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponse.java index 1a2d707507bd..50b87546c946 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,6 +41,7 @@ private ListNetworksResponse(com.google.protobuf.GeneratedMessageV3.Builder b private ListNetworksResponse() { networks_ = java.util.Collections.emptyList(); + nextPageToken_ = ""; } @java.lang.Override @@ -140,6 +141,88 @@ public com.google.ads.admanager.v1.NetworkOrBuilder getNetworksOrBuilder(int ind return networks_.get(index); } + public static final int NEXT_PAGE_TOKEN_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object nextPageToken_ = ""; + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The nextPageToken. + */ + @java.lang.Override + public java.lang.String getNextPageToken() { + java.lang.Object ref = nextPageToken_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + nextPageToken_ = s; + return s; + } + } + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The bytes for nextPageToken. + */ + @java.lang.Override + public com.google.protobuf.ByteString getNextPageTokenBytes() { + java.lang.Object ref = nextPageToken_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + nextPageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int TOTAL_SIZE_FIELD_NUMBER = 3; + private int totalSize_ = 0; + + /** + * + * + *
+   * Total number of `Network`s.
+   *
+   * `total_size` won't be calculated in the response unless it has been
+   * included in a response field mask. The response field mask can be provided
+   * to the method by using the URL parameter `$fields` or `fields`, or by using
+   * the HTTP/gRPC header `X-Goog-FieldMask`.
+   *
+   * For more information, see
+   * https://developers.google.com/ad-manager/api/beta/field-masks
+   * 
+ * + * int32 total_size = 3; + * + * @return The totalSize. + */ + @java.lang.Override + public int getTotalSize() { + return totalSize_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -157,6 +240,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io for (int i = 0; i < networks_.size(); i++) { output.writeMessage(1, networks_.get(i)); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_); + } + if (totalSize_ != 0) { + output.writeInt32(3, totalSize_); + } getUnknownFields().writeTo(output); } @@ -169,6 +258,12 @@ public int getSerializedSize() { for (int i = 0; i < networks_.size(); i++) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, networks_.get(i)); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_); + } + if (totalSize_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(3, totalSize_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -186,6 +281,8 @@ public boolean equals(final java.lang.Object obj) { (com.google.ads.admanager.v1.ListNetworksResponse) obj; if (!getNetworksList().equals(other.getNetworksList())) return false; + if (!getNextPageToken().equals(other.getNextPageToken())) return false; + if (getTotalSize() != other.getTotalSize()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -201,6 +298,10 @@ public int hashCode() { hash = (37 * hash) + NETWORKS_FIELD_NUMBER; hash = (53 * hash) + getNetworksList().hashCode(); } + hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER; + hash = (53 * hash) + getNextPageToken().hashCode(); + hash = (37 * hash) + TOTAL_SIZE_FIELD_NUMBER; + hash = (53 * hash) + getTotalSize(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -348,6 +449,8 @@ public Builder clear() { networksBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); + nextPageToken_ = ""; + totalSize_ = 0; return this; } @@ -398,6 +501,12 @@ private void buildPartialRepeatedFields( private void buildPartial0(com.google.ads.admanager.v1.ListNetworksResponse result) { int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.nextPageToken_ = nextPageToken_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.totalSize_ = totalSize_; + } } @java.lang.Override @@ -473,6 +582,14 @@ public Builder mergeFrom(com.google.ads.admanager.v1.ListNetworksResponse other) } } } + if (!other.getNextPageToken().isEmpty()) { + nextPageToken_ = other.nextPageToken_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (other.getTotalSize() != 0) { + setTotalSize(other.getTotalSize()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -512,6 +629,18 @@ public Builder mergeFrom( } break; } // case 10 + case 18: + { + nextPageToken_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 24: + { + totalSize_ = input.readInt32(); + bitField0_ |= 0x00000004; + break; + } // case 24 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -896,6 +1025,202 @@ public java.util.List getNetworksBu return networksBuilder_; } + private java.lang.Object nextPageToken_ = ""; + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @return The nextPageToken. + */ + public java.lang.String getNextPageToken() { + java.lang.Object ref = nextPageToken_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + nextPageToken_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @return The bytes for nextPageToken. + */ + public com.google.protobuf.ByteString getNextPageTokenBytes() { + java.lang.Object ref = nextPageToken_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + nextPageToken_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @param value The nextPageToken to set. + * @return This builder for chaining. + */ + public Builder setNextPageToken(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + nextPageToken_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @return This builder for chaining. + */ + public Builder clearNextPageToken() { + nextPageToken_ = getDefaultInstance().getNextPageToken(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * A token, which can be sent as `page_token` to retrieve the next page.
+     * If this field is omitted, there are no subsequent pages.
+     * 
+ * + * string next_page_token = 2; + * + * @param value The bytes for nextPageToken to set. + * @return This builder for chaining. + */ + public Builder setNextPageTokenBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + nextPageToken_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private int totalSize_; + + /** + * + * + *
+     * Total number of `Network`s.
+     *
+     * `total_size` won't be calculated in the response unless it has been
+     * included in a response field mask. The response field mask can be provided
+     * to the method by using the URL parameter `$fields` or `fields`, or by using
+     * the HTTP/gRPC header `X-Goog-FieldMask`.
+     *
+     * For more information, see
+     * https://developers.google.com/ad-manager/api/beta/field-masks
+     * 
+ * + * int32 total_size = 3; + * + * @return The totalSize. + */ + @java.lang.Override + public int getTotalSize() { + return totalSize_; + } + + /** + * + * + *
+     * Total number of `Network`s.
+     *
+     * `total_size` won't be calculated in the response unless it has been
+     * included in a response field mask. The response field mask can be provided
+     * to the method by using the URL parameter `$fields` or `fields`, or by using
+     * the HTTP/gRPC header `X-Goog-FieldMask`.
+     *
+     * For more information, see
+     * https://developers.google.com/ad-manager/api/beta/field-masks
+     * 
+ * + * int32 total_size = 3; + * + * @param value The totalSize to set. + * @return This builder for chaining. + */ + public Builder setTotalSize(int value) { + + totalSize_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Total number of `Network`s.
+     *
+     * `total_size` won't be calculated in the response unless it has been
+     * included in a response field mask. The response field mask can be provided
+     * to the method by using the URL parameter `$fields` or `fields`, or by using
+     * the HTTP/gRPC header `X-Goog-FieldMask`.
+     *
+     * For more information, see
+     * https://developers.google.com/ad-manager/api/beta/field-masks
+     * 
+ * + * int32 total_size = 3; + * + * @return This builder for chaining. + */ + public Builder clearTotalSize() { + bitField0_ = (bitField0_ & ~0x00000004); + totalSize_ = 0; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponseOrBuilder.java index 8a15387521de..0722669ddde1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListNetworksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,4 +78,53 @@ public interface ListNetworksResponseOrBuilder * repeated .google.ads.admanager.v1.Network networks = 1; */ com.google.ads.admanager.v1.NetworkOrBuilder getNetworksOrBuilder(int index); + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The nextPageToken. + */ + java.lang.String getNextPageToken(); + + /** + * + * + *
+   * A token, which can be sent as `page_token` to retrieve the next page.
+   * If this field is omitted, there are no subsequent pages.
+   * 
+ * + * string next_page_token = 2; + * + * @return The bytes for nextPageToken. + */ + com.google.protobuf.ByteString getNextPageTokenBytes(); + + /** + * + * + *
+   * Total number of `Network`s.
+   *
+   * `total_size` won't be calculated in the response unless it has been
+   * included in a response field mask. The response field mask can be provided
+   * to the method by using the URL parameter `$fields` or `fields`, or by using
+   * the HTTP/gRPC header `X-Goog-FieldMask`.
+   *
+   * For more information, see
+   * https://developers.google.com/ad-manager/api/beta/field-masks
+   * 
+ * + * int32 total_size = 3; + * + * @return The totalSize. + */ + int getTotalSize(); } diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequest.java index d6e596ca716f..4e81299946a8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequestOrBuilder.java index 119737ca3737..83205848563f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponse.java index 21a92e60184b..123281500f51 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponseOrBuilder.java index c654ad962e31..2bbb532542c3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequest.java index ed0fd12ffe1f..b069be75bd82 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequestOrBuilder.java index 215e94f717e6..2edf285098f8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponse.java index 30bc05b52439..084f3bcb363a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponseOrBuilder.java index 2a79f2d503ff..72aa7873760b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOperatingSystemsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequest.java index 2c7387e1d866..10dd0412e6c3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequestOrBuilder.java index 3643cf0ec194..c8d104333a73 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponse.java index e4d7ef71b2db..56639821abc7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponseOrBuilder.java index 2d19c18d42a4..9cd515cb863d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListOrdersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequest.java index 2ffe87d64e7f..8ac3fc84c0fc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequestOrBuilder.java index 66b714fecd96..f2e542d2a525 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponse.java index 6aa5f08967f6..1924e966833a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponseOrBuilder.java index cf8aa0b1a5f5..9d6ceb996232 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPlacementsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequest.java index efd311da8221..04261d588434 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequestOrBuilder.java index a7f1491685e9..d237d69028b7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponse.java index 62cf443069c4..0e7d30414837 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponseOrBuilder.java index 15d1c17d78bf..4f77f800f62f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionDealsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequest.java index ce4181c949fa..db9e8ce725f6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequestOrBuilder.java index d88cf494ab91..a91e11ecc697 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponse.java index 6707a00b2cfd..484bca325798 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponseOrBuilder.java index e1c9cb5d052a..54261832912e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListPrivateAuctionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequest.java index 3847a1012a95..95ec996f6207 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequestOrBuilder.java index 453e5acc461c..9a6ecc01e1c0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponse.java index 9204f5d68386..7ebb9b506f1f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponseOrBuilder.java index 19bd3dcc88fc..2e98de53d86f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListProgrammaticBuyersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequest.java index b5dc500ce02e..a9cd94d67c2b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequestOrBuilder.java index 124f6207a647..81a204289b79 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponse.java index f680ee062e3c..cb6b11aaa141 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponseOrBuilder.java index 898eef90c2b5..6a8dd5c7fe7d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListReportsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequest.java index 5e08750003fa..97c5337d28e2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequestOrBuilder.java index 6fe25f88bad0..8b282301512c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponse.java index c0fde4c928b3..cef26296c07d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponseOrBuilder.java index de441ba03008..5b5e3bcf3ba7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListRolesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequest.java index 9c4cff5ce9b1..10cdd76861d1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequestOrBuilder.java index b8cb9a57ffe9..fb1d163d0ffb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponse.java index bffd2e0022aa..b7a209568dca 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponseOrBuilder.java index d1f1e6286f27..777e3580440f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListSitesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequest.java index 1ae6a8663a83..3897dc400ce7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequestOrBuilder.java index f1c299189ccd..933316dca7a9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponse.java index 604a6faff4e2..3e5fc036d556 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponseOrBuilder.java index ecc1ecc8f03b..76027d4697f9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTaxonomyCategoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequest.java index f97d51042e71..c11b43287691 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequestOrBuilder.java index 9e9404728a63..547f38949a9e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponse.java index cf8a9c8c7da5..26fbb3ad4d0d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponseOrBuilder.java index e00595e1f443..86d780ab5020 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ListTeamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEvent.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEvent.java index 7f0c6aabec9e..2019ddd17cb9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEvent.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventMessagesProto.java index d6360781cdbd..51feee8cb830 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventName.java index df4d2979d24a..db0369033918 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventOrBuilder.java index bd2cbb0164db..b31bc6972f98 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/LiveStreamEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargeting.java index c82b3f216f1a..5c850c3e3d99 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargetingOrBuilder.java index 76fcc18b9ff2..ff169e9be798 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileApplicationTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrier.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrier.java index ab0576afc2d3..5d0a02c6170e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrier.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrier.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierMessagesProto.java index 18d680c57aff..75d4fdef44a9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierName.java index 046b05aed8e2..326a13b2e559 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierOrBuilder.java index 85f74e09fdb1..1ff9d91bad67 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceProto.java index 4c86b652f8b4..ce0ff3066574 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargeting.java index 7cff16fab6e3..348876b1f1eb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargetingOrBuilder.java index 2c54b3d81c4e..daa936f79cf7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileCarrierTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDevice.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDevice.java index e7be96f057d5..dd801ac2d084 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDevice.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceMessagesProto.java index 245467f8024f..813333306d96 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceName.java index 50d1ebdae153..e4464987b9c9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceOrBuilder.java index dcf051171467..4f8e9c862900 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceProto.java index 4ef34709f305..676edebe0b3b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodel.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodel.java index 5a189df1a122..cbabc94e7cd1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodel.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelMessagesProto.java index ce8ee8d6a5fa..3fedd6f42116 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelName.java index 56f7ac73df10..363307c88ff3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelOrBuilder.java index 9040533ad541..bb493a659411 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceProto.java index 7445971f2b95..ebb471d1b073 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/MobileDeviceSubmodelServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Network.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Network.java index 3d19440ac7e1..ef40c3dfa1a4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Network.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Network.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -71,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { com.google.ads.admanager.v1.Network.Builder.class); } + private int bitField0_; public static final int NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") @@ -138,7 +139,23 @@ public com.google.protobuf.ByteString getNameBytes() { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the displayName field is set. + */ + @java.lang.Override + public boolean hasDisplayName() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Optional. Display name for Network.
+   * 
+ * + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The displayName. */ @@ -162,7 +179,7 @@ public java.lang.String getDisplayName() { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for displayName. */ @@ -191,7 +208,23 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the networkCode field is set. + */ + @java.lang.Override + public boolean hasNetworkCode() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * Output only. Network Code.
+   * 
+ * + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The networkCode. */ @@ -215,7 +248,7 @@ public java.lang.String getNetworkCode() { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for networkCode. */ @@ -244,7 +277,23 @@ public com.google.protobuf.ByteString getNetworkCodeBytes() { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the propertyCode field is set. + */ + @java.lang.Override + public boolean hasPropertyCode() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+   * Output only. Property code.
+   * 
+ * + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The propertyCode. */ @@ -268,7 +317,7 @@ public java.lang.String getPropertyCode() { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for propertyCode. */ @@ -298,7 +347,24 @@ public com.google.protobuf.ByteString getPropertyCodeBytes() { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the timeZone field is set. + */ + @java.lang.Override + public boolean hasTimeZone() { + return ((bitField0_ & 0x00000008) != 0); + } + + /** + * + * + *
+   * Output only. Time zone associated with the delivery of orders and
+   * reporting.
+   * 
+ * + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The timeZone. */ @@ -323,7 +389,7 @@ public java.lang.String getTimeZone() { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for timeZone. */ @@ -352,7 +418,23 @@ public com.google.protobuf.ByteString getTimeZoneBytes() { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the currencyCode field is set. + */ + @java.lang.Override + public boolean hasCurrencyCode() { + return ((bitField0_ & 0x00000010) != 0); + } + + /** + * + * + *
+   * Output only. Primary currency code, in ISO-4217 format.
+   * 
+ * + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The currencyCode. */ @@ -376,7 +458,7 @@ public java.lang.String getCurrencyCode() { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for currencyCode. */ @@ -484,7 +566,27 @@ public com.google.protobuf.ByteString getSecondaryCurrencyCodesBytes(int index) * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return Whether the effectiveRootAdUnit field is set. + */ + @java.lang.Override + public boolean hasEffectiveRootAdUnit() { + return ((bitField0_ & 0x00000020) != 0); + } + + /** + * + * + *
+   * Output only. Top most [Ad Unit](google.ads.admanager.v1.AdUnit) to which
+   * descendant Ad Units can be added.
+   * Format: networks/{network_code}/adUnits/{ad_unit}
+   * 
+ * + * + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return The effectiveRootAdUnit. @@ -512,7 +614,7 @@ public java.lang.String getEffectiveRootAdUnit() { * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return The bytes for effectiveRootAdUnit. @@ -540,7 +642,23 @@ public com.google.protobuf.ByteString getEffectiveRootAdUnitBytes() { * Output only. Whether this is a test network. * * - * bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the testNetwork field is set. + */ + @java.lang.Override + public boolean hasTestNetwork() { + return ((bitField0_ & 0x00000040) != 0); + } + + /** + * + * + *
+   * Output only. Whether this is a test network.
+   * 
+ * + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The testNetwork. */ @@ -559,7 +677,23 @@ public boolean getTestNetwork() { * Output only. Network ID. * * - * int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the networkId field is set. + */ + @java.lang.Override + public boolean hasNetworkId() { + return ((bitField0_ & 0x00000080) != 0); + } + + /** + * + * + *
+   * Output only. Network ID.
+   * 
+ * + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The networkId. */ @@ -585,32 +719,32 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(displayName_)) { + if (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, displayName_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(networkCode_)) { + if (((bitField0_ & 0x00000002) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, networkCode_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(propertyCode_)) { + if (((bitField0_ & 0x00000004) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, propertyCode_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(timeZone_)) { + if (((bitField0_ & 0x00000008) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, timeZone_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(currencyCode_)) { + if (((bitField0_ & 0x00000010) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, currencyCode_); } for (int i = 0; i < secondaryCurrencyCodes_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString( output, 7, secondaryCurrencyCodes_.getRaw(i)); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(effectiveRootAdUnit_)) { + if (((bitField0_ & 0x00000020) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 8, effectiveRootAdUnit_); } - if (testNetwork_ != false) { + if (((bitField0_ & 0x00000040) != 0)) { output.writeBool(10, testNetwork_); } - if (networkId_ != 0L) { + if (((bitField0_ & 0x00000080) != 0)) { output.writeInt64(11, networkId_); } getUnknownFields().writeTo(output); @@ -625,19 +759,19 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(displayName_)) { + if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, displayName_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(networkCode_)) { + if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, networkCode_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(propertyCode_)) { + if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, propertyCode_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(timeZone_)) { + if (((bitField0_ & 0x00000008) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, timeZone_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(currencyCode_)) { + if (((bitField0_ & 0x00000010) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, currencyCode_); } { @@ -648,13 +782,13 @@ public int getSerializedSize() { size += dataSize; size += 1 * getSecondaryCurrencyCodesList().size(); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(effectiveRootAdUnit_)) { + if (((bitField0_ & 0x00000020) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, effectiveRootAdUnit_); } - if (testNetwork_ != false) { + if (((bitField0_ & 0x00000040) != 0)) { size += com.google.protobuf.CodedOutputStream.computeBoolSize(10, testNetwork_); } - if (networkId_ != 0L) { + if (((bitField0_ & 0x00000080) != 0)) { size += com.google.protobuf.CodedOutputStream.computeInt64Size(11, networkId_); } size += getUnknownFields().getSerializedSize(); @@ -673,16 +807,40 @@ public boolean equals(final java.lang.Object obj) { com.google.ads.admanager.v1.Network other = (com.google.ads.admanager.v1.Network) obj; if (!getName().equals(other.getName())) return false; - if (!getDisplayName().equals(other.getDisplayName())) return false; - if (!getNetworkCode().equals(other.getNetworkCode())) return false; - if (!getPropertyCode().equals(other.getPropertyCode())) return false; - if (!getTimeZone().equals(other.getTimeZone())) return false; - if (!getCurrencyCode().equals(other.getCurrencyCode())) return false; + if (hasDisplayName() != other.hasDisplayName()) return false; + if (hasDisplayName()) { + if (!getDisplayName().equals(other.getDisplayName())) return false; + } + if (hasNetworkCode() != other.hasNetworkCode()) return false; + if (hasNetworkCode()) { + if (!getNetworkCode().equals(other.getNetworkCode())) return false; + } + if (hasPropertyCode() != other.hasPropertyCode()) return false; + if (hasPropertyCode()) { + if (!getPropertyCode().equals(other.getPropertyCode())) return false; + } + if (hasTimeZone() != other.hasTimeZone()) return false; + if (hasTimeZone()) { + if (!getTimeZone().equals(other.getTimeZone())) return false; + } + if (hasCurrencyCode() != other.hasCurrencyCode()) return false; + if (hasCurrencyCode()) { + if (!getCurrencyCode().equals(other.getCurrencyCode())) return false; + } if (!getSecondaryCurrencyCodesList().equals(other.getSecondaryCurrencyCodesList())) return false; - if (!getEffectiveRootAdUnit().equals(other.getEffectiveRootAdUnit())) return false; - if (getTestNetwork() != other.getTestNetwork()) return false; - if (getNetworkId() != other.getNetworkId()) return false; + if (hasEffectiveRootAdUnit() != other.hasEffectiveRootAdUnit()) return false; + if (hasEffectiveRootAdUnit()) { + if (!getEffectiveRootAdUnit().equals(other.getEffectiveRootAdUnit())) return false; + } + if (hasTestNetwork() != other.hasTestNetwork()) return false; + if (hasTestNetwork()) { + if (getTestNetwork() != other.getTestNetwork()) return false; + } + if (hasNetworkId() != other.hasNetworkId()) return false; + if (hasNetworkId()) { + if (getNetworkId() != other.getNetworkId()) return false; + } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -696,26 +854,42 @@ public int hashCode() { hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); - hash = (37 * hash) + DISPLAY_NAME_FIELD_NUMBER; - hash = (53 * hash) + getDisplayName().hashCode(); - hash = (37 * hash) + NETWORK_CODE_FIELD_NUMBER; - hash = (53 * hash) + getNetworkCode().hashCode(); - hash = (37 * hash) + PROPERTY_CODE_FIELD_NUMBER; - hash = (53 * hash) + getPropertyCode().hashCode(); - hash = (37 * hash) + TIME_ZONE_FIELD_NUMBER; - hash = (53 * hash) + getTimeZone().hashCode(); - hash = (37 * hash) + CURRENCY_CODE_FIELD_NUMBER; - hash = (53 * hash) + getCurrencyCode().hashCode(); + if (hasDisplayName()) { + hash = (37 * hash) + DISPLAY_NAME_FIELD_NUMBER; + hash = (53 * hash) + getDisplayName().hashCode(); + } + if (hasNetworkCode()) { + hash = (37 * hash) + NETWORK_CODE_FIELD_NUMBER; + hash = (53 * hash) + getNetworkCode().hashCode(); + } + if (hasPropertyCode()) { + hash = (37 * hash) + PROPERTY_CODE_FIELD_NUMBER; + hash = (53 * hash) + getPropertyCode().hashCode(); + } + if (hasTimeZone()) { + hash = (37 * hash) + TIME_ZONE_FIELD_NUMBER; + hash = (53 * hash) + getTimeZone().hashCode(); + } + if (hasCurrencyCode()) { + hash = (37 * hash) + CURRENCY_CODE_FIELD_NUMBER; + hash = (53 * hash) + getCurrencyCode().hashCode(); + } if (getSecondaryCurrencyCodesCount() > 0) { hash = (37 * hash) + SECONDARY_CURRENCY_CODES_FIELD_NUMBER; hash = (53 * hash) + getSecondaryCurrencyCodesList().hashCode(); } - hash = (37 * hash) + EFFECTIVE_ROOT_AD_UNIT_FIELD_NUMBER; - hash = (53 * hash) + getEffectiveRootAdUnit().hashCode(); - hash = (37 * hash) + TEST_NETWORK_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getTestNetwork()); - hash = (37 * hash) + NETWORK_ID_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getNetworkId()); + if (hasEffectiveRootAdUnit()) { + hash = (37 * hash) + EFFECTIVE_ROOT_AD_UNIT_FIELD_NUMBER; + hash = (53 * hash) + getEffectiveRootAdUnit().hashCode(); + } + if (hasTestNetwork()) { + hash = (37 * hash) + TEST_NETWORK_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getTestNetwork()); + } + if (hasNetworkId()) { + hash = (37 * hash) + NETWORK_ID_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getNetworkId()); + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -903,20 +1077,26 @@ private void buildPartial0(com.google.ads.admanager.v1.Network result) { if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; } + int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000002) != 0)) { result.displayName_ = displayName_; + to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000004) != 0)) { result.networkCode_ = networkCode_; + to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000008) != 0)) { result.propertyCode_ = propertyCode_; + to_bitField0_ |= 0x00000004; } if (((from_bitField0_ & 0x00000010) != 0)) { result.timeZone_ = timeZone_; + to_bitField0_ |= 0x00000008; } if (((from_bitField0_ & 0x00000020) != 0)) { result.currencyCode_ = currencyCode_; + to_bitField0_ |= 0x00000010; } if (((from_bitField0_ & 0x00000040) != 0)) { secondaryCurrencyCodes_.makeImmutable(); @@ -924,13 +1104,17 @@ private void buildPartial0(com.google.ads.admanager.v1.Network result) { } if (((from_bitField0_ & 0x00000080) != 0)) { result.effectiveRootAdUnit_ = effectiveRootAdUnit_; + to_bitField0_ |= 0x00000020; } if (((from_bitField0_ & 0x00000100) != 0)) { result.testNetwork_ = testNetwork_; + to_bitField0_ |= 0x00000040; } if (((from_bitField0_ & 0x00000200) != 0)) { result.networkId_ = networkId_; + to_bitField0_ |= 0x00000080; } + result.bitField0_ |= to_bitField0_; } @java.lang.Override @@ -983,27 +1167,27 @@ public Builder mergeFrom(com.google.ads.admanager.v1.Network other) { bitField0_ |= 0x00000001; onChanged(); } - if (!other.getDisplayName().isEmpty()) { + if (other.hasDisplayName()) { displayName_ = other.displayName_; bitField0_ |= 0x00000002; onChanged(); } - if (!other.getNetworkCode().isEmpty()) { + if (other.hasNetworkCode()) { networkCode_ = other.networkCode_; bitField0_ |= 0x00000004; onChanged(); } - if (!other.getPropertyCode().isEmpty()) { + if (other.hasPropertyCode()) { propertyCode_ = other.propertyCode_; bitField0_ |= 0x00000008; onChanged(); } - if (!other.getTimeZone().isEmpty()) { + if (other.hasTimeZone()) { timeZone_ = other.timeZone_; bitField0_ |= 0x00000010; onChanged(); } - if (!other.getCurrencyCode().isEmpty()) { + if (other.hasCurrencyCode()) { currencyCode_ = other.currencyCode_; bitField0_ |= 0x00000020; onChanged(); @@ -1018,15 +1202,15 @@ public Builder mergeFrom(com.google.ads.admanager.v1.Network other) { } onChanged(); } - if (!other.getEffectiveRootAdUnit().isEmpty()) { + if (other.hasEffectiveRootAdUnit()) { effectiveRootAdUnit_ = other.effectiveRootAdUnit_; bitField0_ |= 0x00000080; onChanged(); } - if (other.getTestNetwork() != false) { + if (other.hasTestNetwork()) { setTestNetwork(other.getTestNetwork()); } - if (other.getNetworkId() != 0L) { + if (other.hasNetworkId()) { setNetworkId(other.getNetworkId()); } this.mergeUnknownFields(other.getUnknownFields()); @@ -1260,7 +1444,22 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the displayName field is set. + */ + public boolean hasDisplayName() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Optional. Display name for Network.
+     * 
+ * + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The displayName. */ @@ -1283,7 +1482,7 @@ public java.lang.String getDisplayName() { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for displayName. */ @@ -1306,7 +1505,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The displayName to set. * @return This builder for chaining. @@ -1328,7 +1527,7 @@ public Builder setDisplayName(java.lang.String value) { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return This builder for chaining. */ @@ -1346,7 +1545,7 @@ public Builder clearDisplayName() { * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The bytes for displayName to set. * @return This builder for chaining. @@ -1371,7 +1570,22 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the networkCode field is set. + */ + public boolean hasNetworkCode() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+     * Output only. Network Code.
+     * 
+ * + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The networkCode. */ @@ -1394,7 +1608,7 @@ public java.lang.String getNetworkCode() { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for networkCode. */ @@ -1417,7 +1631,7 @@ public com.google.protobuf.ByteString getNetworkCodeBytes() { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The networkCode to set. * @return This builder for chaining. @@ -1439,7 +1653,7 @@ public Builder setNetworkCode(java.lang.String value) { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ @@ -1457,7 +1671,7 @@ public Builder clearNetworkCode() { * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for networkCode to set. * @return This builder for chaining. @@ -1482,7 +1696,22 @@ public Builder setNetworkCodeBytes(com.google.protobuf.ByteString value) { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the propertyCode field is set. + */ + public boolean hasPropertyCode() { + return ((bitField0_ & 0x00000008) != 0); + } + + /** + * + * + *
+     * Output only. Property code.
+     * 
+ * + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The propertyCode. */ @@ -1505,7 +1734,7 @@ public java.lang.String getPropertyCode() { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for propertyCode. */ @@ -1528,7 +1757,7 @@ public com.google.protobuf.ByteString getPropertyCodeBytes() { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The propertyCode to set. * @return This builder for chaining. @@ -1550,7 +1779,7 @@ public Builder setPropertyCode(java.lang.String value) { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ @@ -1568,7 +1797,7 @@ public Builder clearPropertyCode() { * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for propertyCode to set. * @return This builder for chaining. @@ -1594,7 +1823,23 @@ public Builder setPropertyCodeBytes(com.google.protobuf.ByteString value) { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the timeZone field is set. + */ + public boolean hasTimeZone() { + return ((bitField0_ & 0x00000010) != 0); + } + + /** + * + * + *
+     * Output only. Time zone associated with the delivery of orders and
+     * reporting.
+     * 
+ * + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The timeZone. */ @@ -1618,7 +1863,7 @@ public java.lang.String getTimeZone() { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for timeZone. */ @@ -1642,7 +1887,7 @@ public com.google.protobuf.ByteString getTimeZoneBytes() { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The timeZone to set. * @return This builder for chaining. @@ -1665,7 +1910,7 @@ public Builder setTimeZone(java.lang.String value) { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ @@ -1684,7 +1929,7 @@ public Builder clearTimeZone() { * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for timeZone to set. * @return This builder for chaining. @@ -1709,7 +1954,22 @@ public Builder setTimeZoneBytes(com.google.protobuf.ByteString value) { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the currencyCode field is set. + */ + public boolean hasCurrencyCode() { + return ((bitField0_ & 0x00000020) != 0); + } + + /** + * + * + *
+     * Output only. Primary currency code, in ISO-4217 format.
+     * 
+ * + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The currencyCode. */ @@ -1732,7 +1992,7 @@ public java.lang.String getCurrencyCode() { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for currencyCode. */ @@ -1755,7 +2015,7 @@ public com.google.protobuf.ByteString getCurrencyCodeBytes() { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The currencyCode to set. * @return This builder for chaining. @@ -1777,7 +2037,7 @@ public Builder setCurrencyCode(java.lang.String value) { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ @@ -1795,7 +2055,7 @@ public Builder clearCurrencyCode() { * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for currencyCode to set. * @return This builder for chaining. @@ -2025,7 +2285,26 @@ public Builder addSecondaryCurrencyCodesBytes(com.google.protobuf.ByteString val * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return Whether the effectiveRootAdUnit field is set. + */ + public boolean hasEffectiveRootAdUnit() { + return ((bitField0_ & 0x00000080) != 0); + } + + /** + * + * + *
+     * Output only. Top most [Ad Unit](google.ads.admanager.v1.AdUnit) to which
+     * descendant Ad Units can be added.
+     * Format: networks/{network_code}/adUnits/{ad_unit}
+     * 
+ * + * + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return The effectiveRootAdUnit. @@ -2052,7 +2331,7 @@ public java.lang.String getEffectiveRootAdUnit() { * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return The bytes for effectiveRootAdUnit. @@ -2079,7 +2358,7 @@ public com.google.protobuf.ByteString getEffectiveRootAdUnitBytes() { * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @param value The effectiveRootAdUnit to set. @@ -2105,7 +2384,7 @@ public Builder setEffectiveRootAdUnit(java.lang.String value) { * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return This builder for chaining. @@ -2127,7 +2406,7 @@ public Builder clearEffectiveRootAdUnit() { * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @param value The bytes for effectiveRootAdUnit to set. @@ -2153,7 +2432,23 @@ public Builder setEffectiveRootAdUnitBytes(com.google.protobuf.ByteString value) * Output only. Whether this is a test network. * * - * bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the testNetwork field is set. + */ + @java.lang.Override + public boolean hasTestNetwork() { + return ((bitField0_ & 0x00000100) != 0); + } + + /** + * + * + *
+     * Output only. Whether this is a test network.
+     * 
+ * + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The testNetwork. */ @@ -2169,7 +2464,7 @@ public boolean getTestNetwork() { * Output only. Whether this is a test network. * * - * bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The testNetwork to set. * @return This builder for chaining. @@ -2189,7 +2484,7 @@ public Builder setTestNetwork(boolean value) { * Output only. Whether this is a test network. * * - * bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ @@ -2209,7 +2504,23 @@ public Builder clearTestNetwork() { * Output only. Network ID. * * - * int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the networkId field is set. + */ + @java.lang.Override + public boolean hasNetworkId() { + return ((bitField0_ & 0x00000200) != 0); + } + + /** + * + * + *
+     * Output only. Network ID.
+     * 
+ * + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The networkId. */ @@ -2225,7 +2536,7 @@ public long getNetworkId() { * Output only. Network ID. * * - * int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The networkId to set. * @return This builder for chaining. @@ -2245,7 +2556,7 @@ public Builder setNetworkId(long value) { * Output only. Network ID. * * - * int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkMessagesProto.java index f3a5708b36e3..804226eb1588 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,28 +44,35 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "\n" + ".google/ads/admanager/v1/network_messag" + "es.proto\022\027google.ads.admanager.v1\032\037googl" - + "e/api/field_behavior.proto\032\031google/api/resource.proto\"\231\003\n" + + "e/api/field_behavior.proto\032\031google/api/resource.proto\"\320\004\n" + "\007Network\022\021\n" - + "\004name\030\001 \001(\tB\003\340A\010\022\031\n" - + "\014display_name\030\002 \001(\tB\003\340A\001\022\031\n" - + "\014network_code\030\003 \001(\tB\003\340A\003\022\032\n\r" - + "property_code\030\004 \001(\tB\003\340A\003\022\026\n" - + "\ttime_zone\030\005 \001(\tB\003\340A\003\022\032\n\r" - + "currency_code\030\006 \001(\tB\003\340A\003\022%\n" - + "\030secondary_currency_codes\030\007 \003(\tB\003\340A\001\022G\n" + + "\004name\030\001 \001(\tB\003\340A\010\022\036\n" + + "\014display_name\030\002 \001(\tB\003\340A\001H\000\210\001\001\022\036\n" + + "\014network_code\030\003 \001(\tB\003\340A\003H\001\210\001\001\022\037\n\r" + + "property_code\030\004 \001(\tB\003\340A\003H\002\210\001\001\022\033\n" + + "\ttime_zone\030\005 \001(\tB\003\340A\003H\003\210\001\001\022\037\n\r" + + "currency_code\030\006 \001(\tB\003\340A\003H\004\210\001\001\022%\n" + + "\030secondary_currency_codes\030\007 \003(\tB\003\340A\001\022L\n" + "\026effective_root_ad_unit\030\010 \001(\tB\'\340A\003\372A!\n" - + "\037admanager.googleapis.com/AdUnit\022\031\n" + + "\037admanager.googleapis.com/AdUnitH\005\210\001\001\022\036\n" + "\014test_network\030\n" - + " \001(\010B\003\340A\003\022\027\n" - + "\n" - + "network_id\030\013 \001(\003B\003\340A\003:Q\352AN\n" + + " \001(\010B\003\340A\003H\006\210\001\001\022\034\n\n" + + "network_id\030\013 \001(\003B\003\340A\003H\007\210\001\001:Q\352AN\n" + " admanager.g" - + "oogleapis.com/Network\022\027networks/{network_code}*\010networks2\007networkB\310\001\n" - + "\033com.google.ads.admanager.v1B\024NetworkMessagesProtoP" - + "\001Z@google.golang.org/genproto/googleapis" - + "/ads/admanager/v1;admanager\252\002\027Google.Ads" - + ".AdManager.V1\312\002\027Google\\Ads\\AdManager\\V1\352" - + "\002\032Google::Ads::AdManager::V1b\006proto3" + + "oogleapis.com/Network\022\027networks/{network_code}*\010networks2\007networkB\017\n\r" + + "_display_nameB\017\n\r" + + "_network_codeB\020\n" + + "\016_property_codeB\014\n" + + "\n" + + "_time_zoneB\020\n" + + "\016_currency_codeB\031\n" + + "\027_effective_root_ad_unitB\017\n\r" + + "_test_networkB\r\n" + + "\013_network_idB\310\001\n" + + "\033com.google.ads.admanager.v1B\024NetworkMessagesProtoP\001Z@google.golang." + + "org/genproto/googleapis/ads/admanager/v1" + + ";admanager\252\002\027Google.Ads.AdManager.V1\312\002\027G" + + "oogle\\Ads\\AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkName.java index c145feb6d2f8..f8d6f04da4ba 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkOrBuilder.java index 0117e79a25a9..c3e269e68846 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,7 +59,20 @@ public interface NetworkOrBuilder * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the displayName field is set. + */ + boolean hasDisplayName(); + + /** + * + * + *
+   * Optional. Display name for Network.
+   * 
+ * + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The displayName. */ @@ -72,7 +85,7 @@ public interface NetworkOrBuilder * Optional. Display name for Network. * * - * string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; + * optional string display_name = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for displayName. */ @@ -85,7 +98,20 @@ public interface NetworkOrBuilder * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the networkCode field is set. + */ + boolean hasNetworkCode(); + + /** + * + * + *
+   * Output only. Network Code.
+   * 
+ * + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The networkCode. */ @@ -98,7 +124,7 @@ public interface NetworkOrBuilder * Output only. Network Code. * * - * string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string network_code = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for networkCode. */ @@ -111,7 +137,20 @@ public interface NetworkOrBuilder * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the propertyCode field is set. + */ + boolean hasPropertyCode(); + + /** + * + * + *
+   * Output only. Property code.
+   * 
+ * + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The propertyCode. */ @@ -124,7 +163,7 @@ public interface NetworkOrBuilder * Output only. Property code. * * - * string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string property_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for propertyCode. */ @@ -138,7 +177,21 @@ public interface NetworkOrBuilder * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the timeZone field is set. + */ + boolean hasTimeZone(); + + /** + * + * + *
+   * Output only. Time zone associated with the delivery of orders and
+   * reporting.
+   * 
+ * + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The timeZone. */ @@ -152,7 +205,7 @@ public interface NetworkOrBuilder * reporting. * * - * string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string time_zone = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for timeZone. */ @@ -165,7 +218,20 @@ public interface NetworkOrBuilder * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the currencyCode field is set. + */ + boolean hasCurrencyCode(); + + /** + * + * + *
+   * Output only. Primary currency code, in ISO-4217 format.
+   * 
+ * + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The currencyCode. */ @@ -178,7 +244,7 @@ public interface NetworkOrBuilder * Output only. Primary currency code, in ISO-4217 format. * * - * string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional string currency_code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for currencyCode. */ @@ -256,7 +322,24 @@ public interface NetworkOrBuilder * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * + * + * @return Whether the effectiveRootAdUnit field is set. + */ + boolean hasEffectiveRootAdUnit(); + + /** + * + * + *
+   * Output only. Top most [Ad Unit](google.ads.admanager.v1.AdUnit) to which
+   * descendant Ad Units can be added.
+   * Format: networks/{network_code}/adUnits/{ad_unit}
+   * 
+ * + * + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return The effectiveRootAdUnit. @@ -273,7 +356,7 @@ public interface NetworkOrBuilder * * * - * string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * optional string effective_root_ad_unit = 8 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } * * * @return The bytes for effectiveRootAdUnit. @@ -287,7 +370,20 @@ public interface NetworkOrBuilder * Output only. Whether this is a test network. * * - * bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the testNetwork field is set. + */ + boolean hasTestNetwork(); + + /** + * + * + *
+   * Output only. Whether this is a test network.
+   * 
+ * + * optional bool test_network = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The testNetwork. */ @@ -300,7 +396,20 @@ public interface NetworkOrBuilder * Output only. Network ID. * * - * int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return Whether the networkId field is set. + */ + boolean hasNetworkId(); + + /** + * + * + *
+   * Output only. Network ID.
+   * 
+ * + * optional int64 network_id = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The networkId. */ diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkServiceProto.java index 53c120014d4e..7c2a587c8c6a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/NetworkServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,31 +49,35 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { static { java.lang.String[] descriptorData = { - "\n-google/ads/admanager/v1/network_servic" + "\n" + + "-google/ads/admanager/v1/network_servic" + "e.proto\022\027google.ads.admanager.v1\032.google" + "/ads/admanager/v1/network_messages.proto" + "\032\034google/api/annotations.proto\032\027google/a" - + "pi/client.proto\032\037google/api/field_behavi" - + "or.proto\032\031google/api/resource.proto\"K\n\021G" - + "etNetworkRequest\0226\n\004name\030\001 \001(\tB(\340A\002\372A\"\n " - + "admanager.googleapis.com/Network\"\025\n\023List" - + "NetworksRequest\"J\n\024ListNetworksResponse\022" - + "2\n\010networks\030\001 \003(\0132 .google.ads.admanager" - + ".v1.Network2\340\002\n\016NetworkService\022\200\001\n\nGetNe" - + "twork\022*.google.ads.admanager.v1.GetNetwo" - + "rkRequest\032 .google.ads.admanager.v1.Netw" - + "ork\"$\332A\004name\202\323\344\223\002\027\022\025/v1/{name=networks/*" - + "}\022\201\001\n\014ListNetworks\022,.google.ads.admanage" - + "r.v1.ListNetworksRequest\032-.google.ads.ad" - + "manager.v1.ListNetworksResponse\"\024\202\323\344\223\002\016\022" - + "\014/v1/networks\032G\312A\030admanager.googleapis.c" - + "om\322A)https://www.googleapis.com/auth/adm" - + "anagerB\307\001\n\033com.google.ads.admanager.v1B\023" - + "NetworkServiceProtoP\001Z@google.golang.org" - + "/genproto/googleapis/ads/admanager/v1;ad" - + "manager\252\002\027Google.Ads.AdManager.V1\312\002\027Goog" - + "le\\Ads\\AdManager\\V1\352\002\032Google::Ads::AdMan" - + "ager::V1b\006proto3" + + "pi/client.proto\032\037google/api/field_behavior.proto\032\031google/api/resource.proto\"K\n" + + "\021GetNetworkRequest\0226\n" + + "\004name\030\001 \001(\tB(\340A\002\372A\"\n" + + " admanager.googleapis.com/Network\"Y\n" + + "\023ListNetworksRequest\022\026\n" + + "\tpage_size\030\003 \001(\005B\003\340A\001\022\027\n\n" + + "page_token\030\004 \001(\tB\003\340A\001\022\021\n" + + "\004skip\030\005 \001(\005B\003\340A\001\"w\n" + + "\024ListNetworksResponse\0222\n" + + "\010networks\030\001 \003(\0132 .google.ads.admanager.v1.Network\022\027\n" + + "\017next_page_token\030\002 \001(\t\022\022\n\n" + + "total_size\030\003 \001(\0052\340\002\n" + + "\016NetworkService\022\200\001\n\n" + + "GetNetwork\022*.google.ads.admanager.v1.GetNetworkRequest\032" + + " .google.ads.admanager.v1.Network\"$\332A\004name\202\323\344\223\002\027\022\025/v1/{name=networks/*}\022\201\001\n" + + "\014ListNetworks\022,.google.ads.admanager.v1.Li" + + "stNetworksRequest\032-.google.ads.admanager" + + ".v1.ListNetworksResponse\"\024\202\323\344\223\002\016\022\014/v1/ne" + + "tworks\032G\312A\030admanager.googleapis.com\322A)ht" + + "tps://www.googleapis.com/auth/admanagerB\307\001\n" + + "\033com.google.ads.admanager.v1B\023NetworkServiceProtoP\001Z@google.golang.org/genpro" + + "to/googleapis/ads/admanager/v1;admanager" + + "\252\002\027Google.Ads.AdManager.V1\312\002\027Google\\Ads\\" + + "AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -98,14 +102,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { internal_static_google_ads_admanager_v1_ListNetworksRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_admanager_v1_ListNetworksRequest_descriptor, - new java.lang.String[] {}); + new java.lang.String[] { + "PageSize", "PageToken", "Skip", + }); internal_static_google_ads_admanager_v1_ListNetworksResponse_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_google_ads_admanager_v1_ListNetworksResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_admanager_v1_ListNetworksResponse_descriptor, new java.lang.String[] { - "Networks", + "Networks", "NextPageToken", "TotalSize", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystem.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystem.java index d90325de4c08..2e978b2463d1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystem.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemMessagesProto.java index d8e14b38bd19..82e33d8b9686 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemName.java index 0ee767732f4c..5249014a3117 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemOrBuilder.java index 2d73a251e29c..69f6342f6dec 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceProto.java index 8298f4dd9535..01cead772303 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargeting.java index ad178094eb29..4e086c857ef9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargetingOrBuilder.java index 4e9c611f00cd..0086241a7cad 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersion.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersion.java index 7d2d84ce326e..4eb28f0bd84e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersion.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionMessagesProto.java index 04409c7ce287..471bf5205c04 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionName.java index 6b71d6c7a157..f0efb768082b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionOrBuilder.java index c7263770ae08..a01970976321 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceProto.java index 349ffe920931..2ed34499f3b8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OperatingSystemVersionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Order.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Order.java index a7baec6734d8..4585cf8b9c7d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Order.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Order.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -370,12 +370,13 @@ public com.google.protobuf.ByteString getTraffickerBytes() { * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return A list containing the advertiserContacts. @@ -388,12 +389,13 @@ public com.google.protobuf.ProtocolStringList getAdvertiserContactsList() { * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return The count of advertiserContacts. @@ -406,12 +408,13 @@ public int getAdvertiserContactsCount() { * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index of the element to return. @@ -425,12 +428,13 @@ public java.lang.String getAdvertiserContacts(int index) { * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index of the value to return. @@ -3987,12 +3991,13 @@ private void ensureAdvertiserContactsIsMutable() { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return A list containing the advertiserContacts. @@ -4006,12 +4011,13 @@ public com.google.protobuf.ProtocolStringList getAdvertiserContactsList() { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return The count of advertiserContacts. @@ -4024,12 +4030,13 @@ public int getAdvertiserContactsCount() { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index of the element to return. @@ -4043,12 +4050,13 @@ public java.lang.String getAdvertiserContacts(int index) { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index of the value to return. @@ -4062,12 +4070,13 @@ public com.google.protobuf.ByteString getAdvertiserContactsBytes(int index) { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index to set the value at. @@ -4089,12 +4098,13 @@ public Builder setAdvertiserContacts(int index, java.lang.String value) { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param value The advertiserContacts to add. @@ -4115,12 +4125,13 @@ public Builder addAdvertiserContacts(java.lang.String value) { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param values The advertiserContacts to add. @@ -4138,12 +4149,13 @@ public Builder addAllAdvertiserContacts(java.lang.Iterable val * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return This builder for chaining. @@ -4160,12 +4172,13 @@ public Builder clearAdvertiserContacts() { * * *
-     * Optional. The resource names of Contacts from the advertiser of this Order.
-     * Format: "networks/{network_code}/contacts/{contact_id}"
+     * Optional. Unordered list. The resource names of Contacts from the
+     * advertiser of this Order. Format:
+     * "networks/{network_code}/contacts/{contact_id}"
      * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param value The bytes of the advertiserContacts to add. diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderEnumsProto.java index f10281a95d77..e439ee60eb44 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderMessagesProto.java index fb0cc7aac4af..dcb1b9796724 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -47,15 +47,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "ads/admanager/v1/applied_label.proto\0320google/ads/admanager/v1/custom_field_value" + ".proto\032)google/ads/admanager/v1/order_en" + "ums.proto\032\037google/api/field_behavior.pro" - + "to\032\031google/api/resource.proto\032\037google/protobuf/timestamp.proto\"\226\017\n" + + "to\032\031google/api/resource.proto\032\037google/protobuf/timestamp.proto\"\231\017\n" + "\005Order\022\021\n" + "\004name\030\001 \001(\tB\003\340A\010\022\032\n" + "\010order_id\030\004 \001(\003B\003\340A\003H\000\210\001\001\022\036\n" + "\014display_name\030\002 \001(\tB\003\340A\002H\001\210\001\001\022\036\n" + "\014programmatic\030\003 \001(\010B\003\340A\001H\002\210\001\001\022>\n\n" + "trafficker\030\027 \001(\tB%\340A\002\372A\037\n" - + "\035admanager.googleapis.com/UserH\003\210\001\001\022E\n" - + "\023advertiser_contacts\030\005 \003(\tB(\340A\001\372A\"\n" + + "\035admanager.googleapis.com/UserH\003\210\001\001\022H\n" + + "\023advertiser_contacts\030\005 \003(\tB+\340A\001\340A\006\372A\"\n" + " admanager.googleapis.com/Contact\022A\n\n" + "advertiser\030\006 \001(\tB(\340A\002\372A\"\n" + " admanager.googleapis.com/CompanyH\004\210\001\001\022A\n" @@ -86,8 +86,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003H\016\210\001\001\022\027\n" + "\005notes\030\021 \001(\tB\003\340A\001H\017\210\001\001\022\033\n" + "\tpo_number\030\022 \001(\tB\003\340A\001H\020\210\001\001\022N\n" - + "\006status\030\024 \001(" - + "\01624.google.ads.admanager.v1.OrderStatusEnum.OrderStatusB\003\340A\003H\021\210\001\001\022?\n" + + "\006status\030\024" + + " \001(\01624.google.ads.admanager.v1.OrderStatusEnum.OrderStatusB\003\340A\003H\021\210\001\001\022?\n" + "\013salesperson\030\025 \001(\tB%\340A\001\372A\037\n" + "\035admanager.googleapis.com/UserH\022\210\001\001\022G\n" + "\025secondary_salespeople\030\026 \003(\tB(\340A\001\340A\006\372A\037\n" @@ -100,12 +100,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + " \003(\0132%.google.ads.admanager.v1.AppliedLabelB\003\340A\003\022K\n" + "\023custom_field_values\030&" + " \003(\0132).google.ads.admanager.v1.CustomFieldValueB\003\340A\001:Z\352AW\n" - + "\036admanager.goog" - + "leapis.com/Order\022&networks/{network_code}/orders/{order}*\006orders2\005orderB\013\n" + + "\036admanager.g" + + "oogleapis.com/Order\022&networks/{network_code}/orders/{order}*\006orders2\005orderB\013\n" + "\t_order_idB\017\n\r" + "_display_nameB\017\n\r" - + "_programmaticB\r" - + "\n" + + "_programmaticB\r\n" + "\013_traffickerB\r\n" + "\013_advertiserB\t\n" + "\007_agencyB\n\n" @@ -122,10 +121,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "_po_numberB\t\n" + "\007_statusB\016\n" + "\014_salespersonB\306\001\n" - + "\033com.google.ads.admanager.v1B\022OrderMessagesProtoP\001Z@google.golang.org" - + "/genproto/googleapis/ads/admanager/v1;ad" - + "manager\252\002\027Google.Ads.AdManager.V1\312\002\027Goog" - + "le\\Ads\\AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" + + "\033com.google.ads.admanager.v1B\022OrderMessagesProtoP\001Z@google.golang." + + "org/genproto/googleapis/ads/admanager/v1" + + ";admanager\252\002\027Google.Ads.AdManager.V1\312\002\027G" + + "oogle\\Ads\\AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderName.java index adf353fe0dc8..190ea810b327 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderOrBuilder.java index e2305ac5e6eb..7236b6cab841 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -198,12 +198,13 @@ public interface OrderOrBuilder * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return A list containing the advertiserContacts. @@ -214,12 +215,13 @@ public interface OrderOrBuilder * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @return The count of advertiserContacts. @@ -230,12 +232,13 @@ public interface OrderOrBuilder * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index of the element to return. @@ -247,12 +250,13 @@ public interface OrderOrBuilder * * *
-   * Optional. The resource names of Contacts from the advertiser of this Order.
-   * Format: "networks/{network_code}/contacts/{contact_id}"
+   * Optional. Unordered list. The resource names of Contacts from the
+   * advertiser of this Order. Format:
+   * "networks/{network_code}/contacts/{contact_id}"
    * 
* * - * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... } + * repeated string advertiser_contacts = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = UNORDERED_LIST, (.google.api.resource_reference) = { ... } * * * @param index The index of the value to return. diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderServiceProto.java index a60001045296..01e948f0ce85 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnum.java index f4b1d1443cc3..803f3ebbd0c2 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnumOrBuilder.java index f0e12d43483b..987dad4decfa 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/OrderStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Placement.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Placement.java index 9868e883a6ca..044d4f6de1a9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Placement.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Placement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementEnumsProto.java index af8e84a9d110..adab42bf414f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementMessagesProto.java index 007d02adaedf..1fa03e48ad27 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementName.java index d1880f096106..2379b3eb9aa5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementOrBuilder.java index e64844ab3b33..6d0e6f8bccf3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementServiceProto.java index 9a1f30cde93e..c1679769eb93 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnum.java index f4552f56b073..6d5cfa5ab181 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnumOrBuilder.java index 1659cdf6dda4..970508f9be5f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PlacementStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuction.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuction.java index 801421c40807..2357982376af 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuction.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDeal.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDeal.java index 1b15f460fef6..90e22515fa6c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDeal.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealMessagesProto.java index 45bd9d2088d3..043afdda8d27 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealName.java index 9ca4f66370b8..268a6ddcffba 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealOrBuilder.java index eff0ba5ff726..9c7654fd723c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceProto.java index a802ad5ebdb8..f23f594904e3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionDealServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionMessagesProto.java index 425524a0b0ed..2f364a14a3fc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionName.java index 46b8ef20621d..aeb5ef2ec99a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionOrBuilder.java index 4f14c25b79c6..78490e1aa4f5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceProto.java index 1e10ca3c437d..f0bcd46e0fd3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateAuctionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnum.java index 85879ff57b40..fc5586961cbe 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnumOrBuilder.java index ef121473af9e..ec56b3666a6b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceDealStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceEnumsProto.java index f651848489b1..5cd0531a65bf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/PrivateMarketplaceEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyer.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyer.java index 945450ed42a9..f8d05ff4edaf 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyer.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerMessagesProto.java index ae9e6436e4aa..1130cd9e8e24 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerName.java index 12a7af6d2468..b8f746b3dc63 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerOrBuilder.java index f16924a74b0c..c64f7bd329c8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceProto.java index 47343f8a247d..2c8b8b093798 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ProgrammaticBuyerServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Report.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Report.java index b375f7517e9e..264b41d5e199 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Report.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Report.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,15 +104,27 @@ public enum Visibility implements com.google.protobuf.ProtocolMessageEnum { * *
      * Reports with saved visibility will appear in the Ad Manager UI by
-     * default.
+     * default. Alias for VISIBLE and will be replaced in the future.
      * 
* - * SAVED = 2; + * SAVED = 2 [deprecated = true]; */ + @java.lang.Deprecated SAVED(2), UNRECOGNIZED(-1), ; + /** + * + * + *
+     * Reports with this visibility will appear in the Ad Manager UI.
+     * 
+ * + * VISIBLE = 2; + */ + public static final Visibility VISIBLE = SAVED; + /** * * @@ -142,12 +154,23 @@ public enum Visibility implements com.google.protobuf.ProtocolMessageEnum { * *
      * Reports with saved visibility will appear in the Ad Manager UI by
-     * default.
+     * default. Alias for VISIBLE and will be replaced in the future.
+     * 
+ * + * SAVED = 2 [deprecated = true]; + */ + @java.lang.Deprecated public static final int SAVED_VALUE = 2; + + /** + * + * + *
+     * Reports with this visibility will appear in the Ad Manager UI.
      * 
* - * SAVED = 2; + * VISIBLE = 2; */ - public static final int SAVED_VALUE = 2; + public static final int VISIBLE_VALUE = 2; public final int getNumber() { if (this == UNRECOGNIZED) { @@ -211,7 +234,13 @@ public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor return com.google.ads.admanager.v1.Report.getDescriptor().getEnumTypes().get(0); } - private static final Visibility[] VALUES = values(); + private static final Visibility[] VALUES = getStaticValuesArray(); + + private static Visibility[] getStaticValuesArray() { + return new Visibility[] { + HIDDEN, DRAFT, SAVED, VISIBLE, + }; + } public static Visibility valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTable.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTable.java index f8f9658095cd..df3af7a932da 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTable.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTableOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTableOrBuilder.java index 75adcc291aad..56ce0df44a3b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTableOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDataTableOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinition.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinition.java index f77187cae8ee..ddd18e253fd6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinition.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -127,6 +127,26 @@ public enum ReportType implements com.google.protobuf.ProtocolMessageEnum { * PRIVACY_AND_MESSAGING = 6; */ PRIVACY_AND_MESSAGING(6), + /** + * + * + *
+     * Gross revenue.
+     * 
+ * + * REVENUE_VERIFICATION = 7; + */ + REVENUE_VERIFICATION(7), + /** + * + * + *
+     * Partner finance.
+     * 
+ * + * PARTNER_FINANCE = 8; + */ + PARTNER_FINANCE(8), /** * * @@ -184,6 +204,28 @@ public enum ReportType implements com.google.protobuf.ProtocolMessageEnum { */ public static final int PRIVACY_AND_MESSAGING_VALUE = 6; + /** + * + * + *
+     * Gross revenue.
+     * 
+ * + * REVENUE_VERIFICATION = 7; + */ + public static final int REVENUE_VERIFICATION_VALUE = 7; + + /** + * + * + *
+     * Partner finance.
+     * 
+ * + * PARTNER_FINANCE = 8; + */ + public static final int PARTNER_FINANCE_VALUE = 8; + /** * * @@ -227,6 +269,10 @@ public static ReportType forNumber(int value) { return REACH; case 6: return PRIVACY_AND_MESSAGING; + case 7: + return REVENUE_VERIFICATION; + case 8: + return PARTNER_FINANCE; case 13: return AD_SPEED; default: @@ -363,7 +409,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * Advertiser credit status locallized name
+     * Advertiser credit status localized name
      *
      *
      *
@@ -531,7 +577,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Advertiser status locallized name
+     * Advertiser status localized name
      *
      *
      *
@@ -569,7 +615,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Advertiser type locallized name
+     * Advertiser type localized name
      *
      *
      *
@@ -614,7 +660,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      * Corresponds to "Ad Exchange product value" in the Ad Manager UI (when
      * showing API fields).
      *
-     * Compatible with the following report types: `HISTORICAL`
+     * Compatible with the following report types: `HISTORICAL`,
+     * `REVENUE_VERIFICATION`
      *
      * Data format: `ENUM`
      * 
@@ -633,7 +680,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Ad Exchange product" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
@@ -717,6 +765,24 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * AD_LOCATION_NAME = 391; */ AD_LOCATION_NAME(22, 391), + /** + * + * + *
+     * Multi-size inventory in an ad request.
+     *
+     *
+     *
+     * Corresponds to "Ad request sizes" in the Ad Manager UI.
+     *
+     * Compatible with the following report types:
+     *
+     * Data format: `STRING_LIST`
+     * 
+ * + * AD_REQUEST_SIZES = 541; + */ + AD_REQUEST_SIZES(23, 541), /** * * @@ -734,7 +800,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_TECHNOLOGY_PROVIDER_DOMAIN = 620; */ - AD_TECHNOLOGY_PROVIDER_DOMAIN(23, 620), + AD_TECHNOLOGY_PROVIDER_DOMAIN(24, 620), /** * * @@ -752,7 +818,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_TECHNOLOGY_PROVIDER_ID = 621; */ - AD_TECHNOLOGY_PROVIDER_ID(24, 621), + AD_TECHNOLOGY_PROVIDER_ID(25, 621), /** * * @@ -770,7 +836,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_TECHNOLOGY_PROVIDER_NAME = 622; */ - AD_TECHNOLOGY_PROVIDER_NAME(25, 622), + AD_TECHNOLOGY_PROVIDER_NAME(26, 622), /** * * @@ -789,7 +855,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_TYPE = 497; */ - AD_TYPE(26, 497), + AD_TYPE(27, 497), /** * * @@ -807,7 +873,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_TYPE_NAME = 498; */ - AD_TYPE_NAME(27, 498), + AD_TYPE_NAME(28, 498), /** * * @@ -826,7 +892,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE = 64; */ - AD_UNIT_CODE(28, 64), + AD_UNIT_CODE(29, 64), /** * * @@ -845,7 +911,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_1 = 65; */ - AD_UNIT_CODE_LEVEL_1(29, 65), + AD_UNIT_CODE_LEVEL_1(30, 65), /** * * @@ -864,7 +930,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_10 = 74; */ - AD_UNIT_CODE_LEVEL_10(30, 74), + AD_UNIT_CODE_LEVEL_10(31, 74), /** * * @@ -883,7 +949,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_11 = 75; */ - AD_UNIT_CODE_LEVEL_11(31, 75), + AD_UNIT_CODE_LEVEL_11(32, 75), /** * * @@ -902,7 +968,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_12 = 76; */ - AD_UNIT_CODE_LEVEL_12(32, 76), + AD_UNIT_CODE_LEVEL_12(33, 76), /** * * @@ -921,7 +987,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_13 = 77; */ - AD_UNIT_CODE_LEVEL_13(33, 77), + AD_UNIT_CODE_LEVEL_13(34, 77), /** * * @@ -940,7 +1006,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_14 = 78; */ - AD_UNIT_CODE_LEVEL_14(34, 78), + AD_UNIT_CODE_LEVEL_14(35, 78), /** * * @@ -959,7 +1025,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_15 = 79; */ - AD_UNIT_CODE_LEVEL_15(35, 79), + AD_UNIT_CODE_LEVEL_15(36, 79), /** * * @@ -978,7 +1044,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_16 = 80; */ - AD_UNIT_CODE_LEVEL_16(36, 80), + AD_UNIT_CODE_LEVEL_16(37, 80), /** * * @@ -997,7 +1063,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_2 = 66; */ - AD_UNIT_CODE_LEVEL_2(37, 66), + AD_UNIT_CODE_LEVEL_2(38, 66), /** * * @@ -1016,7 +1082,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_3 = 67; */ - AD_UNIT_CODE_LEVEL_3(38, 67), + AD_UNIT_CODE_LEVEL_3(39, 67), /** * * @@ -1035,7 +1101,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_4 = 68; */ - AD_UNIT_CODE_LEVEL_4(39, 68), + AD_UNIT_CODE_LEVEL_4(40, 68), /** * * @@ -1054,7 +1120,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_5 = 69; */ - AD_UNIT_CODE_LEVEL_5(40, 69), + AD_UNIT_CODE_LEVEL_5(41, 69), /** * * @@ -1073,7 +1139,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_6 = 70; */ - AD_UNIT_CODE_LEVEL_6(41, 70), + AD_UNIT_CODE_LEVEL_6(42, 70), /** * * @@ -1092,7 +1158,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_7 = 71; */ - AD_UNIT_CODE_LEVEL_7(42, 71), + AD_UNIT_CODE_LEVEL_7(43, 71), /** * * @@ -1111,7 +1177,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_8 = 72; */ - AD_UNIT_CODE_LEVEL_8(43, 72), + AD_UNIT_CODE_LEVEL_8(44, 72), /** * * @@ -1130,7 +1196,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_CODE_LEVEL_9 = 73; */ - AD_UNIT_CODE_LEVEL_9(44, 73), + AD_UNIT_CODE_LEVEL_9(45, 73), /** * * @@ -1149,7 +1215,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID = 25; */ - AD_UNIT_ID(45, 25), + AD_UNIT_ID(46, 25), /** * * @@ -1169,7 +1235,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_ALL_LEVEL = 27; */ - AD_UNIT_ID_ALL_LEVEL(46, 27), + AD_UNIT_ID_ALL_LEVEL(47, 27), /** * * @@ -1187,7 +1253,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_1 = 30; */ - AD_UNIT_ID_LEVEL_1(47, 30), + AD_UNIT_ID_LEVEL_1(48, 30), /** * * @@ -1205,7 +1271,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_10 = 48; */ - AD_UNIT_ID_LEVEL_10(48, 48), + AD_UNIT_ID_LEVEL_10(49, 48), /** * * @@ -1223,7 +1289,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_11 = 50; */ - AD_UNIT_ID_LEVEL_11(49, 50), + AD_UNIT_ID_LEVEL_11(50, 50), /** * * @@ -1241,7 +1307,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_12 = 52; */ - AD_UNIT_ID_LEVEL_12(50, 52), + AD_UNIT_ID_LEVEL_12(51, 52), /** * * @@ -1260,7 +1326,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_13 = 54; */ - AD_UNIT_ID_LEVEL_13(51, 54), + AD_UNIT_ID_LEVEL_13(52, 54), /** * * @@ -1279,7 +1345,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_14 = 56; */ - AD_UNIT_ID_LEVEL_14(52, 56), + AD_UNIT_ID_LEVEL_14(53, 56), /** * * @@ -1297,7 +1363,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_15 = 58; */ - AD_UNIT_ID_LEVEL_15(53, 58), + AD_UNIT_ID_LEVEL_15(54, 58), /** * * @@ -1315,7 +1381,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_16 = 60; */ - AD_UNIT_ID_LEVEL_16(54, 60), + AD_UNIT_ID_LEVEL_16(55, 60), /** * * @@ -1333,7 +1399,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_2 = 32; */ - AD_UNIT_ID_LEVEL_2(55, 32), + AD_UNIT_ID_LEVEL_2(56, 32), /** * * @@ -1351,7 +1417,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_3 = 34; */ - AD_UNIT_ID_LEVEL_3(56, 34), + AD_UNIT_ID_LEVEL_3(57, 34), /** * * @@ -1369,7 +1435,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_4 = 36; */ - AD_UNIT_ID_LEVEL_4(57, 36), + AD_UNIT_ID_LEVEL_4(58, 36), /** * * @@ -1387,7 +1453,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_5 = 38; */ - AD_UNIT_ID_LEVEL_5(58, 38), + AD_UNIT_ID_LEVEL_5(59, 38), /** * * @@ -1405,7 +1471,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_6 = 40; */ - AD_UNIT_ID_LEVEL_6(59, 40), + AD_UNIT_ID_LEVEL_6(60, 40), /** * * @@ -1423,7 +1489,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_7 = 42; */ - AD_UNIT_ID_LEVEL_7(60, 42), + AD_UNIT_ID_LEVEL_7(61, 42), /** * * @@ -1441,7 +1507,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_8 = 44; */ - AD_UNIT_ID_LEVEL_8(61, 44), + AD_UNIT_ID_LEVEL_8(62, 44), /** * * @@ -1459,7 +1525,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_LEVEL_9 = 46; */ - AD_UNIT_ID_LEVEL_9(62, 46), + AD_UNIT_ID_LEVEL_9(63, 46), /** * * @@ -1477,7 +1543,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_ID_TOP_LEVEL = 142; */ - AD_UNIT_ID_TOP_LEVEL(63, 142), + AD_UNIT_ID_TOP_LEVEL(64, 142), /** * * @@ -1496,7 +1562,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME = 26; */ - AD_UNIT_NAME(64, 26), + AD_UNIT_NAME(65, 26), /** * * @@ -1516,7 +1582,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_ALL_LEVEL = 29; */ - AD_UNIT_NAME_ALL_LEVEL(65, 29), + AD_UNIT_NAME_ALL_LEVEL(66, 29), /** * * @@ -1534,7 +1600,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_1 = 31; */ - AD_UNIT_NAME_LEVEL_1(66, 31), + AD_UNIT_NAME_LEVEL_1(67, 31), /** * * @@ -1552,7 +1618,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_10 = 49; */ - AD_UNIT_NAME_LEVEL_10(67, 49), + AD_UNIT_NAME_LEVEL_10(68, 49), /** * * @@ -1571,7 +1637,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_11 = 51; */ - AD_UNIT_NAME_LEVEL_11(68, 51), + AD_UNIT_NAME_LEVEL_11(69, 51), /** * * @@ -1589,7 +1655,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_12 = 53; */ - AD_UNIT_NAME_LEVEL_12(69, 53), + AD_UNIT_NAME_LEVEL_12(70, 53), /** * * @@ -1608,7 +1674,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_13 = 55; */ - AD_UNIT_NAME_LEVEL_13(70, 55), + AD_UNIT_NAME_LEVEL_13(71, 55), /** * * @@ -1627,7 +1693,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_14 = 57; */ - AD_UNIT_NAME_LEVEL_14(71, 57), + AD_UNIT_NAME_LEVEL_14(72, 57), /** * * @@ -1646,7 +1712,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_15 = 59; */ - AD_UNIT_NAME_LEVEL_15(72, 59), + AD_UNIT_NAME_LEVEL_15(73, 59), /** * * @@ -1665,7 +1731,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_16 = 61; */ - AD_UNIT_NAME_LEVEL_16(73, 61), + AD_UNIT_NAME_LEVEL_16(74, 61), /** * * @@ -1683,7 +1749,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_2 = 33; */ - AD_UNIT_NAME_LEVEL_2(74, 33), + AD_UNIT_NAME_LEVEL_2(75, 33), /** * * @@ -1701,7 +1767,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_3 = 35; */ - AD_UNIT_NAME_LEVEL_3(75, 35), + AD_UNIT_NAME_LEVEL_3(76, 35), /** * * @@ -1719,7 +1785,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_4 = 37; */ - AD_UNIT_NAME_LEVEL_4(76, 37), + AD_UNIT_NAME_LEVEL_4(77, 37), /** * * @@ -1737,7 +1803,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_5 = 39; */ - AD_UNIT_NAME_LEVEL_5(77, 39), + AD_UNIT_NAME_LEVEL_5(78, 39), /** * * @@ -1755,7 +1821,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_6 = 41; */ - AD_UNIT_NAME_LEVEL_6(78, 41), + AD_UNIT_NAME_LEVEL_6(79, 41), /** * * @@ -1773,7 +1839,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_7 = 43; */ - AD_UNIT_NAME_LEVEL_7(79, 43), + AD_UNIT_NAME_LEVEL_7(80, 43), /** * * @@ -1791,7 +1857,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_8 = 45; */ - AD_UNIT_NAME_LEVEL_8(80, 45), + AD_UNIT_NAME_LEVEL_8(81, 45), /** * * @@ -1809,7 +1875,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_LEVEL_9 = 47; */ - AD_UNIT_NAME_LEVEL_9(81, 47), + AD_UNIT_NAME_LEVEL_9(82, 47), /** * * @@ -1827,7 +1893,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_NAME_TOP_LEVEL = 143; */ - AD_UNIT_NAME_TOP_LEVEL(82, 143), + AD_UNIT_NAME_TOP_LEVEL(83, 143), /** * * @@ -1846,7 +1912,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_REWARD_AMOUNT = 63; */ - AD_UNIT_REWARD_AMOUNT(83, 63), + AD_UNIT_REWARD_AMOUNT(84, 63), /** * * @@ -1865,7 +1931,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_REWARD_TYPE = 62; */ - AD_UNIT_REWARD_TYPE(84, 62), + AD_UNIT_REWARD_TYPE(85, 62), /** * * @@ -1884,7 +1950,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_STATUS = 206; */ - AD_UNIT_STATUS(85, 206), + AD_UNIT_STATUS(86, 206), /** * * @@ -1902,7 +1968,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_STATUS_NAME = 207; */ - AD_UNIT_STATUS_NAME(86, 207), + AD_UNIT_STATUS_NAME(87, 207), /** * * @@ -1920,7 +1986,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGENCY_LEVEL_1_ID = 565; */ - AGENCY_LEVEL_1_ID(87, 565), + AGENCY_LEVEL_1_ID(88, 565), /** * * @@ -1938,7 +2004,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGENCY_LEVEL_1_NAME = 566; */ - AGENCY_LEVEL_1_NAME(88, 566), + AGENCY_LEVEL_1_NAME(89, 566), /** * * @@ -1956,7 +2022,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGENCY_LEVEL_2_ID = 567; */ - AGENCY_LEVEL_2_ID(89, 567), + AGENCY_LEVEL_2_ID(90, 567), /** * * @@ -1974,7 +2040,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGENCY_LEVEL_2_NAME = 568; */ - AGENCY_LEVEL_2_NAME(90, 568), + AGENCY_LEVEL_2_NAME(91, 568), /** * * @@ -1992,7 +2058,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGENCY_LEVEL_3_ID = 569; */ - AGENCY_LEVEL_3_ID(91, 569), + AGENCY_LEVEL_3_ID(92, 569), /** * * @@ -2010,7 +2076,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGENCY_LEVEL_3_NAME = 570; */ - AGENCY_LEVEL_3_NAME(92, 570), + AGENCY_LEVEL_3_NAME(93, 570), /** * * @@ -2029,7 +2095,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGE_BRACKET = 508; */ - AGE_BRACKET(93, 508), + AGE_BRACKET(94, 508), /** * * @@ -2048,7 +2114,43 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AGE_BRACKET_NAME = 582; */ - AGE_BRACKET_NAME(94, 582), + AGE_BRACKET_NAME(95, 582), + /** + * + * + *
+     * Property ID in Google Analytics
+     *
+     *
+     *
+     * Corresponds to "Analytics property ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * ANALYTICS_PROPERTY_ID = 733; + */ + ANALYTICS_PROPERTY_ID(96, 733), + /** + * + * + *
+     * Property name in Google Analytics
+     *
+     *
+     *
+     * Corresponds to "Analytics property" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * ANALYTICS_PROPERTY_NAME = 767; + */ + ANALYTICS_PROPERTY_NAME(97, 767), /** * * @@ -2067,7 +2169,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * APP_TRACKING_TRANSPARENCY_CONSENT_STATUS = 442; */ - APP_TRACKING_TRANSPARENCY_CONSENT_STATUS(95, 442), + APP_TRACKING_TRANSPARENCY_CONSENT_STATUS(98, 442), /** * * @@ -2086,7 +2188,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * APP_TRACKING_TRANSPARENCY_CONSENT_STATUS_NAME = 443; */ - APP_TRACKING_TRANSPARENCY_CONSENT_STATUS_NAME(96, 443), + APP_TRACKING_TRANSPARENCY_CONSENT_STATUS_NAME(99, 443), /** * * @@ -2104,7 +2206,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * APP_VERSION = 392; */ - APP_VERSION(97, 392), + APP_VERSION(100, 392), /** * * @@ -2122,7 +2224,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AUCTION_PACKAGE_DEAL = 579; */ - AUCTION_PACKAGE_DEAL(98, 579), + AUCTION_PACKAGE_DEAL(101, 579), /** * * @@ -2140,7 +2242,79 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AUCTION_PACKAGE_DEAL_ID = 571; */ - AUCTION_PACKAGE_DEAL_ID(99, 571), + AUCTION_PACKAGE_DEAL_ID(102, 571), + /** + * + * + *
+     * Name of billable audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (billable)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * AUDIENCE_SEGMENT_BILLABLE = 594; + */ + AUDIENCE_SEGMENT_BILLABLE(103, 594), + /** + * + * + *
+     * ID of the data provider for the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment data provider ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * AUDIENCE_SEGMENT_DATA_PROVIDER_ID = 613; + */ + AUDIENCE_SEGMENT_DATA_PROVIDER_ID(104, 613), + /** + * + * + *
+     * Name of the data provider for the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment data provider" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * AUDIENCE_SEGMENT_DATA_PROVIDER_NAME = 614; + */ + AUDIENCE_SEGMENT_DATA_PROVIDER_NAME(105, 614), + /** + * + * + *
+     * ID of billable audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment ID (billable)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * AUDIENCE_SEGMENT_ID_BILLABLE = 595; + */ + AUDIENCE_SEGMENT_ID_BILLABLE(106, 595), /** * * @@ -2159,7 +2333,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AUDIENCE_SEGMENT_ID_TARGETED = 584; */ - AUDIENCE_SEGMENT_ID_TARGETED(100, 584), + AUDIENCE_SEGMENT_ID_TARGETED(107, 584), /** * * @@ -2178,7 +2352,271 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AUDIENCE_SEGMENT_TARGETED = 585; */ - AUDIENCE_SEGMENT_TARGETED(101, 585), + AUDIENCE_SEGMENT_TARGETED(108, 585), + /** + * + * + *
+     * Number of AdID identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) AdID size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE = 605; + */ + AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE(109, 605), + /** + * + * + *
+     * Number of Amazon Fire identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Amazon Fire size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE = 606; + */ + AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE(110, 606), + /** + * + * + *
+     * Number of Android TV identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Android TV size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE = 607; + */ + AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE(111, 607), + /** + * + * + *
+     * Number of Apple TV identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Apple TV size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE = 608; + */ + AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE(112, 608), + /** + * + * + *
+     * Number of IDFA identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) IDFA size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE = 609; + */ + AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE(113, 609), + /** + * + * + *
+     * Number of mobile web identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) mobile web size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE = 610; + */ + AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE(114, 610), + /** + * + * + *
+     * Number of PlayStation identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) PlayStation size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE = 611; + */ + AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE(115, 611), + /** + * + * + *
+     * Number of PPID identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) PPID size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE = 612; + */ + AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE(116, 612), + /** + * + * + *
+     * Number of Roku identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Roku size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE = 615; + */ + AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE(117, 615), + /** + * + * + *
+     * Number of Samsung TV identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Samsung TV size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE = 616; + */ + AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE(118, 616), + /** + * + * + *
+     * Number of identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) size" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_SIZE = 618; + */ + AUDIENCE_SEGMENT_TARGETED_SIZE(119, 618), + /** + * + * + *
+     * Status of the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) status value" in the Ad
+     * Manager UI (when showing API fields).
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `ENUM`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_STATUS = 628; + */ + AUDIENCE_SEGMENT_TARGETED_STATUS(120, 628), + /** + * + * + *
+     * Name of the status of the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) status" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_STATUS_NAME = 617; + */ + AUDIENCE_SEGMENT_TARGETED_STATUS_NAME(121, 617), + /** + * + * + *
+     * Number of Xbox identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Xbox size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE = 619; + */ + AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE(122, 619), /** * * @@ -2197,7 +2635,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AUTO_REFRESHED_TRAFFIC = 421; */ - AUTO_REFRESHED_TRAFFIC(102, 421), + AUTO_REFRESHED_TRAFFIC(123, 421), /** * * @@ -2215,7 +2653,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * AUTO_REFRESHED_TRAFFIC_NAME = 422; */ - AUTO_REFRESHED_TRAFFIC_NAME(103, 422), + AUTO_REFRESHED_TRAFFIC_NAME(124, 422), /** * * @@ -2226,14 +2664,15 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Bidder encrypted ID" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
* * BIDDER_ENCRYPTED_ID = 493; */ - BIDDER_ENCRYPTED_ID(104, 493), + BIDDER_ENCRYPTED_ID(125, 493), /** * * @@ -2244,14 +2683,15 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Bidder" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` * * * BIDDER_NAME = 494; */ - BIDDER_NAME(105, 494), + BIDDER_NAME(126, 494), /** * * @@ -2269,7 +2709,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BID_RANGE = 679; */ - BID_RANGE(106, 679), + BID_RANGE(127, 679), /** * * @@ -2288,7 +2728,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BID_REJECTION_REASON = 599; */ - BID_REJECTION_REASON(107, 599), + BID_REJECTION_REASON(128, 599), /** * * @@ -2306,7 +2746,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BID_REJECTION_REASON_NAME = 600; */ - BID_REJECTION_REASON_NAME(108, 600), + BID_REJECTION_REASON_NAME(129, 600), /** * * @@ -2326,7 +2766,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BRANDING_TYPE = 383; */ - BRANDING_TYPE(109, 383), + BRANDING_TYPE(130, 383), /** * * @@ -2345,7 +2785,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BRANDING_TYPE_NAME = 384; */ - BRANDING_TYPE_NAME(110, 384), + BRANDING_TYPE_NAME(131, 384), /** * * @@ -2364,7 +2804,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BROWSER_CATEGORY = 119; */ - BROWSER_CATEGORY(111, 119), + BROWSER_CATEGORY(132, 119), /** * * @@ -2382,7 +2822,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BROWSER_CATEGORY_NAME = 120; */ - BROWSER_CATEGORY_NAME(112, 120), + BROWSER_CATEGORY_NAME(133, 120), /** * * @@ -2400,7 +2840,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BROWSER_ID = 235; */ - BROWSER_ID(113, 235), + BROWSER_ID(134, 235), /** * * @@ -2418,7 +2858,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BROWSER_NAME = 236; */ - BROWSER_NAME(114, 236), + BROWSER_NAME(135, 236), /** * * @@ -2436,7 +2876,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BUYER_NETWORK_ID = 448; */ - BUYER_NETWORK_ID(115, 448), + BUYER_NETWORK_ID(136, 448), /** * * @@ -2454,7 +2894,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * BUYER_NETWORK_NAME = 449; */ - BUYER_NETWORK_NAME(116, 449), + BUYER_NETWORK_NAME(137, 449), /** * * @@ -2473,7 +2913,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CALLOUT_STATUS_CATEGORY = 588; */ - CALLOUT_STATUS_CATEGORY(117, 588), + CALLOUT_STATUS_CATEGORY(138, 588), /** * * @@ -2491,7 +2931,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CALLOUT_STATUS_CATEGORY_NAME = 589; */ - CALLOUT_STATUS_CATEGORY_NAME(118, 589), + CALLOUT_STATUS_CATEGORY_NAME(139, 589), /** * * @@ -2509,7 +2949,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CARRIER_ID = 369; */ - CARRIER_ID(119, 369), + CARRIER_ID(140, 369), /** * * @@ -2527,7 +2967,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CARRIER_NAME = 368; */ - CARRIER_NAME(120, 368), + CARRIER_NAME(141, 368), /** * * @@ -2545,7 +2985,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CHANNEL = 501; */ - CHANNEL(121, 501), + CHANNEL(142, 501), /** * * @@ -2563,7 +3003,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CHILD_NETWORK_CODE = 542; */ - CHILD_NETWORK_CODE(122, 542), + CHILD_NETWORK_CODE(143, 542), /** * * @@ -2581,7 +3021,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CHILD_NETWORK_ID = 544; */ - CHILD_NETWORK_ID(123, 544), + CHILD_NETWORK_ID(144, 544), /** * * @@ -2599,7 +3039,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CHILD_PARTNER_NAME = 543; */ - CHILD_PARTNER_NAME(124, 543), + CHILD_PARTNER_NAME(145, 543), /** * * @@ -2617,7 +3057,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CITY_ID = 459; */ - CITY_ID(125, 459), + CITY_ID(146, 459), /** * * @@ -2635,7 +3075,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CITY_NAME = 452; */ - CITY_NAME(126, 452), + CITY_NAME(147, 452), /** * * @@ -2654,7 +3094,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CLASSIFIED_ADVERTISER_ID = 133; */ - CLASSIFIED_ADVERTISER_ID(127, 133), + CLASSIFIED_ADVERTISER_ID(148, 133), /** * * @@ -2673,7 +3113,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CLASSIFIED_ADVERTISER_NAME = 134; */ - CLASSIFIED_ADVERTISER_NAME(128, 134), + CLASSIFIED_ADVERTISER_NAME(149, 134), /** * * @@ -2691,7 +3131,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CLASSIFIED_BRAND_ID = 243; */ - CLASSIFIED_BRAND_ID(129, 243), + CLASSIFIED_BRAND_ID(150, 243), /** * * @@ -2709,7 +3149,79 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CLASSIFIED_BRAND_NAME = 244; */ - CLASSIFIED_BRAND_NAME(130, 244), + CLASSIFIED_BRAND_NAME(151, 244), + /** + * + * + *
+     * ID of the video content bundle served.
+     *
+     *
+     *
+     * Corresponds to "Content bundle ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * CONTENT_BUNDLE_ID = 460; + */ + CONTENT_BUNDLE_ID(152, 460), + /** + * + * + *
+     * Name of the video content bundle served.
+     *
+     *
+     *
+     * Corresponds to "Content bundle" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * CONTENT_BUNDLE_NAME = 461; + */ + CONTENT_BUNDLE_NAME(153, 461), + /** + * + * + *
+     * ID of the video content metadata namespace served.
+     *
+     *
+     *
+     * Corresponds to "CMS metadata key ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * CONTENT_CMS_METADATA_KV_NAMESPACE_ID = 462; + */ + CONTENT_CMS_METADATA_KV_NAMESPACE_ID(154, 462), + /** + * + * + *
+     * Name of the video content metadata namespace served.
+     *
+     *
+     *
+     * Corresponds to "CMS metadata key" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * CONTENT_CMS_METADATA_KV_NAMESPACE_NAME = 463; + */ + CONTENT_CMS_METADATA_KV_NAMESPACE_NAME(155, 463), /** * * @@ -2727,7 +3239,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTENT_CMS_NAME = 643; */ - CONTENT_CMS_NAME(131, 643), + CONTENT_CMS_NAME(156, 643), /** * * @@ -2746,7 +3258,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTENT_CMS_VIDEO_ID = 644; */ - CONTENT_CMS_VIDEO_ID(132, 644), + CONTENT_CMS_VIDEO_ID(157, 644), /** * * @@ -2764,7 +3276,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTENT_ID = 246; */ - CONTENT_ID(133, 246), + CONTENT_ID(158, 246), /** * * @@ -2783,7 +3295,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTENT_MAPPING_PRESENCE = 731; */ - CONTENT_MAPPING_PRESENCE(134, 731), + CONTENT_MAPPING_PRESENCE(159, 731), /** * * @@ -2801,7 +3313,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTENT_MAPPING_PRESENCE_NAME = 732; */ - CONTENT_MAPPING_PRESENCE_NAME(135, 732), + CONTENT_MAPPING_PRESENCE_NAME(160, 732), /** * * @@ -2819,7 +3331,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTENT_NAME = 247; */ - CONTENT_NAME(136, 247), + CONTENT_NAME(161, 247), /** * * @@ -2838,7 +3350,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTINENT = 469; */ - CONTINENT(137, 469), + CONTINENT(162, 469), /** * * @@ -2856,7 +3368,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CONTINENT_NAME = 470; */ - CONTINENT_NAME(138, 470), + CONTINENT_NAME(163, 470), /** * * @@ -2875,7 +3387,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * COUNTRY_CODE = 466; */ - COUNTRY_CODE(139, 466), + COUNTRY_CODE(164, 466), /** * * @@ -2894,7 +3406,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * COUNTRY_ID = 11; */ - COUNTRY_ID(140, 11), + COUNTRY_ID(165, 11), /** * * @@ -2913,7 +3425,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * COUNTRY_NAME = 12; */ - COUNTRY_NAME(141, 12), + COUNTRY_NAME(166, 12), /** * * @@ -2932,7 +3444,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_BILLING_TYPE = 366; */ - CREATIVE_BILLING_TYPE(142, 366), + CREATIVE_BILLING_TYPE(167, 366), /** * * @@ -2950,7 +3462,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_BILLING_TYPE_NAME = 367; */ - CREATIVE_BILLING_TYPE_NAME(143, 367), + CREATIVE_BILLING_TYPE_NAME(168, 367), /** * * @@ -2968,7 +3480,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_CLICK_THROUGH_URL = 174; */ - CREATIVE_CLICK_THROUGH_URL(144, 174), + CREATIVE_CLICK_THROUGH_URL(169, 174), /** * * @@ -2986,7 +3498,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_ID = 138; */ - CREATIVE_ID(145, 138), + CREATIVE_ID(170, 138), /** * * @@ -3004,7 +3516,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_NAME = 139; */ - CREATIVE_NAME(146, 139), + CREATIVE_NAME(171, 139), /** * * @@ -3023,7 +3535,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_POLICIES_FILTERING = 711; */ - CREATIVE_POLICIES_FILTERING(147, 711), + CREATIVE_POLICIES_FILTERING(172, 711), /** * * @@ -3041,12 +3553,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_POLICIES_FILTERING_NAME = 712; */ - CREATIVE_POLICIES_FILTERING_NAME(148, 712), + CREATIVE_POLICIES_FILTERING_NAME(173, 712), /** * * *
-     * Creative Protections filtering (Publisher Blocks Enforcement).
+     * Creative Protections filtering.
      *
      *
      *
@@ -3060,7 +3572,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_PROTECTIONS_FILTERING = 704;
      */
-    CREATIVE_PROTECTIONS_FILTERING(149, 704),
+    CREATIVE_PROTECTIONS_FILTERING(174, 704),
     /**
      *
      *
@@ -3078,7 +3590,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_PROTECTIONS_FILTERING_NAME = 705;
      */
-    CREATIVE_PROTECTIONS_FILTERING_NAME(150, 705),
+    CREATIVE_PROTECTIONS_FILTERING_NAME(175, 705),
     /**
      *
      *
@@ -3098,7 +3610,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_SET_ROLE_TYPE = 686;
      */
-    CREATIVE_SET_ROLE_TYPE(151, 686),
+    CREATIVE_SET_ROLE_TYPE(176, 686),
     /**
      *
      *
@@ -3117,7 +3629,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_SET_ROLE_TYPE_NAME = 687;
      */
-    CREATIVE_SET_ROLE_TYPE_NAME(152, 687),
+    CREATIVE_SET_ROLE_TYPE_NAME(177, 687),
     /**
      *
      *
@@ -3136,12 +3648,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_TECHNOLOGY = 148;
      */
-    CREATIVE_TECHNOLOGY(153, 148),
+    CREATIVE_TECHNOLOGY(178, 148),
     /**
      *
      *
      * 
-     * Creative technology locallized name
+     * Creative technology localized name
      *
      *
      *
@@ -3154,7 +3666,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_TECHNOLOGY_NAME = 149;
      */
-    CREATIVE_TECHNOLOGY_NAME(154, 149),
+    CREATIVE_TECHNOLOGY_NAME(179, 149),
     /**
      *
      *
@@ -3172,7 +3684,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_THIRD_PARTY_VENDOR = 361;
      */
-    CREATIVE_THIRD_PARTY_VENDOR(155, 361),
+    CREATIVE_THIRD_PARTY_VENDOR(180, 361),
     /**
      *
      *
@@ -3191,7 +3703,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_TYPE = 344;
      */
-    CREATIVE_TYPE(156, 344),
+    CREATIVE_TYPE(181, 344),
     /**
      *
      *
@@ -3209,7 +3721,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_TYPE_NAME = 345;
      */
-    CREATIVE_TYPE_NAME(157, 345),
+    CREATIVE_TYPE_NAME(182, 345),
     /**
      *
      *
@@ -3227,7 +3739,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_VENDOR_ID = 706;
      */
-    CREATIVE_VENDOR_ID(158, 706),
+    CREATIVE_VENDOR_ID(183, 706),
     /**
      *
      *
@@ -3245,7 +3757,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_VENDOR_NAME = 707;
      */
-    CREATIVE_VENDOR_NAME(159, 707),
+    CREATIVE_VENDOR_NAME(184, 707),
     /**
      *
      *
@@ -3265,7 +3777,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_VIDEO_REDIRECT_THIRD_PARTY = 562;
      */
-    CREATIVE_VIDEO_REDIRECT_THIRD_PARTY(160, 562),
+    CREATIVE_VIDEO_REDIRECT_THIRD_PARTY(185, 562),
     /**
      *
      *
@@ -3283,7 +3795,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CURATOR_ID = 572;
      */
-    CURATOR_ID(161, 572),
+    CURATOR_ID(186, 572),
     /**
      *
      *
@@ -3301,7 +3813,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CURATOR_NAME = 573;
      */
-    CURATOR_NAME(162, 573),
+    CURATOR_NAME(187, 573),
     /**
      *
      *
@@ -3319,7 +3831,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_EVENT_ID = 737;
      */
-    CUSTOM_EVENT_ID(163, 737),
+    CUSTOM_EVENT_ID(188, 737),
     /**
      *
      *
@@ -3337,7 +3849,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_EVENT_NAME = 735;
      */
-    CUSTOM_EVENT_NAME(164, 735),
+    CUSTOM_EVENT_NAME(189, 735),
     /**
      *
      *
@@ -3356,7 +3868,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_EVENT_TYPE = 736;
      */
-    CUSTOM_EVENT_TYPE(165, 736),
+    CUSTOM_EVENT_TYPE(190, 736),
     /**
      *
      *
@@ -3374,7 +3886,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_EVENT_TYPE_NAME = 738;
      */
-    CUSTOM_EVENT_TYPE_NAME(166, 738),
+    CUSTOM_EVENT_TYPE_NAME(191, 738),
     /**
      *
      *
@@ -3393,7 +3905,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_SPOT_ID = 423;
      */
-    CUSTOM_SPOT_ID(167, 423),
+    CUSTOM_SPOT_ID(192, 423),
     /**
      *
      *
@@ -3412,7 +3924,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_SPOT_NAME = 424;
      */
-    CUSTOM_SPOT_NAME(168, 424),
+    CUSTOM_SPOT_NAME(193, 424),
     /**
      *
      *
@@ -3424,14 +3936,14 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      * Corresponds to "Date" in the Ad Manager UI.
      *
      * Compatible with the following report types: `HISTORICAL`, `REACH`,
-     * `PRIVACY_AND_MESSAGING`, `AD_SPEED`
+     * `PRIVACY_AND_MESSAGING`, `REVENUE_VERIFICATION`, `AD_SPEED`
      *
      * Data format: `DATE`
      * 
* * DATE = 3; */ - DATE(169, 3), + DATE(194, 3), /** * * @@ -3451,7 +3963,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DAY_OF_WEEK = 4; */ - DAY_OF_WEEK(170, 4), + DAY_OF_WEEK(195, 4), /** * * @@ -3469,7 +3981,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEAL_BUYER_ID = 240; */ - DEAL_BUYER_ID(171, 240), + DEAL_BUYER_ID(196, 240), /** * * @@ -3487,7 +3999,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEAL_BUYER_NAME = 241; */ - DEAL_BUYER_NAME(172, 241), + DEAL_BUYER_NAME(197, 241), /** * * @@ -3505,7 +4017,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEAL_ID = 436; */ - DEAL_ID(173, 436), + DEAL_ID(198, 436), /** * * @@ -3523,7 +4035,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEAL_NAME = 437; */ - DEAL_NAME(174, 437), + DEAL_NAME(199, 437), /** * * @@ -3542,7 +4054,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DELIVERED_SECURE_SIGNAL_ID = 309; */ - DELIVERED_SECURE_SIGNAL_ID(175, 309), + DELIVERED_SECURE_SIGNAL_ID(200, 309), /** * * @@ -3561,7 +4073,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DELIVERED_SECURE_SIGNAL_NAME = 310; */ - DELIVERED_SECURE_SIGNAL_NAME(176, 310), + DELIVERED_SECURE_SIGNAL_NAME(201, 310), /** * * @@ -3574,14 +4086,14 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * API fields). * * Compatible with the following report types: `HISTORICAL`, `REACH`, - * `AD_SPEED` + * `REVENUE_VERIFICATION`, `AD_SPEED` * * Data format: `ENUM` *
* * DEMAND_CHANNEL = 9; */ - DEMAND_CHANNEL(177, 9), + DEMAND_CHANNEL(202, 9), /** * * @@ -3593,14 +4105,14 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Corresponds to "Demand channel" in the Ad Manager UI. * * Compatible with the following report types: `HISTORICAL`, `REACH`, - * `AD_SPEED` + * `REVENUE_VERIFICATION`, `AD_SPEED` * * Data format: `STRING` * * * DEMAND_CHANNEL_NAME = 10; */ - DEMAND_CHANNEL_NAME(178, 10), + DEMAND_CHANNEL_NAME(203, 10), /** * * @@ -3619,7 +4131,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEMAND_SOURCE = 592; */ - DEMAND_SOURCE(179, 592), + DEMAND_SOURCE(204, 592), /** * * @@ -3637,7 +4149,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEMAND_SOURCE_NAME = 593; */ - DEMAND_SOURCE_NAME(180, 593), + DEMAND_SOURCE_NAME(205, 593), /** * * @@ -3656,7 +4168,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEMAND_SUBCHANNEL = 22; */ - DEMAND_SUBCHANNEL(181, 22), + DEMAND_SUBCHANNEL(206, 22), /** * * @@ -3674,7 +4186,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEMAND_SUBCHANNEL_NAME = 23; */ - DEMAND_SUBCHANNEL_NAME(182, 23), + DEMAND_SUBCHANNEL_NAME(207, 23), /** * * @@ -3693,7 +4205,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE = 226; */ - DEVICE(183, 226), + DEVICE(208, 226), /** * * @@ -3713,7 +4225,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE_CATEGORY = 15; */ - DEVICE_CATEGORY(184, 15), + DEVICE_CATEGORY(209, 15), /** * * @@ -3733,7 +4245,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE_CATEGORY_NAME = 16; */ - DEVICE_CATEGORY_NAME(185, 16), + DEVICE_CATEGORY_NAME(210, 16), /** * * @@ -3752,7 +4264,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE_MANUFACTURER_ID = 525; */ - DEVICE_MANUFACTURER_ID(186, 525), + DEVICE_MANUFACTURER_ID(211, 525), /** * * @@ -3770,7 +4282,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE_MANUFACTURER_NAME = 526; */ - DEVICE_MANUFACTURER_NAME(187, 526), + DEVICE_MANUFACTURER_NAME(212, 526), /** * * @@ -3789,7 +4301,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE_MODEL_ID = 527; */ - DEVICE_MODEL_ID(188, 527), + DEVICE_MODEL_ID(213, 527), /** * * @@ -3807,7 +4319,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DEVICE_MODEL_NAME = 528; */ - DEVICE_MODEL_NAME(189, 528), + DEVICE_MODEL_NAME(214, 528), /** * * @@ -3823,9 +4335,10 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Data format: `STRING` * * - * DEVICE_NAME = 225; + * DEVICE_NAME = 225 [deprecated = true]; */ - DEVICE_NAME(190, 225), + @java.lang.Deprecated + DEVICE_NAME(215, 225), /** * * @@ -3843,7 +4356,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DSP_SEAT_ID = 564; */ - DSP_SEAT_ID(191, 564), + DSP_SEAT_ID(216, 564), /** * * @@ -3863,7 +4376,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DYNAMIC_ALLOCATION_TYPE = 502; */ - DYNAMIC_ALLOCATION_TYPE(192, 502), + DYNAMIC_ALLOCATION_TYPE(217, 502), /** * * @@ -3881,7 +4394,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * DYNAMIC_ALLOCATION_TYPE_NAME = 503; */ - DYNAMIC_ALLOCATION_TYPE_NAME(193, 503), + DYNAMIC_ALLOCATION_TYPE_NAME(218, 503), /** * * @@ -3900,7 +4413,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ESP_DELIVERY = 623; */ - ESP_DELIVERY(194, 623), + ESP_DELIVERY(219, 623), /** * * @@ -3918,7 +4431,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ESP_DELIVERY_NAME = 624; */ - ESP_DELIVERY_NAME(195, 624), + ESP_DELIVERY_NAME(220, 624), /** * * @@ -3937,7 +4450,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ESP_PRESENCE = 625; */ - ESP_PRESENCE(196, 625), + ESP_PRESENCE(221, 625), /** * * @@ -3955,7 +4468,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ESP_PRESENCE_NAME = 626; */ - ESP_PRESENCE_NAME(197, 626), + ESP_PRESENCE_NAME(222, 626), /** * * @@ -3973,7 +4486,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * EXCHANGE_BIDDING_DEAL_ID = 715; */ - EXCHANGE_BIDDING_DEAL_ID(198, 715), + EXCHANGE_BIDDING_DEAL_ID(223, 715), /** * * @@ -3992,7 +4505,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * EXCHANGE_BIDDING_DEAL_TYPE = 714; */ - EXCHANGE_BIDDING_DEAL_TYPE(199, 714), + EXCHANGE_BIDDING_DEAL_TYPE(224, 714), /** * * @@ -4010,7 +4523,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * EXCHANGE_BIDDING_DEAL_TYPE_NAME = 723; */ - EXCHANGE_BIDDING_DEAL_TYPE_NAME(200, 723), + EXCHANGE_BIDDING_DEAL_TYPE_NAME(225, 723), /** * * @@ -4028,7 +4541,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * EXCHANGE_THIRD_PARTY_COMPANY_ID = 185; */ - EXCHANGE_THIRD_PARTY_COMPANY_ID(201, 185), + EXCHANGE_THIRD_PARTY_COMPANY_ID(226, 185), /** * * @@ -4046,7 +4559,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186; */ - EXCHANGE_THIRD_PARTY_COMPANY_NAME(202, 186), + EXCHANGE_THIRD_PARTY_COMPANY_NAME(227, 186), /** * * @@ -4064,7 +4577,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * FIRST_LOOK_PRICING_RULE_ID = 248; */ - FIRST_LOOK_PRICING_RULE_ID(203, 248), + FIRST_LOOK_PRICING_RULE_ID(228, 248), /** * * @@ -4082,7 +4595,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * FIRST_LOOK_PRICING_RULE_NAME = 249; */ - FIRST_LOOK_PRICING_RULE_NAME(204, 249), + FIRST_LOOK_PRICING_RULE_NAME(229, 249), /** * * @@ -4102,7 +4615,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * FIRST_PARTY_ID_STATUS = 404; */ - FIRST_PARTY_ID_STATUS(205, 404), + FIRST_PARTY_ID_STATUS(230, 404), /** * * @@ -4121,7 +4634,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * FIRST_PARTY_ID_STATUS_NAME = 405; */ - FIRST_PARTY_ID_STATUS_NAME(206, 405), + FIRST_PARTY_ID_STATUS_NAME(231, 405), /** * * @@ -4140,7 +4653,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * GENDER = 509; */ - GENDER(207, 509), + GENDER(232, 509), /** * * @@ -4159,7 +4672,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * GENDER_NAME = 583; */ - GENDER_NAME(208, 583), + GENDER_NAME(233, 583), /** * * @@ -4177,7 +4690,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_STREAM_ID = 519; */ - GOOGLE_ANALYTICS_STREAM_ID(209, 519), + GOOGLE_ANALYTICS_STREAM_ID(234, 519), /** * * @@ -4196,7 +4709,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_STREAM_NAME = 520; */ - GOOGLE_ANALYTICS_STREAM_NAME(210, 520), + GOOGLE_ANALYTICS_STREAM_NAME(235, 520), /** * * @@ -4215,7 +4728,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * HBT_YIELD_PARTNER_ID = 659; */ - HBT_YIELD_PARTNER_ID(211, 659), + HBT_YIELD_PARTNER_ID(236, 659), /** * * @@ -4234,7 +4747,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * HBT_YIELD_PARTNER_NAME = 660; */ - HBT_YIELD_PARTNER_NAME(212, 660), + HBT_YIELD_PARTNER_NAME(237, 660), /** * * @@ -4253,7 +4766,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * HEADER_BIDDER_INTEGRATION_TYPE = 718; */ - HEADER_BIDDER_INTEGRATION_TYPE(213, 718), + HEADER_BIDDER_INTEGRATION_TYPE(238, 718), /** * * @@ -4271,7 +4784,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * HEADER_BIDDER_INTEGRATION_TYPE_NAME = 719; */ - HEADER_BIDDER_INTEGRATION_TYPE_NAME(214, 719), + HEADER_BIDDER_INTEGRATION_TYPE_NAME(239, 719), /** * * @@ -4289,7 +4802,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * HOUR = 100; */ - HOUR(215, 100), + HOUR(240, 100), /** * * @@ -4308,7 +4821,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * IMPRESSION_COUNTING_METHOD = 577; */ - IMPRESSION_COUNTING_METHOD(216, 577), + IMPRESSION_COUNTING_METHOD(241, 577), /** * * @@ -4326,7 +4839,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * IMPRESSION_COUNTING_METHOD_NAME = 578; */ - IMPRESSION_COUNTING_METHOD_NAME(217, 578), + IMPRESSION_COUNTING_METHOD_NAME(242, 578), /** * * @@ -4345,7 +4858,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INTERACTION_TYPE = 223; */ - INTERACTION_TYPE(218, 223), + INTERACTION_TYPE(243, 223), /** * * @@ -4363,7 +4876,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INTERACTION_TYPE_NAME = 224; */ - INTERACTION_TYPE_NAME(219, 224), + INTERACTION_TYPE_NAME(244, 224), /** * * @@ -4381,7 +4894,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INTEREST = 510; */ - INTEREST(220, 510), + INTEREST(245, 510), /** * * @@ -4401,7 +4914,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_FORMAT = 17; */ - INVENTORY_FORMAT(221, 17), + INVENTORY_FORMAT(246, 17), /** * * @@ -4420,7 +4933,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_FORMAT_NAME = 18; */ - INVENTORY_FORMAT_NAME(222, 18), + INVENTORY_FORMAT_NAME(247, 18), /** * * @@ -4438,7 +4951,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_ASSIGNMENT_ID = 648; */ - INVENTORY_SHARE_ASSIGNMENT_ID(223, 648), + INVENTORY_SHARE_ASSIGNMENT_ID(248, 648), /** * * @@ -4456,7 +4969,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_ASSIGNMENT_NAME = 649; */ - INVENTORY_SHARE_ASSIGNMENT_NAME(224, 649), + INVENTORY_SHARE_ASSIGNMENT_NAME(249, 649), /** * * @@ -4475,7 +4988,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_OUTCOME = 603; */ - INVENTORY_SHARE_OUTCOME(225, 603), + INVENTORY_SHARE_OUTCOME(250, 603), /** * * @@ -4493,7 +5006,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_OUTCOME_NAME = 604; */ - INVENTORY_SHARE_OUTCOME_NAME(226, 604), + INVENTORY_SHARE_OUTCOME_NAME(251, 604), /** * * @@ -4512,7 +5025,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_PARTNER_AD_SERVER = 652; */ - INVENTORY_SHARE_PARTNER_AD_SERVER(227, 652), + INVENTORY_SHARE_PARTNER_AD_SERVER(252, 652), /** * * @@ -4530,7 +5043,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_PARTNER_AD_SERVER_NAME = 653; */ - INVENTORY_SHARE_PARTNER_AD_SERVER_NAME(228, 653), + INVENTORY_SHARE_PARTNER_AD_SERVER_NAME(253, 653), /** * * @@ -4548,7 +5061,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_TARGET_SHARE_PERCENT = 654; */ - INVENTORY_SHARE_TARGET_SHARE_PERCENT(229, 654), + INVENTORY_SHARE_TARGET_SHARE_PERCENT(254, 654), /** * * @@ -4567,7 +5080,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_TYPE = 650; */ - INVENTORY_SHARE_TYPE(230, 650), + INVENTORY_SHARE_TYPE(255, 650), /** * * @@ -4585,7 +5098,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_TYPE_NAME = 651; */ - INVENTORY_SHARE_TYPE_NAME(231, 651), + INVENTORY_SHARE_TYPE_NAME(256, 651), /** * * @@ -4605,7 +5118,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_TYPE = 19; */ - INVENTORY_TYPE(232, 19), + INVENTORY_TYPE(257, 19), /** * * @@ -4624,7 +5137,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_TYPE_NAME = 20; */ - INVENTORY_TYPE_NAME(233, 20), + INVENTORY_TYPE_NAME(258, 20), /** * * @@ -4642,7 +5155,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * IS_ADX_DIRECT = 382; */ - IS_ADX_DIRECT(234, 382), + IS_ADX_DIRECT(259, 382), /** * * @@ -4660,7 +5173,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * IS_CURATION_TARGETED = 574; */ - IS_CURATION_TARGETED(235, 574), + IS_CURATION_TARGETED(260, 574), /** * * @@ -4678,7 +5191,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * IS_DROPPED = 464; */ - IS_DROPPED(236, 464), + IS_DROPPED(261, 464), /** * * @@ -4696,7 +5209,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * IS_FIRST_LOOK_DEAL = 401; */ - IS_FIRST_LOOK_DEAL(237, 401), + IS_FIRST_LOOK_DEAL(262, 401), /** * * @@ -4714,7 +5227,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * KEY_VALUES_ID = 214; */ - KEY_VALUES_ID(238, 214), + KEY_VALUES_ID(263, 214), /** * * @@ -4732,7 +5245,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * KEY_VALUES_NAME = 215; */ - KEY_VALUES_NAME(239, 215), + KEY_VALUES_NAME(264, 215), + /** + * + * + *
+     * The custom criteria key-values specified in ad requests.
+     *
+     *
+     *
+     * Corresponds to "Key-values" in the Ad Manager UI.
+     *
+     * Compatible with the following report types:
+     *
+     * Data format: `STRING_LIST`
+     * 
+ * + * KEY_VALUES_SET = 713; + */ + KEY_VALUES_SET(265, 713), /** * * @@ -4750,7 +5281,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * LINE_ITEM_AGENCY = 663; */ - LINE_ITEM_AGENCY(240, 663), + LINE_ITEM_AGENCY(266, 663), /** * * @@ -4768,12 +5299,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * LINE_ITEM_ARCHIVED = 188; */ - LINE_ITEM_ARCHIVED(241, 188), + LINE_ITEM_ARCHIVED(267, 188), /** * * *
-     * Line item comanion delivery option ENUM value.
+     * Line item companion delivery option ENUM value.
      *
      *
      *
@@ -4787,12 +5318,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COMPANION_DELIVERY_OPTION = 204;
      */
-    LINE_ITEM_COMPANION_DELIVERY_OPTION(242, 204),
+    LINE_ITEM_COMPANION_DELIVERY_OPTION(268, 204),
     /**
      *
      *
      * 
-     * Localized line item comanion delivery option name.
+     * Localized line item companion delivery option name.
      *
      *
      *
@@ -4806,7 +5337,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205;
      */
-    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME(243, 205),
+    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME(269, 205),
     /**
      *
      *
@@ -4826,7 +5357,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COMPUTED_STATUS = 250;
      */
-    LINE_ITEM_COMPUTED_STATUS(244, 250),
+    LINE_ITEM_COMPUTED_STATUS(270, 250),
     /**
      *
      *
@@ -4845,7 +5376,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COMPUTED_STATUS_NAME = 251;
      */
-    LINE_ITEM_COMPUTED_STATUS_NAME(245, 251),
+    LINE_ITEM_COMPUTED_STATUS_NAME(271, 251),
     /**
      *
      *
@@ -4863,7 +5394,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CONTRACTED_QUANTITY = 92;
      */
-    LINE_ITEM_CONTRACTED_QUANTITY(246, 92),
+    LINE_ITEM_CONTRACTED_QUANTITY(272, 92),
     /**
      *
      *
@@ -4882,7 +5413,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COST_PER_UNIT = 85;
      */
-    LINE_ITEM_COST_PER_UNIT(247, 85),
+    LINE_ITEM_COST_PER_UNIT(273, 85),
     /**
      *
      *
@@ -4902,7 +5433,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COST_TYPE = 212;
      */
-    LINE_ITEM_COST_TYPE(248, 212),
+    LINE_ITEM_COST_TYPE(274, 212),
     /**
      *
      *
@@ -4921,7 +5452,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_COST_TYPE_NAME = 213;
      */
-    LINE_ITEM_COST_TYPE_NAME(249, 213),
+    LINE_ITEM_COST_TYPE_NAME(275, 213),
     /**
      *
      *
@@ -4939,7 +5470,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CREATIVE_END_DATE = 176;
      */
-    LINE_ITEM_CREATIVE_END_DATE(250, 176),
+    LINE_ITEM_CREATIVE_END_DATE(276, 176),
     /**
      *
      *
@@ -4958,7 +5489,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CREATIVE_ROTATION_TYPE = 189;
      */
-    LINE_ITEM_CREATIVE_ROTATION_TYPE(251, 189),
+    LINE_ITEM_CREATIVE_ROTATION_TYPE(277, 189),
     /**
      *
      *
@@ -4976,7 +5507,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190;
      */
-    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME(252, 190),
+    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME(278, 190),
     /**
      *
      *
@@ -4994,7 +5525,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CREATIVE_START_DATE = 175;
      */
-    LINE_ITEM_CREATIVE_START_DATE(253, 175),
+    LINE_ITEM_CREATIVE_START_DATE(279, 175),
     /**
      *
      *
@@ -5013,7 +5544,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CURRENCY_CODE = 180;
      */
-    LINE_ITEM_CURRENCY_CODE(254, 180),
+    LINE_ITEM_CURRENCY_CODE(280, 180),
     /**
      *
      *
@@ -5031,7 +5562,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_DELIVERY_INDICATOR = 87;
      */
-    LINE_ITEM_DELIVERY_INDICATOR(255, 87),
+    LINE_ITEM_DELIVERY_INDICATOR(281, 87),
     /**
      *
      *
@@ -5051,7 +5582,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_DELIVERY_RATE_TYPE = 191;
      */
-    LINE_ITEM_DELIVERY_RATE_TYPE(256, 191),
+    LINE_ITEM_DELIVERY_RATE_TYPE(282, 191),
     /**
      *
      *
@@ -5070,7 +5601,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192;
      */
-    LINE_ITEM_DELIVERY_RATE_TYPE_NAME(257, 192),
+    LINE_ITEM_DELIVERY_RATE_TYPE_NAME(283, 192),
     /**
      *
      *
@@ -5089,7 +5620,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_DISCOUNT_ABSOLUTE = 195;
      */
-    LINE_ITEM_DISCOUNT_ABSOLUTE(258, 195),
+    LINE_ITEM_DISCOUNT_ABSOLUTE(284, 195),
     /**
      *
      *
@@ -5107,7 +5638,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_DISCOUNT_PERCENTAGE = 196;
      */
-    LINE_ITEM_DISCOUNT_PERCENTAGE(259, 196),
+    LINE_ITEM_DISCOUNT_PERCENTAGE(285, 196),
     /**
      *
      *
@@ -5126,7 +5657,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_END_DATE = 81;
      */
-    LINE_ITEM_END_DATE(260, 81),
+    LINE_ITEM_END_DATE(286, 81),
     /**
      *
      *
@@ -5145,7 +5676,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_END_DATE_TIME = 83;
      */
-    LINE_ITEM_END_DATE_TIME(261, 83),
+    LINE_ITEM_END_DATE_TIME(287, 83),
     /**
      *
      *
@@ -5164,7 +5695,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_ENVIRONMENT_TYPE = 201;
      */
-    LINE_ITEM_ENVIRONMENT_TYPE(262, 201),
+    LINE_ITEM_ENVIRONMENT_TYPE(288, 201),
     /**
      *
      *
@@ -5182,7 +5713,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202;
      */
-    LINE_ITEM_ENVIRONMENT_TYPE_NAME(263, 202),
+    LINE_ITEM_ENVIRONMENT_TYPE_NAME(289, 202),
     /**
      *
      *
@@ -5200,7 +5731,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_EXTERNAL_DEAL_ID = 97;
      */
-    LINE_ITEM_EXTERNAL_DEAL_ID(264, 97),
+    LINE_ITEM_EXTERNAL_DEAL_ID(290, 97),
     /**
      *
      *
@@ -5218,7 +5749,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_EXTERNAL_ID = 86;
      */
-    LINE_ITEM_EXTERNAL_ID(265, 86),
+    LINE_ITEM_EXTERNAL_ID(291, 86),
     /**
      *
      *
@@ -5236,7 +5767,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_FREQUENCY_CAP = 256;
      */
-    LINE_ITEM_FREQUENCY_CAP(266, 256),
+    LINE_ITEM_FREQUENCY_CAP(292, 256),
     /**
      *
      *
@@ -5255,7 +5786,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_ID = 1;
      */
-    LINE_ITEM_ID(267, 1),
+    LINE_ITEM_ID(293, 1),
     /**
      *
      *
@@ -5273,7 +5804,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_LABELS = 667;
      */
-    LINE_ITEM_LABELS(268, 667),
+    LINE_ITEM_LABELS(294, 667),
     /**
      *
      *
@@ -5291,7 +5822,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_LABEL_IDS = 665;
      */
-    LINE_ITEM_LABEL_IDS(269, 665),
+    LINE_ITEM_LABEL_IDS(295, 665),
     /**
      *
      *
@@ -5309,7 +5840,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_LAST_MODIFIED_BY_APP = 181;
      */
-    LINE_ITEM_LAST_MODIFIED_BY_APP(270, 181),
+    LINE_ITEM_LAST_MODIFIED_BY_APP(296, 181),
     /**
      *
      *
@@ -5328,7 +5859,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_LIFETIME_CLICKS = 95;
      */
-    LINE_ITEM_LIFETIME_CLICKS(271, 95),
+    LINE_ITEM_LIFETIME_CLICKS(297, 95),
     /**
      *
      *
@@ -5348,7 +5879,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_LIFETIME_IMPRESSIONS = 94;
      */
-    LINE_ITEM_LIFETIME_IMPRESSIONS(272, 94),
+    LINE_ITEM_LIFETIME_IMPRESSIONS(298, 94),
     /**
      *
      *
@@ -5369,7 +5900,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96;
      */
-    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS(273, 96),
+    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS(299, 96),
     /**
      *
      *
@@ -5389,7 +5920,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_MAKEGOOD = 89;
      */
-    LINE_ITEM_MAKEGOOD(274, 89),
+    LINE_ITEM_MAKEGOOD(300, 89),
     /**
      *
      *
@@ -5408,7 +5939,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_NAME = 2;
      */
-    LINE_ITEM_NAME(275, 2),
+    LINE_ITEM_NAME(301, 2),
     /**
      *
      *
@@ -5427,12 +5958,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98;
      */
-    LINE_ITEM_NON_CPD_BOOKED_REVENUE(276, 98),
+    LINE_ITEM_NON_CPD_BOOKED_REVENUE(302, 98),
     /**
      *
      *
      * 
-     * Whether a Line item is eligible for opitimization.
+     * Whether a Line item is eligible for optimization.
      *
      *
      *
@@ -5445,7 +5976,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_OPTIMIZABLE = 90;
      */
-    LINE_ITEM_OPTIMIZABLE(277, 90),
+    LINE_ITEM_OPTIMIZABLE(303, 90),
     /**
      *
      *
@@ -5464,7 +5995,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PO_NUMBER = 669;
      */
-    LINE_ITEM_PO_NUMBER(278, 669),
+    LINE_ITEM_PO_NUMBER(304, 669),
     /**
      *
      *
@@ -5483,7 +6014,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIMARY_GOAL_TYPE = 210;
      */
-    LINE_ITEM_PRIMARY_GOAL_TYPE(279, 210),
+    LINE_ITEM_PRIMARY_GOAL_TYPE(305, 210),
     /**
      *
      *
@@ -5501,7 +6032,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211;
      */
-    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME(280, 211),
+    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME(306, 211),
     /**
      *
      *
@@ -5526,7 +6057,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93;
      */
-    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE(281, 93),
+    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE(307, 93),
     /**
      *
      *
@@ -5550,7 +6081,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396;
      */
-    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE(282, 396),
+    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE(308, 396),
     /**
      *
      *
@@ -5569,7 +6100,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208;
      */
-    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE(283, 208),
+    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE(309, 208),
     /**
      *
      *
@@ -5587,7 +6118,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209;
      */
-    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME(284, 209),
+    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME(310, 209),
     /**
      *
      *
@@ -5608,7 +6139,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_PRIORITY = 24;
      */
-    LINE_ITEM_PRIORITY(285, 24),
+    LINE_ITEM_PRIORITY(311, 24),
     /**
      *
      *
@@ -5628,7 +6159,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_RESERVATION_STATUS = 304;
      */
-    LINE_ITEM_RESERVATION_STATUS(286, 304),
+    LINE_ITEM_RESERVATION_STATUS(312, 304),
     /**
      *
      *
@@ -5647,7 +6178,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_RESERVATION_STATUS_NAME = 305;
      */
-    LINE_ITEM_RESERVATION_STATUS_NAME(287, 305),
+    LINE_ITEM_RESERVATION_STATUS_NAME(313, 305),
     /**
      *
      *
@@ -5665,7 +6196,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_SALESPERSON = 671;
      */
-    LINE_ITEM_SALESPERSON(288, 671),
+    LINE_ITEM_SALESPERSON(314, 671),
     /**
      *
      *
@@ -5683,7 +6214,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_SECONDARY_SALESPEOPLE = 673;
      */
-    LINE_ITEM_SECONDARY_SALESPEOPLE(289, 673),
+    LINE_ITEM_SECONDARY_SALESPEOPLE(315, 673),
     /**
      *
      *
@@ -5701,7 +6232,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_SECONDARY_TRAFFICKERS = 675;
      */
-    LINE_ITEM_SECONDARY_TRAFFICKERS(290, 675),
+    LINE_ITEM_SECONDARY_TRAFFICKERS(316, 675),
     /**
      *
      *
@@ -5720,7 +6251,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_START_DATE = 82;
      */
-    LINE_ITEM_START_DATE(291, 82),
+    LINE_ITEM_START_DATE(317, 82),
     /**
      *
      *
@@ -5739,7 +6270,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_START_DATE_TIME = 84;
      */
-    LINE_ITEM_START_DATE_TIME(292, 84),
+    LINE_ITEM_START_DATE_TIME(318, 84),
     /**
      *
      *
@@ -5757,7 +6288,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_TRAFFICKER = 677;
      */
-    LINE_ITEM_TRAFFICKER(293, 677),
+    LINE_ITEM_TRAFFICKER(319, 677),
     /**
      *
      *
@@ -5777,7 +6308,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_TYPE = 193;
      */
-    LINE_ITEM_TYPE(294, 193),
+    LINE_ITEM_TYPE(320, 193),
     /**
      *
      *
@@ -5796,7 +6327,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_TYPE_NAME = 194;
      */
-    LINE_ITEM_TYPE_NAME(295, 194),
+    LINE_ITEM_TYPE_NAME(321, 194),
     /**
      *
      *
@@ -5816,7 +6347,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_UNLIMITED_END = 187;
      */
-    LINE_ITEM_UNLIMITED_END(296, 187),
+    LINE_ITEM_UNLIMITED_END(322, 187),
     /**
      *
      *
@@ -5835,7 +6366,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_VALUE_COST_PER_UNIT = 88;
      */
-    LINE_ITEM_VALUE_COST_PER_UNIT(297, 88),
+    LINE_ITEM_VALUE_COST_PER_UNIT(323, 88),
     /**
      *
      *
@@ -5853,7 +6384,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_WEB_PROPERTY_CODE = 179;
      */
-    LINE_ITEM_WEB_PROPERTY_CODE(298, 179),
+    LINE_ITEM_WEB_PROPERTY_CODE(324, 179),
     /**
      *
      *
@@ -5872,7 +6403,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MASTER_COMPANION_CREATIVE_ID = 140;
      */
-    MASTER_COMPANION_CREATIVE_ID(299, 140),
+    MASTER_COMPANION_CREATIVE_ID(325, 140),
     /**
      *
      *
@@ -5891,7 +6422,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MASTER_COMPANION_CREATIVE_NAME = 141;
      */
-    MASTER_COMPANION_CREATIVE_NAME(300, 141),
+    MASTER_COMPANION_CREATIVE_NAME(326, 141),
     /**
      *
      *
@@ -5910,7 +6441,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MEDIATION_TYPE = 701;
      */
-    MEDIATION_TYPE(301, 701),
+    MEDIATION_TYPE(327, 701),
     /**
      *
      *
@@ -5928,7 +6459,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MEDIATION_TYPE_NAME = 754;
      */
-    MEDIATION_TYPE_NAME(302, 754),
+    MEDIATION_TYPE_NAME(328, 754),
     /**
      *
      *
@@ -5947,7 +6478,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MEDIATION_YIELD_PARTNER_ID = 661;
      */
-    MEDIATION_YIELD_PARTNER_ID(303, 661),
+    MEDIATION_YIELD_PARTNER_ID(329, 661),
     /**
      *
      *
@@ -5965,7 +6496,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MEDIATION_YIELD_PARTNER_NAME = 662;
      */
-    MEDIATION_YIELD_PARTNER_NAME(304, 662),
+    MEDIATION_YIELD_PARTNER_NAME(330, 662),
     /**
      *
      *
@@ -5983,7 +6514,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * METRO_ID = 453;
      */
-    METRO_ID(305, 453),
+    METRO_ID(331, 453),
     /**
      *
      *
@@ -6001,7 +6532,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * METRO_NAME = 454;
      */
-    METRO_NAME(306, 454),
+    METRO_NAME(332, 454),
     /**
      *
      *
@@ -6020,7 +6551,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_FREE = 128;
      */
-    MOBILE_APP_FREE(307, 128),
+    MOBILE_APP_FREE(333, 128),
     /**
      *
      *
@@ -6039,7 +6570,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_ICON_URL = 129;
      */
-    MOBILE_APP_ICON_URL(308, 129),
+    MOBILE_APP_ICON_URL(334, 129),
     /**
      *
      *
@@ -6058,7 +6589,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_ID = 123;
      */
-    MOBILE_APP_ID(309, 123),
+    MOBILE_APP_ID(335, 123),
     /**
      *
      *
@@ -6077,7 +6608,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_NAME = 127;
      */
-    MOBILE_APP_NAME(310, 127),
+    MOBILE_APP_NAME(336, 127),
     /**
      *
      *
@@ -6096,7 +6627,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_OWNERSHIP_STATUS = 311;
      */
-    MOBILE_APP_OWNERSHIP_STATUS(311, 311),
+    MOBILE_APP_OWNERSHIP_STATUS(337, 311),
     /**
      *
      *
@@ -6114,7 +6645,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_OWNERSHIP_STATUS_NAME = 312;
      */
-    MOBILE_APP_OWNERSHIP_STATUS_NAME(312, 312),
+    MOBILE_APP_OWNERSHIP_STATUS_NAME(338, 312),
     /**
      *
      *
@@ -6133,7 +6664,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_STORE = 125;
      */
-    MOBILE_APP_STORE(313, 125),
+    MOBILE_APP_STORE(339, 125),
     /**
      *
      *
@@ -6151,7 +6682,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_APP_STORE_NAME = 245;
      */
-    MOBILE_APP_STORE_NAME(314, 245),
+    MOBILE_APP_STORE_NAME(340, 245),
     /**
      *
      *
@@ -6177,7 +6708,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_INVENTORY_TYPE = 99;
      */
-    MOBILE_INVENTORY_TYPE(315, 99),
+    MOBILE_INVENTORY_TYPE(341, 99),
     /**
      *
      *
@@ -6198,7 +6729,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * MOBILE_INVENTORY_TYPE_NAME = 21;
      */
-    MOBILE_INVENTORY_TYPE_NAME(316, 21),
+    MOBILE_INVENTORY_TYPE_NAME(342, 21),
     /**
      *
      *
@@ -6210,14 +6741,15 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      * Corresponds to "Rendering SDK value" in the Ad Manager UI (when showing
      * API fields).
      *
-     * Compatible with the following report types: `HISTORICAL`
+     * Compatible with the following report types: `HISTORICAL`,
+     * `REVENUE_VERIFICATION`
      *
      * Data format: `ENUM`
      * 
* * MOBILE_RENDERING_SDK = 646; */ - MOBILE_RENDERING_SDK(317, 646), + MOBILE_RENDERING_SDK(343, 646), /** * * @@ -6228,14 +6760,15 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Rendering SDK" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
* * MOBILE_RENDERING_SDK_NAME = 647; */ - MOBILE_RENDERING_SDK_NAME(318, 647), + MOBILE_RENDERING_SDK_NAME(344, 647), /** * * @@ -6253,7 +6786,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * MOBILE_SDK_MAJOR_VERSION = 692; */ - MOBILE_SDK_MAJOR_VERSION(319, 692), + MOBILE_SDK_MAJOR_VERSION(345, 692), /** * * @@ -6271,7 +6804,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * MOBILE_SDK_MINOR_VERSION = 693; */ - MOBILE_SDK_MINOR_VERSION(320, 693), + MOBILE_SDK_MINOR_VERSION(346, 693), /** * * @@ -6289,7 +6822,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * MOBILE_SDK_VERSION_NAME = 130; */ - MOBILE_SDK_VERSION_NAME(321, 130), + MOBILE_SDK_VERSION_NAME(347, 130), /** * * @@ -6301,14 +6834,14 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Corresponds to "Month and year" in the Ad Manager UI. * * Compatible with the following report types: `HISTORICAL`, `REACH`, - * `PRIVACY_AND_MESSAGING` + * `PRIVACY_AND_MESSAGING`, `REVENUE_VERIFICATION`, `PARTNER_FINANCE` * * Data format: `INTEGER` *
* * MONTH_YEAR = 6; */ - MONTH_YEAR(322, 6), + MONTH_YEAR(348, 6), /** * * @@ -6326,7 +6859,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * NATIVE_AD_FORMAT_ID = 255; */ - NATIVE_AD_FORMAT_ID(323, 255), + NATIVE_AD_FORMAT_ID(349, 255), /** * * @@ -6344,7 +6877,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * NATIVE_AD_FORMAT_NAME = 254; */ - NATIVE_AD_FORMAT_NAME(324, 254), + NATIVE_AD_FORMAT_NAME(350, 254), /** * * @@ -6362,7 +6895,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * NATIVE_STYLE_ID = 253; */ - NATIVE_STYLE_ID(325, 253), + NATIVE_STYLE_ID(351, 253), /** * * @@ -6380,7 +6913,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * NATIVE_STYLE_NAME = 252; */ - NATIVE_STYLE_NAME(326, 252), + NATIVE_STYLE_NAME(352, 252), /** * * @@ -6399,7 +6932,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * NO_FILL_REASON_CATEGORY = 586; */ - NO_FILL_REASON_CATEGORY(327, 586), + NO_FILL_REASON_CATEGORY(353, 586), /** * * @@ -6417,7 +6950,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * NO_FILL_REASON_CATEGORY_NAME = 587; */ - NO_FILL_REASON_CATEGORY_NAME(328, 587), + NO_FILL_REASON_CATEGORY_NAME(354, 587), /** * * @@ -6436,7 +6969,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * OPERATING_SYSTEM_CATEGORY = 117; */ - OPERATING_SYSTEM_CATEGORY(329, 117), + OPERATING_SYSTEM_CATEGORY(355, 117), /** * * @@ -6454,7 +6987,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * OPERATING_SYSTEM_CATEGORY_NAME = 118; */ - OPERATING_SYSTEM_CATEGORY_NAME(330, 118), + OPERATING_SYSTEM_CATEGORY_NAME(356, 118), /** * * @@ -6472,7 +7005,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * OPERATING_SYSTEM_VERSION_ID = 238; */ - OPERATING_SYSTEM_VERSION_ID(331, 238), + OPERATING_SYSTEM_VERSION_ID(357, 238), /** * * @@ -6490,7 +7023,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * OPERATING_SYSTEM_VERSION_NAME = 237; */ - OPERATING_SYSTEM_VERSION_NAME(332, 237), + OPERATING_SYSTEM_VERSION_NAME(358, 237), /** * * @@ -6509,7 +7042,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * OPTIMIZATION_TYPE = 639; */ - OPTIMIZATION_TYPE(333, 639), + OPTIMIZATION_TYPE(359, 639), /** * * @@ -6527,7 +7060,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * OPTIMIZATION_TYPE_NAME = 640; */ - OPTIMIZATION_TYPE_NAME(334, 640), + OPTIMIZATION_TYPE_NAME(360, 640), /** * * @@ -6545,7 +7078,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_AGENCY = 150; */ - ORDER_AGENCY(335, 150), + ORDER_AGENCY(361, 150), /** * * @@ -6563,7 +7096,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_AGENCY_ID = 151; */ - ORDER_AGENCY_ID(336, 151), + ORDER_AGENCY_ID(362, 151), /** * * @@ -6581,7 +7114,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_BOOKED_CPC = 152; */ - ORDER_BOOKED_CPC(337, 152), + ORDER_BOOKED_CPC(363, 152), /** * * @@ -6599,7 +7132,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_BOOKED_CPM = 153; */ - ORDER_BOOKED_CPM(338, 153), + ORDER_BOOKED_CPM(364, 153), /** * * @@ -6618,7 +7151,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_DELIVERY_STATUS = 231; */ - ORDER_DELIVERY_STATUS(339, 231), + ORDER_DELIVERY_STATUS(365, 231), /** * * @@ -6636,7 +7169,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_DELIVERY_STATUS_NAME = 239; */ - ORDER_DELIVERY_STATUS_NAME(340, 239), + ORDER_DELIVERY_STATUS_NAME(366, 239), /** * * @@ -6655,7 +7188,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_END_DATE = 154; */ - ORDER_END_DATE(341, 154), + ORDER_END_DATE(367, 154), /** * * @@ -6674,7 +7207,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_END_DATE_TIME = 155; */ - ORDER_END_DATE_TIME(342, 155), + ORDER_END_DATE_TIME(368, 155), /** * * @@ -6692,7 +7225,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_EXTERNAL_ID = 156; */ - ORDER_EXTERNAL_ID(343, 156), + ORDER_EXTERNAL_ID(369, 156), /** * * @@ -6711,7 +7244,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_ID = 7; */ - ORDER_ID(344, 7), + ORDER_ID(370, 7), /** * * @@ -6729,7 +7262,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_LABELS = 170; */ - ORDER_LABELS(345, 170), + ORDER_LABELS(371, 170), /** * * @@ -6747,7 +7280,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_LABEL_IDS = 171; */ - ORDER_LABEL_IDS(346, 171), + ORDER_LABEL_IDS(372, 171), /** * * @@ -6766,7 +7299,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_LIFETIME_CLICKS = 158; */ - ORDER_LIFETIME_CLICKS(347, 158), + ORDER_LIFETIME_CLICKS(373, 158), /** * * @@ -6785,7 +7318,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_LIFETIME_IMPRESSIONS = 159; */ - ORDER_LIFETIME_IMPRESSIONS(348, 159), + ORDER_LIFETIME_IMPRESSIONS(374, 159), /** * * @@ -6804,7 +7337,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_NAME = 8; */ - ORDER_NAME(349, 8), + ORDER_NAME(375, 8), /** * * @@ -6823,7 +7356,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_PO_NUMBER = 160; */ - ORDER_PO_NUMBER(350, 160), + ORDER_PO_NUMBER(376, 160), /** * * @@ -6841,7 +7374,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_PROGRAMMATIC = 157; */ - ORDER_PROGRAMMATIC(351, 157), + ORDER_PROGRAMMATIC(377, 157), /** * * @@ -6859,7 +7392,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_SALESPERSON = 161; */ - ORDER_SALESPERSON(352, 161), + ORDER_SALESPERSON(378, 161), /** * * @@ -6877,7 +7410,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_SALESPERSON_ID = 629; */ - ORDER_SALESPERSON_ID(353, 629), + ORDER_SALESPERSON_ID(379, 629), /** * * @@ -6895,7 +7428,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_SECONDARY_SALESPEOPLE = 164; */ - ORDER_SECONDARY_SALESPEOPLE(354, 164), + ORDER_SECONDARY_SALESPEOPLE(380, 164), /** * * @@ -6913,7 +7446,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_SECONDARY_SALESPEOPLE_ID = 165; */ - ORDER_SECONDARY_SALESPEOPLE_ID(355, 165), + ORDER_SECONDARY_SALESPEOPLE_ID(381, 165), /** * * @@ -6931,7 +7464,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_SECONDARY_TRAFFICKERS = 166; */ - ORDER_SECONDARY_TRAFFICKERS(356, 166), + ORDER_SECONDARY_TRAFFICKERS(382, 166), /** * * @@ -6949,7 +7482,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_SECONDARY_TRAFFICKERS_ID = 167; */ - ORDER_SECONDARY_TRAFFICKERS_ID(357, 167), + ORDER_SECONDARY_TRAFFICKERS_ID(383, 167), /** * * @@ -6968,7 +7501,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_START_DATE = 168; */ - ORDER_START_DATE(358, 168), + ORDER_START_DATE(384, 168), /** * * @@ -6987,7 +7520,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_START_DATE_TIME = 169; */ - ORDER_START_DATE_TIME(359, 169), + ORDER_START_DATE_TIME(385, 169), /** * * @@ -7005,7 +7538,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_TRAFFICKER = 162; */ - ORDER_TRAFFICKER(360, 162), + ORDER_TRAFFICKER(386, 162), /** * * @@ -7023,7 +7556,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_TRAFFICKER_ID = 163; */ - ORDER_TRAFFICKER_ID(361, 163), + ORDER_TRAFFICKER_ID(387, 163), /** * * @@ -7043,7 +7576,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * ORDER_UNLIMITED_END = 203; */ - ORDER_UNLIMITED_END(362, 203), + ORDER_UNLIMITED_END(388, 203), /** * * @@ -7062,7 +7595,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PAGE_PATH = 511; */ - PAGE_PATH(363, 511), + PAGE_PATH(389, 511), /** * * @@ -7081,7 +7614,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PAGE_TITLE_AND_SCREEN_CLASS = 512; */ - PAGE_TITLE_AND_SCREEN_CLASS(364, 512), + PAGE_TITLE_AND_SCREEN_CLASS(390, 512), /** * * @@ -7099,7 +7632,83 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PAGE_TITLE_AND_SCREEN_NAME = 513; */ - PAGE_TITLE_AND_SCREEN_NAME(365, 513), + PAGE_TITLE_AND_SCREEN_NAME(391, 513), + /** + * + * + *
+     * The ID of a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management assignment ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_ASSIGNMENT_ID = 657; + */ + PARTNER_MANAGEMENT_ASSIGNMENT_ID(392, 657), + /** + * + * + *
+     * The name of a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management assignment" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `STRING`
+     * 
+ * + * PARTNER_MANAGEMENT_ASSIGNMENT_NAME = 658; + */ + PARTNER_MANAGEMENT_ASSIGNMENT_NAME(393, 658), + /** + * + * + *
+     * The ID of a partner in a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_ID = 655; + */ + PARTNER_MANAGEMENT_PARTNER_ID(394, 655), + /** + * + * + *
+     * The name of a partner in a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `STRING`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_NAME = 656; + */ + PARTNER_MANAGEMENT_PARTNER_NAME(395, 656), /** * * @@ -7117,7 +7726,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_ID = 113; */ - PLACEMENT_ID(366, 113), + PLACEMENT_ID(396, 113), /** * * @@ -7135,7 +7744,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_ID_ALL = 144; */ - PLACEMENT_ID_ALL(367, 144), + PLACEMENT_ID_ALL(397, 144), /** * * @@ -7153,7 +7762,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_NAME = 114; */ - PLACEMENT_NAME(368, 114), + PLACEMENT_NAME(398, 114), /** * * @@ -7171,7 +7780,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_NAME_ALL = 145; */ - PLACEMENT_NAME_ALL(369, 145), + PLACEMENT_NAME_ALL(399, 145), /** * * @@ -7190,7 +7799,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_STATUS = 362; */ - PLACEMENT_STATUS(370, 362), + PLACEMENT_STATUS(400, 362), /** * * @@ -7208,7 +7817,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_STATUS_NAME = 364; */ - PLACEMENT_STATUS_NAME(371, 364), + PLACEMENT_STATUS_NAME(401, 364), /** * * @@ -7227,7 +7836,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PLACEMENT_STATUS_NAME_ALL = 365; */ - PLACEMENT_STATUS_NAME_ALL(372, 365), + PLACEMENT_STATUS_NAME_ALL(402, 365), /** * * @@ -7245,7 +7854,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * POSTAL_CODE_ID = 455; */ - POSTAL_CODE_ID(373, 455), + POSTAL_CODE_ID(403, 455), /** * * @@ -7263,7 +7872,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * POSTAL_CODE_NAME = 456; */ - POSTAL_CODE_NAME(374, 456), + POSTAL_CODE_NAME(404, 456), /** * * @@ -7283,7 +7892,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PPID_STATUS = 406; */ - PPID_STATUS(375, 406), + PPID_STATUS(405, 406), /** * * @@ -7302,7 +7911,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PPID_STATUS_NAME = 407; */ - PPID_STATUS_NAME(376, 407), + PPID_STATUS_NAME(406, 407), /** * * @@ -7321,7 +7930,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PREDICTED_VIEWABILITY_BUCKET = 633; */ - PREDICTED_VIEWABILITY_BUCKET(377, 633), + PREDICTED_VIEWABILITY_BUCKET(407, 633), /** * * @@ -7339,7 +7948,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PREDICTED_VIEWABILITY_BUCKET_NAME = 634; */ - PREDICTED_VIEWABILITY_BUCKET_NAME(378, 634), + PREDICTED_VIEWABILITY_BUCKET_NAME(408, 634), /** * * @@ -7357,7 +7966,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PRESENTED_SECURE_SIGNAL_ID = 495; */ - PRESENTED_SECURE_SIGNAL_ID(379, 495), + PRESENTED_SECURE_SIGNAL_ID(409, 495), /** * * @@ -7375,7 +7984,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PRESENTED_SECURE_SIGNAL_NAME = 496; */ - PRESENTED_SECURE_SIGNAL_NAME(380, 496), + PRESENTED_SECURE_SIGNAL_NAME(410, 496), /** * * @@ -7394,7 +8003,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PRIMARY_PERSONALIZATION_ID_TYPE = 408; */ - PRIMARY_PERSONALIZATION_ID_TYPE(381, 408), + PRIMARY_PERSONALIZATION_ID_TYPE(411, 408), /** * * @@ -7412,7 +8021,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PRIMARY_PERSONALIZATION_ID_TYPE_NAME = 409; */ - PRIMARY_PERSONALIZATION_ID_TYPE_NAME(382, 409), + PRIMARY_PERSONALIZATION_ID_TYPE_NAME(412, 409), /** * * @@ -7425,14 +8034,15 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Corresponds to "Programmatic channel value" in the Ad Manager UI (when * showing API fields). * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `ENUM` * * * PROGRAMMATIC_CHANNEL = 13; */ - PROGRAMMATIC_CHANNEL(385, 13), + PROGRAMMATIC_CHANNEL(415, 13), /** * * @@ -7444,14 +8054,15 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Programmatic channel" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL`, `REACH` + * Compatible with the following report types: `HISTORICAL`, `REACH`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` * * * PROGRAMMATIC_CHANNEL_NAME = 14; */ - PROGRAMMATIC_CHANNEL_NAME(386, 14), + PROGRAMMATIC_CHANNEL_NAME(416, 14), /** * * @@ -7470,7 +8081,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_EXTERNAL_CODE = 410; */ - PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_EXTERNAL_CODE(387, 410), + PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_EXTERNAL_CODE(417, 410), /** * * @@ -7489,7 +8100,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_IDS = 546; */ - PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_IDS(388, 546), + PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_IDS(418, 546), /** * * @@ -7508,7 +8119,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_NAME = 412; */ - PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_NAME(389, 412), + PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_NAME(419, 412), /** * * @@ -7527,7 +8138,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_TIER = 413; */ - PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_TIER(390, 413), + PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_TIER(420, 413), /** * * @@ -7546,7 +8157,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_TYPE = 414; */ - PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_TYPE(391, 414), + PUBLISHER_PROVIDED_SIGNALS_ALL_LEVELS_TYPE(421, 414), /** * * @@ -7565,7 +8176,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_DELIVERED_EXTERNAL_CODE = 425; */ - PUBLISHER_PROVIDED_SIGNALS_DELIVERED_EXTERNAL_CODE(392, 425), + PUBLISHER_PROVIDED_SIGNALS_DELIVERED_EXTERNAL_CODE(422, 425), /** * * @@ -7584,7 +8195,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_DELIVERED_IDS = 545; */ - PUBLISHER_PROVIDED_SIGNALS_DELIVERED_IDS(393, 545), + PUBLISHER_PROVIDED_SIGNALS_DELIVERED_IDS(423, 545), /** * * @@ -7603,7 +8214,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_DELIVERED_NAME = 427; */ - PUBLISHER_PROVIDED_SIGNALS_DELIVERED_NAME(394, 427), + PUBLISHER_PROVIDED_SIGNALS_DELIVERED_NAME(424, 427), /** * * @@ -7622,7 +8233,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_DELIVERED_TIER = 428; */ - PUBLISHER_PROVIDED_SIGNALS_DELIVERED_TIER(395, 428), + PUBLISHER_PROVIDED_SIGNALS_DELIVERED_TIER(425, 428), /** * * @@ -7641,7 +8252,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_DELIVERED_TYPE = 429; */ - PUBLISHER_PROVIDED_SIGNALS_DELIVERED_TYPE(396, 429), + PUBLISHER_PROVIDED_SIGNALS_DELIVERED_TYPE(426, 429), /** * * @@ -7660,7 +8271,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_EXTERNAL_CODE = 415; */ - PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_EXTERNAL_CODE(397, 415), + PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_EXTERNAL_CODE(427, 415), /** * * @@ -7679,7 +8290,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_ID = 416; */ - PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_ID(398, 416), + PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_ID(428, 416), /** * * @@ -7698,7 +8309,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_NAME = 417; */ - PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_NAME(399, 417), + PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_NAME(429, 417), /** * * @@ -7717,7 +8328,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_TIER = 418; */ - PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_TIER(400, 418), + PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_TIER(430, 418), /** * * @@ -7736,7 +8347,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_TYPE = 419; */ - PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_TYPE(401, 419), + PUBLISHER_PROVIDED_SIGNALS_TOP_LEVEL_TYPE(431, 419), /** * * @@ -7755,7 +8366,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNAL_DATA_PROVIDER_ID = 136; */ - PUBLISHER_PROVIDED_SIGNAL_DATA_PROVIDER_ID(402, 136), + PUBLISHER_PROVIDED_SIGNAL_DATA_PROVIDER_ID(432, 136), /** * * @@ -7774,7 +8385,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * PUBLISHER_PROVIDED_SIGNAL_DATA_PROVIDER_NAME = 137; */ - PUBLISHER_PROVIDED_SIGNAL_DATA_PROVIDER_NAME(403, 137), + PUBLISHER_PROVIDED_SIGNAL_DATA_PROVIDER_NAME(433, 137), /** * * @@ -7794,7 +8405,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * REGION_ID = 457; */ - REGION_ID(404, 457), + REGION_ID(434, 457), /** * * @@ -7814,7 +8425,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * REGION_NAME = 458; */ - REGION_NAME(405, 458), + REGION_NAME(435, 458), /** * * @@ -7833,7 +8444,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * REJECTION_CLASS_CATEGORY = 590; */ - REJECTION_CLASS_CATEGORY(406, 590), + REJECTION_CLASS_CATEGORY(436, 590), /** * * @@ -7851,7 +8462,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * REJECTION_CLASS_CATEGORY_NAME = 591; */ - REJECTION_CLASS_CATEGORY_NAME(407, 591), + REJECTION_CLASS_CATEGORY_NAME(437, 591), /** * * @@ -7870,7 +8481,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * RENDERED_CREATIVE_SIZE = 343; */ - RENDERED_CREATIVE_SIZE(408, 343), + RENDERED_CREATIVE_SIZE(438, 343), /** * * @@ -7888,7 +8499,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * REQUESTED_AD_SIZES = 352; */ - REQUESTED_AD_SIZES(409, 352), + REQUESTED_AD_SIZES(439, 352), /** * * @@ -7907,12 +8518,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * REQUEST_TYPE = 146; */ - REQUEST_TYPE(410, 146), + REQUEST_TYPE(440, 146), /** * * *
-     * Request type locallized name
+     * Request type localized name
      *
      *
      *
@@ -7925,7 +8536,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * REQUEST_TYPE_NAME = 147;
      */
-    REQUEST_TYPE_NAME(411, 147),
+    REQUEST_TYPE_NAME(441, 147),
+    /**
+     *
+     *
+     * 
+     * Revenue Verification bidder-provided ID.
+     *
+     *
+     *
+     * Corresponds to "Revenue verification ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * REVENUE_VERIFICATION_ID = 645; + */ + REVENUE_VERIFICATION_ID(442, 645), /** * * @@ -7943,7 +8572,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597; */ - SERVER_SIDE_UNWRAPPING_ELIGIBLE(412, 597), + SERVER_SIDE_UNWRAPPING_ELIGIBLE(443, 597), /** * * @@ -7962,7 +8591,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * SERVING_RESTRICTION = 631; */ - SERVING_RESTRICTION(413, 631), + SERVING_RESTRICTION(444, 631), /** * * @@ -7980,7 +8609,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * SERVING_RESTRICTION_NAME = 632; */ - SERVING_RESTRICTION_NAME(414, 632), + SERVING_RESTRICTION_NAME(445, 632), /** * * @@ -7999,7 +8628,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * SITE = 387; */ - SITE(415, 387), + SITE(446, 387), /** * * @@ -8019,7 +8648,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TARGETING_ID = 232; */ - TARGETING_ID(416, 232), + TARGETING_ID(447, 232), /** * * @@ -8038,7 +8667,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TARGETING_NAME = 233; */ - TARGETING_NAME(417, 233), + TARGETING_NAME(448, 233), /** * * @@ -8057,7 +8686,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TARGETING_TYPE = 385; */ - TARGETING_TYPE(418, 385), + TARGETING_TYPE(449, 385), /** * * @@ -8075,7 +8704,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TARGETING_TYPE_NAME = 386; */ - TARGETING_TYPE_NAME(419, 386), + TARGETING_TYPE_NAME(450, 386), /** * * @@ -8095,7 +8724,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * THIRD_PARTY_ID_STATUS = 402; */ - THIRD_PARTY_ID_STATUS(420, 402), + THIRD_PARTY_ID_STATUS(451, 402), /** * * @@ -8114,7 +8743,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * THIRD_PARTY_ID_STATUS_NAME = 403; */ - THIRD_PARTY_ID_STATUS_NAME(421, 403), + THIRD_PARTY_ID_STATUS_NAME(452, 403), /** * * @@ -8133,7 +8762,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TOPICS_STATUS = 504; */ - TOPICS_STATUS(422, 504), + TOPICS_STATUS(453, 504), /** * * @@ -8151,7 +8780,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TOPICS_STATUS_NAME = 505; */ - TOPICS_STATUS_NAME(423, 505), + TOPICS_STATUS_NAME(454, 505), /** * * @@ -8170,7 +8799,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TOP_PRIVATE_DOMAIN = 444; */ - TOP_PRIVATE_DOMAIN(424, 444), + TOP_PRIVATE_DOMAIN(455, 444), /** * * @@ -8189,7 +8818,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TRAFFIC_SOURCE = 388; */ - TRAFFIC_SOURCE(425, 388), + TRAFFIC_SOURCE(456, 388), /** * * @@ -8207,7 +8836,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * TRAFFIC_SOURCE_NAME = 389; */ - TRAFFIC_SOURCE_NAME(426, 389), + TRAFFIC_SOURCE_NAME(457, 389), /** * * @@ -8225,7 +8854,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * UNIFIED_PRICING_RULE_ID = 393; */ - UNIFIED_PRICING_RULE_ID(427, 393), + UNIFIED_PRICING_RULE_ID(458, 393), /** * * @@ -8243,7 +8872,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * UNIFIED_PRICING_RULE_NAME = 394; */ - UNIFIED_PRICING_RULE_NAME(428, 394), + UNIFIED_PRICING_RULE_NAME(459, 394), /** * * @@ -8261,7 +8890,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * URL = 506; */ - URL(429, 506), + URL(460, 506), /** * * @@ -8279,7 +8908,44 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * URL_ID = 507; */ - URL_ID(430, 507), + URL_ID(461, 507), + /** + * + * + *
+     * The choice made in a user message.
+     *
+     *
+     *
+     * Corresponds to "User choice value" in the Ad Manager UI (when showing API
+     * fields).
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `ENUM`
+     * 
+ * + * USER_MESSAGES_CHOICE = 702; + */ + USER_MESSAGES_CHOICE(462, 702), + /** + * + * + *
+     * Localized name of the choice made in a user message.
+     *
+     *
+     *
+     * Corresponds to "User choice" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `STRING`
+     * 
+ * + * USER_MESSAGES_CHOICE_NAME = 703; + */ + USER_MESSAGES_CHOICE_NAME(463, 703), /** * * @@ -8298,7 +8964,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_ENTITLEMENT_SOURCE = 635; */ - USER_MESSAGES_ENTITLEMENT_SOURCE(431, 635), + USER_MESSAGES_ENTITLEMENT_SOURCE(464, 635), /** * * @@ -8316,7 +8982,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_ENTITLEMENT_SOURCE_NAME = 636; */ - USER_MESSAGES_ENTITLEMENT_SOURCE_NAME(432, 636), + USER_MESSAGES_ENTITLEMENT_SOURCE_NAME(465, 636), /** * * @@ -8335,7 +9001,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_ID = 637; */ - USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_ID(433, 637), + USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_ID(466, 637), /** * * @@ -8353,7 +9019,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_NAME = 638; */ - USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_NAME(434, 638), + USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_NAME(467, 638), /** * * @@ -8372,7 +9038,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VAST_VERSION = 554; */ - VAST_VERSION(435, 554), + VAST_VERSION(468, 554), /** * * @@ -8391,7 +9057,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VAST_VERSION_NAME = 555; */ - VAST_VERSION_NAME(436, 555), + VAST_VERSION_NAME(469, 555), /** * * @@ -8410,7 +9076,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_BREAK_TYPE = 556; */ - VIDEO_AD_BREAK_TYPE(437, 556), + VIDEO_AD_BREAK_TYPE(470, 556), /** * * @@ -8428,7 +9094,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_BREAK_TYPE_NAME = 557; */ - VIDEO_AD_BREAK_TYPE_NAME(438, 557), + VIDEO_AD_BREAK_TYPE_NAME(471, 557), /** * * @@ -8446,7 +9112,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_DURATION = 450; */ - VIDEO_AD_DURATION(439, 450), + VIDEO_AD_DURATION(472, 450), /** * * @@ -8465,7 +9131,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_FORMATS_RULE = 561; */ - VIDEO_AD_FORMATS_RULE(440, 561), + VIDEO_AD_FORMATS_RULE(473, 561), /** * * @@ -8484,7 +9150,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_FORMATS_RULE_ID = 560; */ - VIDEO_AD_FORMATS_RULE_ID(441, 560), + VIDEO_AD_FORMATS_RULE_ID(474, 560), /** * * @@ -8503,7 +9169,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_REQUEST_DURATION = 558; */ - VIDEO_AD_REQUEST_DURATION(442, 558), + VIDEO_AD_REQUEST_DURATION(475, 558), /** * * @@ -8521,7 +9187,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_REQUEST_DURATION_MIDPOINT_NAME = 751; */ - VIDEO_AD_REQUEST_DURATION_MIDPOINT_NAME(443, 751), + VIDEO_AD_REQUEST_DURATION_MIDPOINT_NAME(476, 751), /** * * @@ -8539,7 +9205,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_REQUEST_DURATION_NAME = 559; */ - VIDEO_AD_REQUEST_DURATION_NAME(444, 559), + VIDEO_AD_REQUEST_DURATION_NAME(477, 559), /** * * @@ -8558,7 +9224,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_REQUEST_SOURCE = 438; */ - VIDEO_AD_REQUEST_SOURCE(445, 438), + VIDEO_AD_REQUEST_SOURCE(478, 438), /** * * @@ -8576,7 +9242,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_REQUEST_SOURCE_NAME = 439; */ - VIDEO_AD_REQUEST_SOURCE_NAME(446, 439), + VIDEO_AD_REQUEST_SOURCE_NAME(479, 439), /** * * @@ -8595,7 +9261,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_TYPE = 432; */ - VIDEO_AD_TYPE(447, 432), + VIDEO_AD_TYPE(480, 432), /** * * @@ -8613,7 +9279,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_AD_TYPE_NAME = 433; */ - VIDEO_AD_TYPE_NAME(448, 433), + VIDEO_AD_TYPE_NAME(481, 433), /** * * @@ -8632,7 +9298,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_CONTINUOUS_PLAY_TYPE = 721; */ - VIDEO_CONTINUOUS_PLAY_TYPE(449, 721), + VIDEO_CONTINUOUS_PLAY_TYPE(482, 721), /** * * @@ -8650,7 +9316,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_CONTINUOUS_PLAY_TYPE_NAME = 722; */ - VIDEO_CONTINUOUS_PLAY_TYPE_NAME(450, 722), + VIDEO_CONTINUOUS_PLAY_TYPE_NAME(483, 722), /** * * @@ -8668,7 +9334,116 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_FALLBACK_POSITION = 530; */ - VIDEO_FALLBACK_POSITION(451, 530), + VIDEO_FALLBACK_POSITION(484, 530), + /** + * + * + *
+     * The duration of the ad break in seconds for a live stream event.
+     *
+     *
+     *
+     * Corresponds to "Ad break duration (seconds)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION = 547; + */ + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION(485, 547), + /** + * + * + *
+     * The ID of the ad break in a live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream ad break ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID = 548; + */ + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID(486, 548), + /** + * + * + *
+     * The name of the ad break in a live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream ad break" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME = 549; + */ + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME(487, 549), + /** + * + * + *
+     * The time of the ad break in a live stream event in the format of
+     *  YYYY-MM-DD HH:MM:SS+Timezone.
+     *
+     *
+     *
+     * Corresponds to "Ad break time" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `TIMESTAMP`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME = 550; + */ + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME(488, 550), + /** + * + * + *
+     * The ID of the live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_ID = 551; + */ + VIDEO_LIVE_STREAM_EVENT_ID(489, 551), + /** + * + * + *
+     * The name of the live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_NAME = 552; + */ + VIDEO_LIVE_STREAM_EVENT_NAME(490, 552), /** * * @@ -8687,7 +9462,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_MEASUREMENT_SOURCE = 601; */ - VIDEO_MEASUREMENT_SOURCE(452, 601), + VIDEO_MEASUREMENT_SOURCE(491, 601), /** * * @@ -8705,7 +9480,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_MEASUREMENT_SOURCE_NAME = 602; */ - VIDEO_MEASUREMENT_SOURCE_NAME(453, 602), + VIDEO_MEASUREMENT_SOURCE_NAME(492, 602), /** * * @@ -8724,7 +9499,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_PLCMT = 172; */ - VIDEO_PLCMT(454, 172), + VIDEO_PLCMT(493, 172), /** * * @@ -8742,7 +9517,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_PLCMT_NAME = 173; */ - VIDEO_PLCMT_NAME(455, 173), + VIDEO_PLCMT_NAME(494, 173), /** * * @@ -8760,7 +9535,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_POSITION_IN_POD = 538; */ - VIDEO_POSITION_IN_POD(456, 538), + VIDEO_POSITION_IN_POD(495, 538), /** * * @@ -8779,7 +9554,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_POSITION_OF_POD = 539; */ - VIDEO_POSITION_OF_POD(457, 539), + VIDEO_POSITION_OF_POD(496, 539), /** * * @@ -8798,7 +9573,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_SDK_VERSION = 440; */ - VIDEO_SDK_VERSION(458, 440), + VIDEO_SDK_VERSION(497, 440), /** * * @@ -8816,7 +9591,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_SDK_VERSION_NAME = 441; */ - VIDEO_SDK_VERSION_NAME(459, 441), + VIDEO_SDK_VERSION_NAME(498, 441), /** * * @@ -8835,7 +9610,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_STITCHER_TYPE = 752; */ - VIDEO_STITCHER_TYPE(460, 752), + VIDEO_STITCHER_TYPE(499, 752), /** * * @@ -8853,7 +9628,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_STITCHER_TYPE_NAME = 753; */ - VIDEO_STITCHER_TYPE_NAME(461, 753), + VIDEO_STITCHER_TYPE_NAME(500, 753), + /** + * + * + *
+     * Web property code
+     *
+     *
+     *
+     * Corresponds to "Web property code" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * WEB_PROPERTY_CODE = 730; + */ + WEB_PROPERTY_CODE(501, 730), /** * * @@ -8872,7 +9665,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * WEEK = 5; */ - WEEK(462, 5), + WEEK(502, 5), /** * * @@ -8890,7 +9683,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_BUYER_NAME = 184; */ - YIELD_GROUP_BUYER_NAME(463, 184), + YIELD_GROUP_BUYER_NAME(503, 184), /** * * @@ -8908,7 +9701,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_BUYER_TAG_NAME = 627; */ - YIELD_GROUP_BUYER_TAG_NAME(464, 627), + YIELD_GROUP_BUYER_TAG_NAME(504, 627), /** * * @@ -8927,7 +9720,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_ID = 182; */ - YIELD_GROUP_ID(465, 182), + YIELD_GROUP_ID(505, 182), /** * * @@ -8946,7 +9739,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_NAME = 183; */ - YIELD_GROUP_NAME(466, 183), + YIELD_GROUP_NAME(506, 183), /** * * @@ -8965,7 +9758,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YOUTUBE_AD_DURATION_BUCKET = 430; */ - YOUTUBE_AD_DURATION_BUCKET(467, 430), + YOUTUBE_AD_DURATION_BUCKET(507, 430), /** * * @@ -8983,7 +9776,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YOUTUBE_AD_DURATION_BUCKET_NAME = 431; */ - YOUTUBE_AD_DURATION_BUCKET_NAME(468, 431), + YOUTUBE_AD_DURATION_BUCKET_NAME(508, 431), /** * * @@ -9002,12 +9795,12 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * YOUTUBE_AD_TYPE = 399; */ - YOUTUBE_AD_TYPE(469, 399), + YOUTUBE_AD_TYPE(509, 399), /** * * *
-     * YouTube instream Ad Type locallized name.
+     * YouTube instream Ad Type localized name.
      *
      *
      *
@@ -9020,7 +9813,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * YOUTUBE_AD_TYPE_NAME = 400;
      */
-    YOUTUBE_AD_TYPE_NAME(470, 400),
+    YOUTUBE_AD_TYPE_NAME(510, 400),
     /**
      *
      *
@@ -9031,7 +9824,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10000;
      */
-    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID(471, 10000),
+    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID(511, 10000),
     /**
      *
      *
@@ -9042,7 +9835,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10001;
      */
-    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID(472, 10001),
+    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID(512, 10001),
     /**
      *
      *
@@ -9053,7 +9846,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10002;
      */
-    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID(473, 10002),
+    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID(513, 10002),
     /**
      *
      *
@@ -9064,7 +9857,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10003;
      */
-    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID(474, 10003),
+    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID(514, 10003),
     /**
      *
      *
@@ -9075,7 +9868,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10004;
      */
-    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID(475, 10004),
+    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID(515, 10004),
     /**
      *
      *
@@ -9086,7 +9879,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10005;
      */
-    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID(476, 10005),
+    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID(516, 10005),
     /**
      *
      *
@@ -9097,7 +9890,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10006;
      */
-    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID(477, 10006),
+    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID(517, 10006),
     /**
      *
      *
@@ -9108,7 +9901,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10007;
      */
-    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID(478, 10007),
+    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID(518, 10007),
     /**
      *
      *
@@ -9119,7 +9912,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10008;
      */
-    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID(479, 10008),
+    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID(519, 10008),
     /**
      *
      *
@@ -9130,7 +9923,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10009;
      */
-    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID(480, 10009),
+    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID(520, 10009),
     /**
      *
      *
@@ -9141,7 +9934,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10010;
      */
-    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID(481, 10010),
+    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID(521, 10010),
     /**
      *
      *
@@ -9152,7 +9945,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10011;
      */
-    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID(482, 10011),
+    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID(522, 10011),
     /**
      *
      *
@@ -9163,7 +9956,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10012;
      */
-    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID(483, 10012),
+    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID(523, 10012),
     /**
      *
      *
@@ -9174,7 +9967,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10013;
      */
-    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID(484, 10013),
+    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID(524, 10013),
     /**
      *
      *
@@ -9185,7 +9978,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10014;
      */
-    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID(485, 10014),
+    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID(525, 10014),
     /**
      *
      *
@@ -9198,7 +9991,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11000;
      */
-    LINE_ITEM_CUSTOM_FIELD_0_VALUE(486, 11000),
+    LINE_ITEM_CUSTOM_FIELD_0_VALUE(526, 11000),
     /**
      *
      *
@@ -9211,7 +10004,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11001;
      */
-    LINE_ITEM_CUSTOM_FIELD_1_VALUE(487, 11001),
+    LINE_ITEM_CUSTOM_FIELD_1_VALUE(527, 11001),
     /**
      *
      *
@@ -9224,7 +10017,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11002;
      */
-    LINE_ITEM_CUSTOM_FIELD_2_VALUE(488, 11002),
+    LINE_ITEM_CUSTOM_FIELD_2_VALUE(528, 11002),
     /**
      *
      *
@@ -9237,7 +10030,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11003;
      */
-    LINE_ITEM_CUSTOM_FIELD_3_VALUE(489, 11003),
+    LINE_ITEM_CUSTOM_FIELD_3_VALUE(529, 11003),
     /**
      *
      *
@@ -9250,7 +10043,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11004;
      */
-    LINE_ITEM_CUSTOM_FIELD_4_VALUE(490, 11004),
+    LINE_ITEM_CUSTOM_FIELD_4_VALUE(530, 11004),
     /**
      *
      *
@@ -9263,7 +10056,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11005;
      */
-    LINE_ITEM_CUSTOM_FIELD_5_VALUE(491, 11005),
+    LINE_ITEM_CUSTOM_FIELD_5_VALUE(531, 11005),
     /**
      *
      *
@@ -9276,7 +10069,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11006;
      */
-    LINE_ITEM_CUSTOM_FIELD_6_VALUE(492, 11006),
+    LINE_ITEM_CUSTOM_FIELD_6_VALUE(532, 11006),
     /**
      *
      *
@@ -9289,7 +10082,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11007;
      */
-    LINE_ITEM_CUSTOM_FIELD_7_VALUE(493, 11007),
+    LINE_ITEM_CUSTOM_FIELD_7_VALUE(533, 11007),
     /**
      *
      *
@@ -9302,7 +10095,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11008;
      */
-    LINE_ITEM_CUSTOM_FIELD_8_VALUE(494, 11008),
+    LINE_ITEM_CUSTOM_FIELD_8_VALUE(534, 11008),
     /**
      *
      *
@@ -9315,7 +10108,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11009;
      */
-    LINE_ITEM_CUSTOM_FIELD_9_VALUE(495, 11009),
+    LINE_ITEM_CUSTOM_FIELD_9_VALUE(535, 11009),
     /**
      *
      *
@@ -9328,7 +10121,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11010;
      */
-    LINE_ITEM_CUSTOM_FIELD_10_VALUE(496, 11010),
+    LINE_ITEM_CUSTOM_FIELD_10_VALUE(536, 11010),
     /**
      *
      *
@@ -9341,7 +10134,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11011;
      */
-    LINE_ITEM_CUSTOM_FIELD_11_VALUE(497, 11011),
+    LINE_ITEM_CUSTOM_FIELD_11_VALUE(537, 11011),
     /**
      *
      *
@@ -9354,7 +10147,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11012;
      */
-    LINE_ITEM_CUSTOM_FIELD_12_VALUE(498, 11012),
+    LINE_ITEM_CUSTOM_FIELD_12_VALUE(538, 11012),
     /**
      *
      *
@@ -9367,7 +10160,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11013;
      */
-    LINE_ITEM_CUSTOM_FIELD_13_VALUE(499, 11013),
+    LINE_ITEM_CUSTOM_FIELD_13_VALUE(539, 11013),
     /**
      *
      *
@@ -9380,7 +10173,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11014;
      */
-    LINE_ITEM_CUSTOM_FIELD_14_VALUE(500, 11014),
+    LINE_ITEM_CUSTOM_FIELD_14_VALUE(540, 11014),
     /**
      *
      *
@@ -9391,7 +10184,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_0_OPTION_ID = 12000;
      */
-    ORDER_CUSTOM_FIELD_0_OPTION_ID(501, 12000),
+    ORDER_CUSTOM_FIELD_0_OPTION_ID(541, 12000),
     /**
      *
      *
@@ -9402,7 +10195,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_1_OPTION_ID = 12001;
      */
-    ORDER_CUSTOM_FIELD_1_OPTION_ID(502, 12001),
+    ORDER_CUSTOM_FIELD_1_OPTION_ID(542, 12001),
     /**
      *
      *
@@ -9413,7 +10206,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_2_OPTION_ID = 12002;
      */
-    ORDER_CUSTOM_FIELD_2_OPTION_ID(503, 12002),
+    ORDER_CUSTOM_FIELD_2_OPTION_ID(543, 12002),
     /**
      *
      *
@@ -9424,7 +10217,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_3_OPTION_ID = 12003;
      */
-    ORDER_CUSTOM_FIELD_3_OPTION_ID(504, 12003),
+    ORDER_CUSTOM_FIELD_3_OPTION_ID(544, 12003),
     /**
      *
      *
@@ -9435,7 +10228,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_4_OPTION_ID = 12004;
      */
-    ORDER_CUSTOM_FIELD_4_OPTION_ID(505, 12004),
+    ORDER_CUSTOM_FIELD_4_OPTION_ID(545, 12004),
     /**
      *
      *
@@ -9446,7 +10239,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_5_OPTION_ID = 12005;
      */
-    ORDER_CUSTOM_FIELD_5_OPTION_ID(506, 12005),
+    ORDER_CUSTOM_FIELD_5_OPTION_ID(546, 12005),
     /**
      *
      *
@@ -9457,7 +10250,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_6_OPTION_ID = 12006;
      */
-    ORDER_CUSTOM_FIELD_6_OPTION_ID(507, 12006),
+    ORDER_CUSTOM_FIELD_6_OPTION_ID(547, 12006),
     /**
      *
      *
@@ -9468,7 +10261,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_7_OPTION_ID = 12007;
      */
-    ORDER_CUSTOM_FIELD_7_OPTION_ID(508, 12007),
+    ORDER_CUSTOM_FIELD_7_OPTION_ID(548, 12007),
     /**
      *
      *
@@ -9479,7 +10272,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_8_OPTION_ID = 12008;
      */
-    ORDER_CUSTOM_FIELD_8_OPTION_ID(509, 12008),
+    ORDER_CUSTOM_FIELD_8_OPTION_ID(549, 12008),
     /**
      *
      *
@@ -9490,7 +10283,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_9_OPTION_ID = 12009;
      */
-    ORDER_CUSTOM_FIELD_9_OPTION_ID(510, 12009),
+    ORDER_CUSTOM_FIELD_9_OPTION_ID(550, 12009),
     /**
      *
      *
@@ -9501,7 +10294,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_10_OPTION_ID = 12010;
      */
-    ORDER_CUSTOM_FIELD_10_OPTION_ID(511, 12010),
+    ORDER_CUSTOM_FIELD_10_OPTION_ID(551, 12010),
     /**
      *
      *
@@ -9512,7 +10305,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_11_OPTION_ID = 12011;
      */
-    ORDER_CUSTOM_FIELD_11_OPTION_ID(512, 12011),
+    ORDER_CUSTOM_FIELD_11_OPTION_ID(552, 12011),
     /**
      *
      *
@@ -9523,7 +10316,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_12_OPTION_ID = 12012;
      */
-    ORDER_CUSTOM_FIELD_12_OPTION_ID(513, 12012),
+    ORDER_CUSTOM_FIELD_12_OPTION_ID(553, 12012),
     /**
      *
      *
@@ -9534,7 +10327,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_13_OPTION_ID = 12013;
      */
-    ORDER_CUSTOM_FIELD_13_OPTION_ID(514, 12013),
+    ORDER_CUSTOM_FIELD_13_OPTION_ID(554, 12013),
     /**
      *
      *
@@ -9545,7 +10338,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_14_OPTION_ID = 12014;
      */
-    ORDER_CUSTOM_FIELD_14_OPTION_ID(515, 12014),
+    ORDER_CUSTOM_FIELD_14_OPTION_ID(555, 12014),
     /**
      *
      *
@@ -9558,7 +10351,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_0_VALUE = 13000;
      */
-    ORDER_CUSTOM_FIELD_0_VALUE(516, 13000),
+    ORDER_CUSTOM_FIELD_0_VALUE(556, 13000),
     /**
      *
      *
@@ -9571,7 +10364,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_1_VALUE = 13001;
      */
-    ORDER_CUSTOM_FIELD_1_VALUE(517, 13001),
+    ORDER_CUSTOM_FIELD_1_VALUE(557, 13001),
     /**
      *
      *
@@ -9584,7 +10377,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_2_VALUE = 13002;
      */
-    ORDER_CUSTOM_FIELD_2_VALUE(518, 13002),
+    ORDER_CUSTOM_FIELD_2_VALUE(558, 13002),
     /**
      *
      *
@@ -9597,7 +10390,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_3_VALUE = 13003;
      */
-    ORDER_CUSTOM_FIELD_3_VALUE(519, 13003),
+    ORDER_CUSTOM_FIELD_3_VALUE(559, 13003),
     /**
      *
      *
@@ -9610,7 +10403,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_4_VALUE = 13004;
      */
-    ORDER_CUSTOM_FIELD_4_VALUE(520, 13004),
+    ORDER_CUSTOM_FIELD_4_VALUE(560, 13004),
     /**
      *
      *
@@ -9623,7 +10416,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_5_VALUE = 13005;
      */
-    ORDER_CUSTOM_FIELD_5_VALUE(521, 13005),
+    ORDER_CUSTOM_FIELD_5_VALUE(561, 13005),
     /**
      *
      *
@@ -9636,7 +10429,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_6_VALUE = 13006;
      */
-    ORDER_CUSTOM_FIELD_6_VALUE(522, 13006),
+    ORDER_CUSTOM_FIELD_6_VALUE(562, 13006),
     /**
      *
      *
@@ -9649,7 +10442,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_7_VALUE = 13007;
      */
-    ORDER_CUSTOM_FIELD_7_VALUE(523, 13007),
+    ORDER_CUSTOM_FIELD_7_VALUE(563, 13007),
     /**
      *
      *
@@ -9662,7 +10455,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_8_VALUE = 13008;
      */
-    ORDER_CUSTOM_FIELD_8_VALUE(524, 13008),
+    ORDER_CUSTOM_FIELD_8_VALUE(564, 13008),
     /**
      *
      *
@@ -9675,7 +10468,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_9_VALUE = 13009;
      */
-    ORDER_CUSTOM_FIELD_9_VALUE(525, 13009),
+    ORDER_CUSTOM_FIELD_9_VALUE(565, 13009),
     /**
      *
      *
@@ -9688,7 +10481,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_10_VALUE = 13010;
      */
-    ORDER_CUSTOM_FIELD_10_VALUE(526, 13010),
+    ORDER_CUSTOM_FIELD_10_VALUE(566, 13010),
     /**
      *
      *
@@ -9701,7 +10494,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_11_VALUE = 13011;
      */
-    ORDER_CUSTOM_FIELD_11_VALUE(527, 13011),
+    ORDER_CUSTOM_FIELD_11_VALUE(567, 13011),
     /**
      *
      *
@@ -9714,7 +10507,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_12_VALUE = 13012;
      */
-    ORDER_CUSTOM_FIELD_12_VALUE(528, 13012),
+    ORDER_CUSTOM_FIELD_12_VALUE(568, 13012),
     /**
      *
      *
@@ -9727,7 +10520,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_13_VALUE = 13013;
      */
-    ORDER_CUSTOM_FIELD_13_VALUE(529, 13013),
+    ORDER_CUSTOM_FIELD_13_VALUE(569, 13013),
     /**
      *
      *
@@ -9740,7 +10533,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * ORDER_CUSTOM_FIELD_14_VALUE = 13014;
      */
-    ORDER_CUSTOM_FIELD_14_VALUE(530, 13014),
+    ORDER_CUSTOM_FIELD_14_VALUE(570, 13014),
     /**
      *
      *
@@ -9751,7 +10544,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14000;
      */
-    CREATIVE_CUSTOM_FIELD_0_OPTION_ID(531, 14000),
+    CREATIVE_CUSTOM_FIELD_0_OPTION_ID(571, 14000),
     /**
      *
      *
@@ -9762,7 +10555,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14001;
      */
-    CREATIVE_CUSTOM_FIELD_1_OPTION_ID(532, 14001),
+    CREATIVE_CUSTOM_FIELD_1_OPTION_ID(572, 14001),
     /**
      *
      *
@@ -9773,7 +10566,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14002;
      */
-    CREATIVE_CUSTOM_FIELD_2_OPTION_ID(533, 14002),
+    CREATIVE_CUSTOM_FIELD_2_OPTION_ID(573, 14002),
     /**
      *
      *
@@ -9784,7 +10577,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14003;
      */
-    CREATIVE_CUSTOM_FIELD_3_OPTION_ID(534, 14003),
+    CREATIVE_CUSTOM_FIELD_3_OPTION_ID(574, 14003),
     /**
      *
      *
@@ -9795,7 +10588,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14004;
      */
-    CREATIVE_CUSTOM_FIELD_4_OPTION_ID(535, 14004),
+    CREATIVE_CUSTOM_FIELD_4_OPTION_ID(575, 14004),
     /**
      *
      *
@@ -9806,7 +10599,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14005;
      */
-    CREATIVE_CUSTOM_FIELD_5_OPTION_ID(536, 14005),
+    CREATIVE_CUSTOM_FIELD_5_OPTION_ID(576, 14005),
     /**
      *
      *
@@ -9817,7 +10610,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14006;
      */
-    CREATIVE_CUSTOM_FIELD_6_OPTION_ID(537, 14006),
+    CREATIVE_CUSTOM_FIELD_6_OPTION_ID(577, 14006),
     /**
      *
      *
@@ -9828,7 +10621,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14007;
      */
-    CREATIVE_CUSTOM_FIELD_7_OPTION_ID(538, 14007),
+    CREATIVE_CUSTOM_FIELD_7_OPTION_ID(578, 14007),
     /**
      *
      *
@@ -9839,7 +10632,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14008;
      */
-    CREATIVE_CUSTOM_FIELD_8_OPTION_ID(539, 14008),
+    CREATIVE_CUSTOM_FIELD_8_OPTION_ID(579, 14008),
     /**
      *
      *
@@ -9850,7 +10643,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14009;
      */
-    CREATIVE_CUSTOM_FIELD_9_OPTION_ID(540, 14009),
+    CREATIVE_CUSTOM_FIELD_9_OPTION_ID(580, 14009),
     /**
      *
      *
@@ -9861,7 +10654,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14010;
      */
-    CREATIVE_CUSTOM_FIELD_10_OPTION_ID(541, 14010),
+    CREATIVE_CUSTOM_FIELD_10_OPTION_ID(581, 14010),
     /**
      *
      *
@@ -9872,7 +10665,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14011;
      */
-    CREATIVE_CUSTOM_FIELD_11_OPTION_ID(542, 14011),
+    CREATIVE_CUSTOM_FIELD_11_OPTION_ID(582, 14011),
     /**
      *
      *
@@ -9883,7 +10676,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14012;
      */
-    CREATIVE_CUSTOM_FIELD_12_OPTION_ID(543, 14012),
+    CREATIVE_CUSTOM_FIELD_12_OPTION_ID(583, 14012),
     /**
      *
      *
@@ -9894,7 +10687,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14013;
      */
-    CREATIVE_CUSTOM_FIELD_13_OPTION_ID(544, 14013),
+    CREATIVE_CUSTOM_FIELD_13_OPTION_ID(584, 14013),
     /**
      *
      *
@@ -9905,7 +10698,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14014;
      */
-    CREATIVE_CUSTOM_FIELD_14_OPTION_ID(545, 14014),
+    CREATIVE_CUSTOM_FIELD_14_OPTION_ID(585, 14014),
     /**
      *
      *
@@ -9918,7 +10711,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_0_VALUE = 15000;
      */
-    CREATIVE_CUSTOM_FIELD_0_VALUE(546, 15000),
+    CREATIVE_CUSTOM_FIELD_0_VALUE(586, 15000),
     /**
      *
      *
@@ -9931,7 +10724,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_1_VALUE = 15001;
      */
-    CREATIVE_CUSTOM_FIELD_1_VALUE(547, 15001),
+    CREATIVE_CUSTOM_FIELD_1_VALUE(587, 15001),
     /**
      *
      *
@@ -9944,7 +10737,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_2_VALUE = 15002;
      */
-    CREATIVE_CUSTOM_FIELD_2_VALUE(548, 15002),
+    CREATIVE_CUSTOM_FIELD_2_VALUE(588, 15002),
     /**
      *
      *
@@ -9957,7 +10750,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_3_VALUE = 15003;
      */
-    CREATIVE_CUSTOM_FIELD_3_VALUE(549, 15003),
+    CREATIVE_CUSTOM_FIELD_3_VALUE(589, 15003),
     /**
      *
      *
@@ -9970,7 +10763,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_4_VALUE = 15004;
      */
-    CREATIVE_CUSTOM_FIELD_4_VALUE(550, 15004),
+    CREATIVE_CUSTOM_FIELD_4_VALUE(590, 15004),
     /**
      *
      *
@@ -9983,7 +10776,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_5_VALUE = 15005;
      */
-    CREATIVE_CUSTOM_FIELD_5_VALUE(551, 15005),
+    CREATIVE_CUSTOM_FIELD_5_VALUE(591, 15005),
     /**
      *
      *
@@ -9996,7 +10789,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_6_VALUE = 15006;
      */
-    CREATIVE_CUSTOM_FIELD_6_VALUE(552, 15006),
+    CREATIVE_CUSTOM_FIELD_6_VALUE(592, 15006),
     /**
      *
      *
@@ -10009,7 +10802,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_7_VALUE = 15007;
      */
-    CREATIVE_CUSTOM_FIELD_7_VALUE(553, 15007),
+    CREATIVE_CUSTOM_FIELD_7_VALUE(593, 15007),
     /**
      *
      *
@@ -10022,7 +10815,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_8_VALUE = 15008;
      */
-    CREATIVE_CUSTOM_FIELD_8_VALUE(554, 15008),
+    CREATIVE_CUSTOM_FIELD_8_VALUE(594, 15008),
     /**
      *
      *
@@ -10035,7 +10828,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_9_VALUE = 15009;
      */
-    CREATIVE_CUSTOM_FIELD_9_VALUE(555, 15009),
+    CREATIVE_CUSTOM_FIELD_9_VALUE(595, 15009),
     /**
      *
      *
@@ -10048,7 +10841,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_10_VALUE = 15010;
      */
-    CREATIVE_CUSTOM_FIELD_10_VALUE(556, 15010),
+    CREATIVE_CUSTOM_FIELD_10_VALUE(596, 15010),
     /**
      *
      *
@@ -10061,7 +10854,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_11_VALUE = 15011;
      */
-    CREATIVE_CUSTOM_FIELD_11_VALUE(557, 15011),
+    CREATIVE_CUSTOM_FIELD_11_VALUE(597, 15011),
     /**
      *
      *
@@ -10074,7 +10867,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_12_VALUE = 15012;
      */
-    CREATIVE_CUSTOM_FIELD_12_VALUE(558, 15012),
+    CREATIVE_CUSTOM_FIELD_12_VALUE(598, 15012),
     /**
      *
      *
@@ -10087,7 +10880,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_13_VALUE = 15013;
      */
-    CREATIVE_CUSTOM_FIELD_13_VALUE(559, 15013),
+    CREATIVE_CUSTOM_FIELD_13_VALUE(599, 15013),
     /**
      *
      *
@@ -10100,7 +10893,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CREATIVE_CUSTOM_FIELD_14_VALUE = 15014;
      */
-    CREATIVE_CUSTOM_FIELD_14_VALUE(560, 15014),
+    CREATIVE_CUSTOM_FIELD_14_VALUE(600, 15014),
     /**
      *
      *
@@ -10111,7 +10904,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16000;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID(561, 16000),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID(601, 16000),
     /**
      *
      *
@@ -10122,7 +10915,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16001;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID(562, 16001),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID(602, 16001),
     /**
      *
      *
@@ -10133,7 +10926,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16002;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID(563, 16002),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID(603, 16002),
     /**
      *
      *
@@ -10144,7 +10937,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16003;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID(564, 16003),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID(604, 16003),
     /**
      *
      *
@@ -10155,7 +10948,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16004;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID(565, 16004),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID(605, 16004),
     /**
      *
      *
@@ -10166,7 +10959,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16005;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID(566, 16005),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID(606, 16005),
     /**
      *
      *
@@ -10177,7 +10970,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16006;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID(567, 16006),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID(607, 16006),
     /**
      *
      *
@@ -10188,7 +10981,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16007;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID(568, 16007),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID(608, 16007),
     /**
      *
      *
@@ -10199,7 +10992,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16008;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID(569, 16008),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID(609, 16008),
     /**
      *
      *
@@ -10210,7 +11003,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16009;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID(570, 16009),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID(610, 16009),
     /**
      *
      *
@@ -10221,7 +11014,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16010;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID(571, 16010),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID(611, 16010),
     /**
      *
      *
@@ -10232,7 +11025,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16011;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID(572, 16011),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID(612, 16011),
     /**
      *
      *
@@ -10243,7 +11036,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16012;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID(573, 16012),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID(613, 16012),
     /**
      *
      *
@@ -10254,7 +11047,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16013;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID(574, 16013),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID(614, 16013),
     /**
      *
      *
@@ -10265,7 +11058,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16014;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID(575, 16014),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID(615, 16014),
     /**
      *
      *
@@ -10278,7 +11071,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17000;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE(576, 17000),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE(616, 17000),
     /**
      *
      *
@@ -10291,7 +11084,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17001;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE(577, 17001),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE(617, 17001),
     /**
      *
      *
@@ -10304,7 +11097,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17002;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE(578, 17002),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE(618, 17002),
     /**
      *
      *
@@ -10317,7 +11110,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17003;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE(579, 17003),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE(619, 17003),
     /**
      *
      *
@@ -10330,7 +11123,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17004;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE(580, 17004),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE(620, 17004),
     /**
      *
      *
@@ -10343,7 +11136,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17005;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE(581, 17005),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE(621, 17005),
     /**
      *
      *
@@ -10356,7 +11149,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17006;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE(582, 17006),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE(622, 17006),
     /**
      *
      *
@@ -10369,7 +11162,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17007;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE(583, 17007),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE(623, 17007),
     /**
      *
      *
@@ -10382,7 +11175,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17008;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE(584, 17008),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE(624, 17008),
     /**
      *
      *
@@ -10395,7 +11188,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17009;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE(585, 17009),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE(625, 17009),
     /**
      *
      *
@@ -10408,7 +11201,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17010;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE(586, 17010),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE(626, 17010),
     /**
      *
      *
@@ -10421,7 +11214,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17011;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE(587, 17011),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE(627, 17011),
     /**
      *
      *
@@ -10434,7 +11227,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17012;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE(588, 17012),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE(628, 17012),
     /**
      *
      *
@@ -10447,7 +11240,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17013;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE(589, 17013),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE(629, 17013),
     /**
      *
      *
@@ -10460,7 +11253,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17014;
      */
-    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE(590, 17014),
+    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE(630, 17014),
     /**
      *
      *
@@ -10471,7 +11264,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18000;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID(591, 18000),
+    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID(631, 18000),
     /**
      *
      *
@@ -10482,7 +11275,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18001;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID(592, 18001),
+    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID(632, 18001),
     /**
      *
      *
@@ -10493,7 +11286,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18002;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID(593, 18002),
+    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID(633, 18002),
     /**
      *
      *
@@ -10504,7 +11297,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18003;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID(594, 18003),
+    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID(634, 18003),
     /**
      *
      *
@@ -10515,7 +11308,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18004;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID(595, 18004),
+    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID(635, 18004),
     /**
      *
      *
@@ -10526,7 +11319,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18005;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID(596, 18005),
+    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID(636, 18005),
     /**
      *
      *
@@ -10537,7 +11330,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18006;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID(597, 18006),
+    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID(637, 18006),
     /**
      *
      *
@@ -10548,7 +11341,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18007;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID(598, 18007),
+    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID(638, 18007),
     /**
      *
      *
@@ -10559,7 +11352,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18008;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID(599, 18008),
+    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID(639, 18008),
     /**
      *
      *
@@ -10570,7 +11363,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18009;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID(600, 18009),
+    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID(640, 18009),
     /**
      *
      *
@@ -10581,7 +11374,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18010;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID(601, 18010),
+    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID(641, 18010),
     /**
      *
      *
@@ -10592,7 +11385,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18011;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID(602, 18011),
+    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID(642, 18011),
     /**
      *
      *
@@ -10603,7 +11396,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18012;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID(603, 18012),
+    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID(643, 18012),
     /**
      *
      *
@@ -10614,7 +11407,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18013;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID(604, 18013),
+    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID(644, 18013),
     /**
      *
      *
@@ -10625,7 +11418,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18014;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID(605, 18014),
+    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID(645, 18014),
     /**
      *
      *
@@ -10639,7 +11432,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19000;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE(606, 19000),
+    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE(646, 19000),
     /**
      *
      *
@@ -10652,7 +11445,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19001;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE(607, 19001),
+    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE(647, 19001),
     /**
      *
      *
@@ -10665,7 +11458,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19002;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE(608, 19002),
+    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE(648, 19002),
     /**
      *
      *
@@ -10678,7 +11471,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19003;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE(609, 19003),
+    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE(649, 19003),
     /**
      *
      *
@@ -10691,7 +11484,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19004;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE(610, 19004),
+    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE(650, 19004),
     /**
      *
      *
@@ -10704,7 +11497,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19005;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE(611, 19005),
+    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE(651, 19005),
     /**
      *
      *
@@ -10717,7 +11510,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19006;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE(612, 19006),
+    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE(652, 19006),
     /**
      *
      *
@@ -10730,7 +11523,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19007;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE(613, 19007),
+    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE(653, 19007),
     /**
      *
      *
@@ -10743,7 +11536,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19008;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE(614, 19008),
+    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE(654, 19008),
     /**
      *
      *
@@ -10756,7 +11549,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19009;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE(615, 19009),
+    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE(655, 19009),
     /**
      *
      *
@@ -10769,7 +11562,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19010;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE(616, 19010),
+    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE(656, 19010),
     /**
      *
      *
@@ -10782,7 +11575,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19011;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE(617, 19011),
+    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE(657, 19011),
     /**
      *
      *
@@ -10795,7 +11588,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19012;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE(618, 19012),
+    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE(658, 19012),
     /**
      *
      *
@@ -10808,7 +11601,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19013;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE(619, 19013),
+    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE(659, 19013),
     /**
      *
      *
@@ -10821,7 +11614,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19014;
      */
-    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE(620, 19014),
+    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE(660, 19014),
     /**
      *
      *
@@ -10832,7 +11625,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20000;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID(621, 20000),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID(661, 20000),
     /**
      *
      *
@@ -10843,7 +11636,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20001;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID(622, 20001),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID(662, 20001),
     /**
      *
      *
@@ -10854,7 +11647,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20002;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID(623, 20002),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID(663, 20002),
     /**
      *
      *
@@ -10865,7 +11658,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20003;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID(624, 20003),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID(664, 20003),
     /**
      *
      *
@@ -10876,7 +11669,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20004;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID(625, 20004),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID(665, 20004),
     /**
      *
      *
@@ -10887,7 +11680,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20005;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID(626, 20005),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID(666, 20005),
     /**
      *
      *
@@ -10898,7 +11691,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20006;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID(627, 20006),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID(667, 20006),
     /**
      *
      *
@@ -10909,7 +11702,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20007;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID(628, 20007),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID(668, 20007),
     /**
      *
      *
@@ -10920,7 +11713,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20008;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID(629, 20008),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID(669, 20008),
     /**
      *
      *
@@ -10931,7 +11724,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20009;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID(630, 20009),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID(670, 20009),
     /**
      *
      *
@@ -10942,7 +11735,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20010;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID(631, 20010),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID(671, 20010),
     /**
      *
      *
@@ -10953,7 +11746,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20011;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID(632, 20011),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID(672, 20011),
     /**
      *
      *
@@ -10964,7 +11757,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20012;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID(633, 20012),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID(673, 20012),
     /**
      *
      *
@@ -10975,7 +11768,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20013;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID(634, 20013),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID(674, 20013),
     /**
      *
      *
@@ -10986,7 +11779,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20014;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID(635, 20014),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID(675, 20014),
     /**
      *
      *
@@ -11000,7 +11793,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21000;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE(636, 21000),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE(676, 21000),
     /**
      *
      *
@@ -11013,7 +11806,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21001;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE(637, 21001),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE(677, 21001),
     /**
      *
      *
@@ -11026,7 +11819,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21002;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE(638, 21002),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE(678, 21002),
     /**
      *
      *
@@ -11039,7 +11832,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21003;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE(639, 21003),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE(679, 21003),
     /**
      *
      *
@@ -11052,7 +11845,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21004;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE(640, 21004),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE(680, 21004),
     /**
      *
      *
@@ -11065,7 +11858,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21005;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE(641, 21005),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE(681, 21005),
     /**
      *
      *
@@ -11078,7 +11871,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21006;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE(642, 21006),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE(682, 21006),
     /**
      *
      *
@@ -11091,7 +11884,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21007;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE(643, 21007),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE(683, 21007),
     /**
      *
      *
@@ -11104,7 +11897,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21008;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE(644, 21008),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE(684, 21008),
     /**
      *
      *
@@ -11117,7 +11910,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21009;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE(645, 21009),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE(685, 21009),
     /**
      *
      *
@@ -11130,7 +11923,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21010;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE(646, 21010),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE(686, 21010),
     /**
      *
      *
@@ -11143,7 +11936,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21011;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE(647, 21011),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE(687, 21011),
     /**
      *
      *
@@ -11156,7 +11949,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21012;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE(648, 21012),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE(688, 21012),
     /**
      *
      *
@@ -11169,7 +11962,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21013;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE(649, 21013),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE(689, 21013),
     /**
      *
      *
@@ -11182,7 +11975,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21014;
      */
-    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE(650, 21014),
+    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE(690, 21014),
     /**
      *
      *
@@ -11193,7 +11986,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_0_VALUE_ID = 100000;
      */
-    CUSTOM_DIMENSION_0_VALUE_ID(651, 100000),
+    CUSTOM_DIMENSION_0_VALUE_ID(691, 100000),
     /**
      *
      *
@@ -11204,7 +11997,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_1_VALUE_ID = 100001;
      */
-    CUSTOM_DIMENSION_1_VALUE_ID(652, 100001),
+    CUSTOM_DIMENSION_1_VALUE_ID(692, 100001),
     /**
      *
      *
@@ -11215,7 +12008,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_2_VALUE_ID = 100002;
      */
-    CUSTOM_DIMENSION_2_VALUE_ID(653, 100002),
+    CUSTOM_DIMENSION_2_VALUE_ID(693, 100002),
     /**
      *
      *
@@ -11226,7 +12019,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_3_VALUE_ID = 100003;
      */
-    CUSTOM_DIMENSION_3_VALUE_ID(654, 100003),
+    CUSTOM_DIMENSION_3_VALUE_ID(694, 100003),
     /**
      *
      *
@@ -11237,7 +12030,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_4_VALUE_ID = 100004;
      */
-    CUSTOM_DIMENSION_4_VALUE_ID(655, 100004),
+    CUSTOM_DIMENSION_4_VALUE_ID(695, 100004),
     /**
      *
      *
@@ -11248,7 +12041,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_5_VALUE_ID = 100005;
      */
-    CUSTOM_DIMENSION_5_VALUE_ID(656, 100005),
+    CUSTOM_DIMENSION_5_VALUE_ID(696, 100005),
     /**
      *
      *
@@ -11259,7 +12052,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_6_VALUE_ID = 100006;
      */
-    CUSTOM_DIMENSION_6_VALUE_ID(657, 100006),
+    CUSTOM_DIMENSION_6_VALUE_ID(697, 100006),
     /**
      *
      *
@@ -11270,7 +12063,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_7_VALUE_ID = 100007;
      */
-    CUSTOM_DIMENSION_7_VALUE_ID(658, 100007),
+    CUSTOM_DIMENSION_7_VALUE_ID(698, 100007),
     /**
      *
      *
@@ -11281,7 +12074,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_8_VALUE_ID = 100008;
      */
-    CUSTOM_DIMENSION_8_VALUE_ID(659, 100008),
+    CUSTOM_DIMENSION_8_VALUE_ID(699, 100008),
     /**
      *
      *
@@ -11292,7 +12085,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_9_VALUE_ID = 100009;
      */
-    CUSTOM_DIMENSION_9_VALUE_ID(660, 100009),
+    CUSTOM_DIMENSION_9_VALUE_ID(700, 100009),
     /**
      *
      *
@@ -11303,7 +12096,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_0_VALUE = 101000;
      */
-    CUSTOM_DIMENSION_0_VALUE(661, 101000),
+    CUSTOM_DIMENSION_0_VALUE(701, 101000),
     /**
      *
      *
@@ -11314,7 +12107,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_1_VALUE = 101001;
      */
-    CUSTOM_DIMENSION_1_VALUE(662, 101001),
+    CUSTOM_DIMENSION_1_VALUE(702, 101001),
     /**
      *
      *
@@ -11325,7 +12118,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_2_VALUE = 101002;
      */
-    CUSTOM_DIMENSION_2_VALUE(663, 101002),
+    CUSTOM_DIMENSION_2_VALUE(703, 101002),
     /**
      *
      *
@@ -11336,7 +12129,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_3_VALUE = 101003;
      */
-    CUSTOM_DIMENSION_3_VALUE(664, 101003),
+    CUSTOM_DIMENSION_3_VALUE(704, 101003),
     /**
      *
      *
@@ -11347,7 +12140,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_4_VALUE = 101004;
      */
-    CUSTOM_DIMENSION_4_VALUE(665, 101004),
+    CUSTOM_DIMENSION_4_VALUE(705, 101004),
     /**
      *
      *
@@ -11358,7 +12151,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_5_VALUE = 101005;
      */
-    CUSTOM_DIMENSION_5_VALUE(666, 101005),
+    CUSTOM_DIMENSION_5_VALUE(706, 101005),
     /**
      *
      *
@@ -11369,7 +12162,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_6_VALUE = 101006;
      */
-    CUSTOM_DIMENSION_6_VALUE(667, 101006),
+    CUSTOM_DIMENSION_6_VALUE(707, 101006),
     /**
      *
      *
@@ -11380,7 +12173,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_7_VALUE = 101007;
      */
-    CUSTOM_DIMENSION_7_VALUE(668, 101007),
+    CUSTOM_DIMENSION_7_VALUE(708, 101007),
     /**
      *
      *
@@ -11391,7 +12184,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_8_VALUE = 101008;
      */
-    CUSTOM_DIMENSION_8_VALUE(669, 101008),
+    CUSTOM_DIMENSION_8_VALUE(709, 101008),
     /**
      *
      *
@@ -11402,7 +12195,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      * CUSTOM_DIMENSION_9_VALUE = 101009;
      */
-    CUSTOM_DIMENSION_9_VALUE(670, 101009),
+    CUSTOM_DIMENSION_9_VALUE(710, 101009),
     UNRECOGNIZED(-1, -1),
     ;
 
@@ -11509,7 +12302,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Advertiser credit status locallized name
+     * Advertiser credit status localized name
      *
      *
      *
@@ -11686,7 +12479,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Advertiser status locallized name
+     * Advertiser status localized name
      *
      *
      *
@@ -11726,7 +12519,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Advertiser type locallized name
+     * Advertiser type localized name
      *
      *
      *
@@ -11773,7 +12566,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      * Corresponds to "Ad Exchange product value" in the Ad Manager UI (when
      * showing API fields).
      *
-     * Compatible with the following report types: `HISTORICAL`
+     * Compatible with the following report types: `HISTORICAL`,
+     * `REVENUE_VERIFICATION`
      *
      * Data format: `ENUM`
      * 
@@ -11793,7 +12587,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Ad Exchange product" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
@@ -11882,6 +12677,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int AD_LOCATION_NAME_VALUE = 391; + /** + * + * + *
+     * Multi-size inventory in an ad request.
+     *
+     *
+     *
+     * Corresponds to "Ad request sizes" in the Ad Manager UI.
+     *
+     * Compatible with the following report types:
+     *
+     * Data format: `STRING_LIST`
+     * 
+ * + * AD_REQUEST_SIZES = 541; + */ + public static final int AD_REQUEST_SIZES_VALUE = 541; + /** * * @@ -13286,6 +14100,44 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int AGE_BRACKET_NAME_VALUE = 582; + /** + * + * + *
+     * Property ID in Google Analytics
+     *
+     *
+     *
+     * Corresponds to "Analytics property ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * ANALYTICS_PROPERTY_ID = 733; + */ + public static final int ANALYTICS_PROPERTY_ID_VALUE = 733; + + /** + * + * + *
+     * Property name in Google Analytics
+     *
+     *
+     *
+     * Corresponds to "Analytics property" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * ANALYTICS_PROPERTY_NAME = 767; + */ + public static final int ANALYTICS_PROPERTY_NAME_VALUE = 767; + /** * * @@ -13383,6 +14235,82 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int AUCTION_PACKAGE_DEAL_ID_VALUE = 571; + /** + * + * + *
+     * Name of billable audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (billable)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * AUDIENCE_SEGMENT_BILLABLE = 594; + */ + public static final int AUDIENCE_SEGMENT_BILLABLE_VALUE = 594; + + /** + * + * + *
+     * ID of the data provider for the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment data provider ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * AUDIENCE_SEGMENT_DATA_PROVIDER_ID = 613; + */ + public static final int AUDIENCE_SEGMENT_DATA_PROVIDER_ID_VALUE = 613; + + /** + * + * + *
+     * Name of the data provider for the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment data provider" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * AUDIENCE_SEGMENT_DATA_PROVIDER_NAME = 614; + */ + public static final int AUDIENCE_SEGMENT_DATA_PROVIDER_NAME_VALUE = 614; + + /** + * + * + *
+     * ID of billable audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment ID (billable)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * AUDIENCE_SEGMENT_ID_BILLABLE = 595; + */ + public static final int AUDIENCE_SEGMENT_ID_BILLABLE_VALUE = 595; + /** * * @@ -13423,6 +14351,284 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int AUDIENCE_SEGMENT_TARGETED_VALUE = 585; + /** + * + * + *
+     * Number of AdID identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) AdID size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE = 605; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE_VALUE = 605; + + /** + * + * + *
+     * Number of Amazon Fire identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Amazon Fire size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE = 606; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE_VALUE = 606; + + /** + * + * + *
+     * Number of Android TV identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Android TV size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE = 607; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE_VALUE = 607; + + /** + * + * + *
+     * Number of Apple TV identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Apple TV size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE = 608; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE_VALUE = 608; + + /** + * + * + *
+     * Number of IDFA identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) IDFA size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE = 609; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE_VALUE = 609; + + /** + * + * + *
+     * Number of mobile web identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) mobile web size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE = 610; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE_VALUE = 610; + + /** + * + * + *
+     * Number of PlayStation identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) PlayStation size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE = 611; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE_VALUE = 611; + + /** + * + * + *
+     * Number of PPID identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) PPID size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE = 612; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE_VALUE = 612; + + /** + * + * + *
+     * Number of Roku identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Roku size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE = 615; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE_VALUE = 615; + + /** + * + * + *
+     * Number of Samsung TV identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Samsung TV size" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE = 616; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE_VALUE = 616; + + /** + * + * + *
+     * Number of identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) size" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_SIZE = 618; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_SIZE_VALUE = 618; + + /** + * + * + *
+     * Status of the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) status value" in the Ad
+     * Manager UI (when showing API fields).
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `ENUM`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_STATUS = 628; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_STATUS_VALUE = 628; + + /** + * + * + *
+     * Name of the status of the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) status" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_STATUS_NAME = 617; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_STATUS_NAME_VALUE = 617; + + /** + * + * + *
+     * Number of Xbox identifiers in the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment (targeted) Xbox size" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE = 619; + */ + public static final int AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE_VALUE = 619; + /** * * @@ -13472,7 +14678,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Bidder encrypted ID" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
@@ -13491,7 +14698,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Bidder" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
@@ -13983,6 +15191,82 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int CLASSIFIED_BRAND_NAME_VALUE = 244; + /** + * + * + *
+     * ID of the video content bundle served.
+     *
+     *
+     *
+     * Corresponds to "Content bundle ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * CONTENT_BUNDLE_ID = 460; + */ + public static final int CONTENT_BUNDLE_ID_VALUE = 460; + + /** + * + * + *
+     * Name of the video content bundle served.
+     *
+     *
+     *
+     * Corresponds to "Content bundle" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * CONTENT_BUNDLE_NAME = 461; + */ + public static final int CONTENT_BUNDLE_NAME_VALUE = 461; + + /** + * + * + *
+     * ID of the video content metadata namespace served.
+     *
+     *
+     *
+     * Corresponds to "CMS metadata key ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * CONTENT_CMS_METADATA_KV_NAMESPACE_ID = 462; + */ + public static final int CONTENT_CMS_METADATA_KV_NAMESPACE_ID_VALUE = 462; + + /** + * + * + *
+     * Name of the video content metadata namespace served.
+     *
+     *
+     *
+     * Corresponds to "CMS metadata key" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * CONTENT_CMS_METADATA_KV_NAMESPACE_NAME = 463; + */ + public static final int CONTENT_CMS_METADATA_KV_NAMESPACE_NAME_VALUE = 463; + /** * * @@ -14337,7 +15621,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * Creative Protections filtering (Publisher Blocks Enforcement).
+     * Creative Protections filtering.
      *
      *
      *
@@ -14437,7 +15721,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Creative technology locallized name
+     * Creative technology localized name
      *
      *
      *
@@ -14735,7 +16019,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      * Corresponds to "Date" in the Ad Manager UI.
      *
      * Compatible with the following report types: `HISTORICAL`, `REACH`,
-     * `PRIVACY_AND_MESSAGING`, `AD_SPEED`
+     * `PRIVACY_AND_MESSAGING`, `REVENUE_VERIFICATION`, `AD_SPEED`
      *
      * Data format: `DATE`
      * 
@@ -14893,7 +16177,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * API fields). * * Compatible with the following report types: `HISTORICAL`, `REACH`, - * `AD_SPEED` + * `REVENUE_VERIFICATION`, `AD_SPEED` * * Data format: `ENUM` *
@@ -14913,7 +16197,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Corresponds to "Demand channel" in the Ad Manager UI. * * Compatible with the following report types: `HISTORICAL`, `REACH`, - * `AD_SPEED` + * `REVENUE_VERIFICATION`, `AD_SPEED` * * Data format: `STRING` *
@@ -15155,9 +16439,9 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Data format: `STRING` * * - * DEVICE_NAME = 225; + * DEVICE_NAME = 225 [deprecated = true]; */ - public static final int DEVICE_NAME_VALUE = 225; + @java.lang.Deprecated public static final int DEVICE_NAME_VALUE = 225; /** * @@ -16115,6 +17399,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int KEY_VALUES_NAME_VALUE = 215; + /** + * + * + *
+     * The custom criteria key-values specified in ad requests.
+     *
+     *
+     *
+     * Corresponds to "Key-values" in the Ad Manager UI.
+     *
+     * Compatible with the following report types:
+     *
+     * Data format: `STRING_LIST`
+     * 
+ * + * KEY_VALUES_SET = 713; + */ + public static final int KEY_VALUES_SET_VALUE = 713; + /** * * @@ -16157,7 +17460,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * Line item comanion delivery option ENUM value.
+     * Line item companion delivery option ENUM value.
      *
      *
      *
@@ -16177,7 +17480,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Localized line item comanion delivery option name.
+     * Localized line item companion delivery option name.
      *
      *
      *
@@ -16851,7 +18154,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      *
      *
      * 
-     * Whether a Line item is eligible for opitimization.
+     * Whether a Line item is eligible for optimization.
      *
      *
      *
@@ -17669,7 +18972,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      * Corresponds to "Rendering SDK value" in the Ad Manager UI (when showing
      * API fields).
      *
-     * Compatible with the following report types: `HISTORICAL`
+     * Compatible with the following report types: `HISTORICAL`,
+     * `REVENUE_VERIFICATION`
      *
      * Data format: `ENUM`
      * 
@@ -17688,7 +18992,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Rendering SDK" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` *
@@ -17765,7 +19070,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Corresponds to "Month and year" in the Ad Manager UI. * * Compatible with the following report types: `HISTORICAL`, `REACH`, - * `PRIVACY_AND_MESSAGING` + * `PRIVACY_AND_MESSAGING`, `REVENUE_VERIFICATION`, `PARTNER_FINANCE` * * Data format: `INTEGER` *
@@ -18608,6 +19913,86 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int PAGE_TITLE_AND_SCREEN_NAME_VALUE = 513; + /** + * + * + *
+     * The ID of a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management assignment ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_ASSIGNMENT_ID = 657; + */ + public static final int PARTNER_MANAGEMENT_ASSIGNMENT_ID_VALUE = 657; + + /** + * + * + *
+     * The name of a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management assignment" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `STRING`
+     * 
+ * + * PARTNER_MANAGEMENT_ASSIGNMENT_NAME = 658; + */ + public static final int PARTNER_MANAGEMENT_ASSIGNMENT_NAME_VALUE = 658; + + /** + * + * + *
+     * The ID of a partner in a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_ID = 655; + */ + public static final int PARTNER_MANAGEMENT_PARTNER_ID_VALUE = 655; + + /** + * + * + *
+     * The name of a partner in a partner management assignment.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `STRING`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_NAME = 656; + */ + public static final int PARTNER_MANAGEMENT_PARTNER_NAME_VALUE = 656; + /** * * @@ -18978,7 +20363,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * Corresponds to "Programmatic channel value" in the Ad Manager UI (when * showing API fields). * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, + * `REVENUE_VERIFICATION` * * Data format: `ENUM` * @@ -18998,7 +20384,8 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Programmatic channel" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL`, `REACH` + * Compatible with the following report types: `HISTORICAL`, `REACH`, + * `REVENUE_VERIFICATION` * * Data format: `STRING` * @@ -19491,7 +20878,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * Request type locallized name
+     * Request type localized name
      *
      *
      *
@@ -19506,6 +20893,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum {
      */
     public static final int REQUEST_TYPE_NAME_VALUE = 147;
 
+    /**
+     *
+     *
+     * 
+     * Revenue Verification bidder-provided ID.
+     *
+     *
+     *
+     * Corresponds to "Revenue verification ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `IDENTIFIER`
+     * 
+ * + * REVENUE_VERIFICATION_ID = 645; + */ + public static final int REVENUE_VERIFICATION_ID_VALUE = 645; + /** * * @@ -19879,6 +21285,45 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int URL_ID_VALUE = 507; + /** + * + * + *
+     * The choice made in a user message.
+     *
+     *
+     *
+     * Corresponds to "User choice value" in the Ad Manager UI (when showing API
+     * fields).
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `ENUM`
+     * 
+ * + * USER_MESSAGES_CHOICE = 702; + */ + public static final int USER_MESSAGES_CHOICE_VALUE = 702; + + /** + * + * + *
+     * Localized name of the choice made in a user message.
+     *
+     *
+     *
+     * Corresponds to "User choice" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `STRING`
+     * 
+ * + * USER_MESSAGES_CHOICE_NAME = 703; + */ + public static final int USER_MESSAGES_CHOICE_NAME_VALUE = 703; + /** * * @@ -20289,6 +21734,121 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int VIDEO_FALLBACK_POSITION_VALUE = 530; + /** + * + * + *
+     * The duration of the ad break in seconds for a live stream event.
+     *
+     *
+     *
+     * Corresponds to "Ad break duration (seconds)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION = 547; + */ + public static final int VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION_VALUE = 547; + + /** + * + * + *
+     * The ID of the ad break in a live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream ad break ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID = 548; + */ + public static final int VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID_VALUE = 548; + + /** + * + * + *
+     * The name of the ad break in a live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream ad break" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME = 549; + */ + public static final int VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME_VALUE = 549; + + /** + * + * + *
+     * The time of the ad break in a live stream event in the format of
+     *  YYYY-MM-DD HH:MM:SS+Timezone.
+     *
+     *
+     *
+     * Corresponds to "Ad break time" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `TIMESTAMP`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME = 550; + */ + public static final int VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME_VALUE = 550; + + /** + * + * + *
+     * The ID of the live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream ID" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_ID = 551; + */ + public static final int VIDEO_LIVE_STREAM_EVENT_ID_VALUE = 551; + + /** + * + * + *
+     * The name of the live stream event.
+     *
+     *
+     *
+     * Corresponds to "Live stream" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * VIDEO_LIVE_STREAM_EVENT_NAME = 552; + */ + public static final int VIDEO_LIVE_STREAM_EVENT_NAME_VALUE = 552; + /** * * @@ -20484,6 +22044,25 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { */ public static final int VIDEO_STITCHER_TYPE_NAME_VALUE = 753; + /** + * + * + *
+     * Web property code
+     *
+     *
+     *
+     * Corresponds to "Web property code" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `STRING`
+     * 
+ * + * WEB_PROPERTY_CODE = 730; + */ + public static final int WEB_PROPERTY_CODE_VALUE = 730; + /** * * @@ -20645,7 +22224,7 @@ public enum Dimension implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * YouTube instream Ad Type locallized name.
+     * YouTube instream Ad Type localized name.
      *
      *
      *
@@ -23312,6 +24891,8 @@ public static Dimension forNumber(int value) {
           return AD_LOCATION;
         case 391:
           return AD_LOCATION_NAME;
+        case 541:
+          return AD_REQUEST_SIZES;
         case 620:
           return AD_TECHNOLOGY_PROVIDER_DOMAIN;
         case 621:
@@ -23456,6 +25037,10 @@ public static Dimension forNumber(int value) {
           return AGE_BRACKET;
         case 582:
           return AGE_BRACKET_NAME;
+        case 733:
+          return ANALYTICS_PROPERTY_ID;
+        case 767:
+          return ANALYTICS_PROPERTY_NAME;
         case 442:
           return APP_TRACKING_TRANSPARENCY_CONSENT_STATUS;
         case 443:
@@ -23466,10 +25051,46 @@ public static Dimension forNumber(int value) {
           return AUCTION_PACKAGE_DEAL;
         case 571:
           return AUCTION_PACKAGE_DEAL_ID;
+        case 594:
+          return AUDIENCE_SEGMENT_BILLABLE;
+        case 613:
+          return AUDIENCE_SEGMENT_DATA_PROVIDER_ID;
+        case 614:
+          return AUDIENCE_SEGMENT_DATA_PROVIDER_NAME;
+        case 595:
+          return AUDIENCE_SEGMENT_ID_BILLABLE;
         case 584:
           return AUDIENCE_SEGMENT_ID_TARGETED;
         case 585:
           return AUDIENCE_SEGMENT_TARGETED;
+        case 605:
+          return AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE;
+        case 606:
+          return AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE;
+        case 607:
+          return AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE;
+        case 608:
+          return AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE;
+        case 609:
+          return AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE;
+        case 610:
+          return AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE;
+        case 611:
+          return AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE;
+        case 612:
+          return AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE;
+        case 615:
+          return AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE;
+        case 616:
+          return AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE;
+        case 618:
+          return AUDIENCE_SEGMENT_TARGETED_SIZE;
+        case 628:
+          return AUDIENCE_SEGMENT_TARGETED_STATUS;
+        case 617:
+          return AUDIENCE_SEGMENT_TARGETED_STATUS_NAME;
+        case 619:
+          return AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE;
         case 421:
           return AUTO_REFRESHED_TRAFFIC;
         case 422:
@@ -23528,6 +25149,14 @@ public static Dimension forNumber(int value) {
           return CLASSIFIED_BRAND_ID;
         case 244:
           return CLASSIFIED_BRAND_NAME;
+        case 460:
+          return CONTENT_BUNDLE_ID;
+        case 461:
+          return CONTENT_BUNDLE_NAME;
+        case 462:
+          return CONTENT_CMS_METADATA_KV_NAMESPACE_ID;
+        case 463:
+          return CONTENT_CMS_METADATA_KV_NAMESPACE_NAME;
         case 643:
           return CONTENT_CMS_NAME;
         case 644:
@@ -23746,6 +25375,8 @@ public static Dimension forNumber(int value) {
           return KEY_VALUES_ID;
         case 215:
           return KEY_VALUES_NAME;
+        case 713:
+          return KEY_VALUES_SET;
         case 663:
           return LINE_ITEM_AGENCY;
         case 188:
@@ -23998,6 +25629,14 @@ public static Dimension forNumber(int value) {
           return PAGE_TITLE_AND_SCREEN_CLASS;
         case 513:
           return PAGE_TITLE_AND_SCREEN_NAME;
+        case 657:
+          return PARTNER_MANAGEMENT_ASSIGNMENT_ID;
+        case 658:
+          return PARTNER_MANAGEMENT_ASSIGNMENT_NAME;
+        case 655:
+          return PARTNER_MANAGEMENT_PARTNER_ID;
+        case 656:
+          return PARTNER_MANAGEMENT_PARTNER_NAME;
         case 113:
           return PLACEMENT_ID;
         case 144:
@@ -24086,6 +25725,8 @@ public static Dimension forNumber(int value) {
           return REQUEST_TYPE;
         case 147:
           return REQUEST_TYPE_NAME;
+        case 645:
+          return REVENUE_VERIFICATION_ID;
         case 597:
           return SERVER_SIDE_UNWRAPPING_ELIGIBLE;
         case 631:
@@ -24124,6 +25765,10 @@ public static Dimension forNumber(int value) {
           return URL;
         case 507:
           return URL_ID;
+        case 702:
+          return USER_MESSAGES_CHOICE;
+        case 703:
+          return USER_MESSAGES_CHOICE_NAME;
         case 635:
           return USER_MESSAGES_ENTITLEMENT_SOURCE;
         case 636:
@@ -24166,6 +25811,18 @@ public static Dimension forNumber(int value) {
           return VIDEO_CONTINUOUS_PLAY_TYPE_NAME;
         case 530:
           return VIDEO_FALLBACK_POSITION;
+        case 547:
+          return VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION;
+        case 548:
+          return VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID;
+        case 549:
+          return VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME;
+        case 550:
+          return VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME;
+        case 551:
+          return VIDEO_LIVE_STREAM_EVENT_ID;
+        case 552:
+          return VIDEO_LIVE_STREAM_EVENT_NAME;
         case 601:
           return VIDEO_MEASUREMENT_SOURCE;
         case 602:
@@ -24186,6 +25843,8 @@ public static Dimension forNumber(int value) {
           return VIDEO_STITCHER_TYPE;
         case 753:
           return VIDEO_STITCHER_TYPE_NAME;
+        case 730:
+          return WEB_PROPERTY_CODE;
         case 5:
           return WEEK;
         case 184:
@@ -24663,6 +26322,7 @@ private static Dimension[] getStaticValuesArray() {
         AD_EXPERIENCES_TYPE_NAME,
         AD_LOCATION,
         AD_LOCATION_NAME,
+        AD_REQUEST_SIZES,
         AD_TECHNOLOGY_PROVIDER_DOMAIN,
         AD_TECHNOLOGY_PROVIDER_ID,
         AD_TECHNOLOGY_PROVIDER_NAME,
@@ -24735,13 +26395,33 @@ private static Dimension[] getStaticValuesArray() {
         AGENCY_LEVEL_3_NAME,
         AGE_BRACKET,
         AGE_BRACKET_NAME,
+        ANALYTICS_PROPERTY_ID,
+        ANALYTICS_PROPERTY_NAME,
         APP_TRACKING_TRANSPARENCY_CONSENT_STATUS,
         APP_TRACKING_TRANSPARENCY_CONSENT_STATUS_NAME,
         APP_VERSION,
         AUCTION_PACKAGE_DEAL,
         AUCTION_PACKAGE_DEAL_ID,
+        AUDIENCE_SEGMENT_BILLABLE,
+        AUDIENCE_SEGMENT_DATA_PROVIDER_ID,
+        AUDIENCE_SEGMENT_DATA_PROVIDER_NAME,
+        AUDIENCE_SEGMENT_ID_BILLABLE,
         AUDIENCE_SEGMENT_ID_TARGETED,
         AUDIENCE_SEGMENT_TARGETED,
+        AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_SIZE,
+        AUDIENCE_SEGMENT_TARGETED_STATUS,
+        AUDIENCE_SEGMENT_TARGETED_STATUS_NAME,
+        AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE,
         AUTO_REFRESHED_TRAFFIC,
         AUTO_REFRESHED_TRAFFIC_NAME,
         BIDDER_ENCRYPTED_ID,
@@ -24771,6 +26451,10 @@ private static Dimension[] getStaticValuesArray() {
         CLASSIFIED_ADVERTISER_NAME,
         CLASSIFIED_BRAND_ID,
         CLASSIFIED_BRAND_NAME,
+        CONTENT_BUNDLE_ID,
+        CONTENT_BUNDLE_NAME,
+        CONTENT_CMS_METADATA_KV_NAMESPACE_ID,
+        CONTENT_CMS_METADATA_KV_NAMESPACE_NAME,
         CONTENT_CMS_NAME,
         CONTENT_CMS_VIDEO_ID,
         CONTENT_ID,
@@ -24880,6 +26564,7 @@ private static Dimension[] getStaticValuesArray() {
         IS_FIRST_LOOK_DEAL,
         KEY_VALUES_ID,
         KEY_VALUES_NAME,
+        KEY_VALUES_SET,
         LINE_ITEM_AGENCY,
         LINE_ITEM_ARCHIVED,
         LINE_ITEM_COMPANION_DELIVERY_OPTION,
@@ -25006,6 +26691,10 @@ private static Dimension[] getStaticValuesArray() {
         PAGE_PATH,
         PAGE_TITLE_AND_SCREEN_CLASS,
         PAGE_TITLE_AND_SCREEN_NAME,
+        PARTNER_MANAGEMENT_ASSIGNMENT_ID,
+        PARTNER_MANAGEMENT_ASSIGNMENT_NAME,
+        PARTNER_MANAGEMENT_PARTNER_ID,
+        PARTNER_MANAGEMENT_PARTNER_NAME,
         PLACEMENT_ID,
         PLACEMENT_ID_ALL,
         PLACEMENT_NAME,
@@ -25052,6 +26741,7 @@ private static Dimension[] getStaticValuesArray() {
         REQUESTED_AD_SIZES,
         REQUEST_TYPE,
         REQUEST_TYPE_NAME,
+        REVENUE_VERIFICATION_ID,
         SERVER_SIDE_UNWRAPPING_ELIGIBLE,
         SERVING_RESTRICTION,
         SERVING_RESTRICTION_NAME,
@@ -25071,6 +26761,8 @@ private static Dimension[] getStaticValuesArray() {
         UNIFIED_PRICING_RULE_NAME,
         URL,
         URL_ID,
+        USER_MESSAGES_CHOICE,
+        USER_MESSAGES_CHOICE_NAME,
         USER_MESSAGES_ENTITLEMENT_SOURCE,
         USER_MESSAGES_ENTITLEMENT_SOURCE_NAME,
         USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_ID,
@@ -25092,6 +26784,12 @@ private static Dimension[] getStaticValuesArray() {
         VIDEO_CONTINUOUS_PLAY_TYPE,
         VIDEO_CONTINUOUS_PLAY_TYPE_NAME,
         VIDEO_FALLBACK_POSITION,
+        VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION,
+        VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID,
+        VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME,
+        VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME,
+        VIDEO_LIVE_STREAM_EVENT_ID,
+        VIDEO_LIVE_STREAM_EVENT_NAME,
         VIDEO_MEASUREMENT_SOURCE,
         VIDEO_MEASUREMENT_SOURCE_NAME,
         VIDEO_PLCMT,
@@ -25102,6 +26800,7 @@ private static Dimension[] getStaticValuesArray() {
         VIDEO_SDK_VERSION_NAME,
         VIDEO_STITCHER_TYPE,
         VIDEO_STITCHER_TYPE_NAME,
+        WEB_PROPERTY_CODE,
         WEEK,
         YIELD_GROUP_BUYER_NAME,
         YIELD_GROUP_BUYER_TAG_NAME,
@@ -26688,7 +28387,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      * The ratio of matched ad requests served by the Ad Exchange that
      *  resulted in users clicking on an ad. The clickthrough rate (CTR) is
      *  updated nightly. Ad Exchange Matched Request CTR is calculated as:
-     *  (Ad Exchange clicks / Ad Exchange Macthed Ad Requests).
+     *  (Ad Exchange clicks / Ad Exchange Matched Ad Requests).
      *
      *
      *
@@ -27568,6 +29267,46 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      * AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS = 338;
      */
     AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS(114, 338),
+    /**
+     *
+     *
+     * 
+     * Total number of ad server VAST errors discounting errors generated from
+     *  video fallback ads.
+     *
+     *
+     *
+     * Corresponds to "Ad Server opportunities from errors" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AD_SERVER_OPPORTUNITIES_FROM_ERRORS = 461; + */ + AD_SERVER_OPPORTUNITIES_FROM_ERRORS(115, 461), + /** + * + * + *
+     * Total number of ad server impressions discounting video fallback
+     *  impressions.
+     *
+     *
+     *
+     * Corresponds to "Ad Server opportunities from impressions" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS = 462; + */ + AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS(116, 462), /** * * @@ -27586,7 +29325,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_PERCENT_CLICKS = 12; */ - AD_SERVER_PERCENT_CLICKS(115, 12), + AD_SERVER_PERCENT_CLICKS(117, 12), /** * * @@ -27605,7 +29344,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_PERCENT_IMPRESSIONS = 11; */ - AD_SERVER_PERCENT_IMPRESSIONS(116, 11), + AD_SERVER_PERCENT_IMPRESSIONS(118, 11), /** * * @@ -27624,7 +29363,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_PERCENT_REVENUE = 35; */ - AD_SERVER_PERCENT_REVENUE(117, 35), + AD_SERVER_PERCENT_REVENUE(119, 35), /** * * @@ -27643,7 +29382,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13; */ - AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD(118, 13), + AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD(120, 13), /** * * @@ -27661,7 +29400,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_RESPONSES_SERVED = 40; */ - AD_SERVER_RESPONSES_SERVED(119, 40), + AD_SERVER_RESPONSES_SERVED(121, 40), /** * * @@ -27681,7 +29420,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_REVENUE = 33; */ - AD_SERVER_REVENUE(120, 33), + AD_SERVER_REVENUE(122, 33), /** * * @@ -27702,7 +29441,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT = 213; */ - AD_SERVER_REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT(121, 213), + AD_SERVER_REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT(123, 213), /** * * @@ -27722,7 +29461,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_REVENUE_WITHOUT_CPD = 9; */ - AD_SERVER_REVENUE_WITHOUT_CPD(122, 9), + AD_SERVER_REVENUE_WITHOUT_CPD(124, 9), /** * * @@ -27741,7 +29480,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_TARGETED_CLICKS = 274; */ - AD_SERVER_TARGETED_CLICKS(123, 274), + AD_SERVER_TARGETED_CLICKS(125, 274), /** * * @@ -27760,7 +29499,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_TARGETED_IMPRESSIONS = 275; */ - AD_SERVER_TARGETED_IMPRESSIONS(124, 275), + AD_SERVER_TARGETED_IMPRESSIONS(126, 275), /** * * @@ -27778,7 +29517,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_TRACKED_ADS = 264; */ - AD_SERVER_TRACKED_ADS(125, 264), + AD_SERVER_TRACKED_ADS(127, 264), /** * * @@ -27799,7 +29538,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261; */ - AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS(126, 261), + AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS(128, 261), /** * * @@ -27817,7 +29556,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_UNFILTERED_CLICKS = 259; */ - AD_SERVER_UNFILTERED_CLICKS(127, 259), + AD_SERVER_UNFILTERED_CLICKS(129, 259), /** * * @@ -27837,7 +29576,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_UNFILTERED_DOWNLOADED_IMPRESSIONS = 260; */ - AD_SERVER_UNFILTERED_DOWNLOADED_IMPRESSIONS(128, 260), + AD_SERVER_UNFILTERED_DOWNLOADED_IMPRESSIONS(130, 260), /** * * @@ -27856,7 +29595,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_SERVER_UNFILTERED_TRACKED_ADS = 263; */ - AD_SERVER_UNFILTERED_TRACKED_ADS(130, 263), + AD_SERVER_UNFILTERED_TRACKED_ADS(132, 263), /** * * @@ -27875,7 +29614,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_UNIT_EXPOSURE_SECONDS = 242; */ - AD_UNIT_EXPOSURE_SECONDS(131, 242), + AD_UNIT_EXPOSURE_SECONDS(133, 242), /** * * @@ -27894,7 +29633,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AD_VIEWERS = 425; */ - AD_VIEWERS(132, 425), + AD_VIEWERS(134, 425), /** * * @@ -27913,7 +29652,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_ADS_FAILED_TO_RENDER = 430; */ - ATN_ADS_FAILED_TO_RENDER(133, 430), + ATN_ADS_FAILED_TO_RENDER(135, 430), /** * * @@ -27932,7 +29671,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_ELIGIBLE_LINE_ITEMS = 342; */ - ATN_ELIGIBLE_LINE_ITEMS(134, 342), + ATN_ELIGIBLE_LINE_ITEMS(136, 342), /** * * @@ -27952,7 +29691,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_ELIGIBLE_LINE_ITEMS_AD_REQUESTS = 343; */ - ATN_ELIGIBLE_LINE_ITEMS_AD_REQUESTS(135, 343), + ATN_ELIGIBLE_LINE_ITEMS_AD_REQUESTS(137, 343), /** * * @@ -27972,7 +29711,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_ALLOWED_AD_REQUESTS = 344; */ - ATN_HBT_ALLOWED_AD_REQUESTS(136, 344), + ATN_HBT_ALLOWED_AD_REQUESTS(138, 344), /** * * @@ -27992,7 +29731,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_BIDS_IN_AUCTION = 345; */ - ATN_HBT_BIDS_IN_AUCTION(137, 345), + ATN_HBT_BIDS_IN_AUCTION(139, 345), /** * * @@ -28012,7 +29751,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_BIDS_IN_AUCTION_AD_REQUESTS = 346; */ - ATN_HBT_BIDS_IN_AUCTION_AD_REQUESTS(138, 346), + ATN_HBT_BIDS_IN_AUCTION_AD_REQUESTS(140, 346), /** * * @@ -28031,7 +29770,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_CANDIDATE_BIDS = 347; */ - ATN_HBT_CANDIDATE_BIDS(139, 347), + ATN_HBT_CANDIDATE_BIDS(141, 347), /** * * @@ -28051,7 +29790,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_INVALID_AD_REQUESTS = 348; */ - ATN_HBT_INVALID_AD_REQUESTS(140, 348), + ATN_HBT_INVALID_AD_REQUESTS(142, 348), /** * * @@ -28061,7 +29800,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Header bidding trafficking ad requests with no bids" in + * Corresponds to "Ad requests with no header bidding trafficking bids" in * the Ad Manager UI. * * Compatible with the following report types: @@ -28071,7 +29810,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_NO_BIDS_AD_REQUESTS = 472; */ - ATN_HBT_NO_BIDS_AD_REQUESTS(141, 472), + ATN_HBT_NO_BIDS_AD_REQUESTS(143, 472), /** * * @@ -28091,7 +29830,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_REJECTED_BIDS = 349; */ - ATN_HBT_REJECTED_BIDS(142, 349), + ATN_HBT_REJECTED_BIDS(144, 349), /** * * @@ -28111,7 +29850,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_VALID_AD_REQUESTS = 350; */ - ATN_HBT_VALID_AD_REQUESTS(143, 350), + ATN_HBT_VALID_AD_REQUESTS(145, 350), /** * * @@ -28121,7 +29860,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Header bidding trafficking ad requests with bids" in the + * Corresponds to "Ad requests with header bidding trafficking bids" in the * Ad Manager UI. * * Compatible with the following report types: @@ -28131,7 +29870,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_HBT_WITH_BIDS_AD_REQUESTS = 473; */ - ATN_HBT_WITH_BIDS_AD_REQUESTS(144, 473), + ATN_HBT_WITH_BIDS_AD_REQUESTS(146, 473), /** * * @@ -28149,7 +29888,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_INVALID_AD_REQUESTS = 351; */ - ATN_INVALID_AD_REQUESTS(145, 351), + ATN_INVALID_AD_REQUESTS(147, 351), /** * * @@ -28159,7 +29898,8 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Creative not retrieved" in the Ad Manager UI. + * Corresponds to "Line items with no creative retrieved" in the Ad Manager + * UI. * * Compatible with the following report types: * @@ -28168,7 +29908,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_LINE_ITEMS_CREATIVE_NOT_RETRIEVED = 476; */ - ATN_LINE_ITEMS_CREATIVE_NOT_RETRIEVED(146, 476), + ATN_LINE_ITEMS_CREATIVE_NOT_RETRIEVED(148, 476), /** * * @@ -28187,7 +29927,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_LINE_ITEMS_IN_AUCTION = 352; */ - ATN_LINE_ITEMS_IN_AUCTION(147, 352), + ATN_LINE_ITEMS_IN_AUCTION(149, 352), /** * * @@ -28206,7 +29946,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_LINE_ITEMS_NOT_COMPETING = 515; */ - ATN_LINE_ITEMS_NOT_COMPETING(148, 515), + ATN_LINE_ITEMS_NOT_COMPETING(150, 515), /** * * @@ -28216,7 +29956,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Not selected to compete" in the Ad Manager UI. + * Corresponds to "Line items not selected to compete" in the Ad Manager UI. * * Compatible with the following report types: * @@ -28225,7 +29965,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_LINE_ITEMS_NOT_SELECTED = 353; */ - ATN_LINE_ITEMS_NOT_SELECTED(149, 353), + ATN_LINE_ITEMS_NOT_SELECTED(151, 353), /** * * @@ -28245,7 +29985,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_LINE_ITEM_IN_AUCTION_AD_REQUESTS = 354; */ - ATN_LINE_ITEM_IN_AUCTION_AD_REQUESTS(150, 354), + ATN_LINE_ITEM_IN_AUCTION_AD_REQUESTS(152, 354), /** * * @@ -28265,7 +30005,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_LINE_ITEM_TARGETED_AD_REQUESTS = 355; */ - ATN_LINE_ITEM_TARGETED_AD_REQUESTS(151, 355), + ATN_LINE_ITEM_TARGETED_AD_REQUESTS(153, 355), /** * * @@ -28284,7 +30024,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_ALLOWED_AD_REQUESTS = 356; */ - ATN_MEDIATION_ALLOWED_AD_REQUESTS(152, 356), + ATN_MEDIATION_ALLOWED_AD_REQUESTS(154, 356), /** * * @@ -28304,7 +30044,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_INVALID_AD_REQUESTS = 357; */ - ATN_MEDIATION_INVALID_AD_REQUESTS(153, 357), + ATN_MEDIATION_INVALID_AD_REQUESTS(155, 357), /** * * @@ -28323,7 +30063,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_LOADED_ADS_FROM_CHAINS = 358; */ - ATN_MEDIATION_LOADED_ADS_FROM_CHAINS(154, 358), + ATN_MEDIATION_LOADED_ADS_FROM_CHAINS(156, 358), /** * * @@ -28333,8 +30073,8 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Mediation requests with no partners" in the Ad Manager - * UI. + * Corresponds to "Ad requests with no targeted mediation partners" in the + * Ad Manager UI. * * Compatible with the following report types: * @@ -28343,7 +30083,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_NO_PARTNER_AD_REQUESTS = 474; */ - ATN_MEDIATION_NO_PARTNER_AD_REQUESTS(155, 474), + ATN_MEDIATION_NO_PARTNER_AD_REQUESTS(157, 474), /** * * @@ -28362,7 +30102,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_PARTNERS_IN_AUCTION = 359; */ - ATN_MEDIATION_PARTNERS_IN_AUCTION(156, 359), + ATN_MEDIATION_PARTNERS_IN_AUCTION(158, 359), /** * * @@ -28382,7 +30122,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_PARTNERS_IN_AUCTION_AD_REQUESTS = 360; */ - ATN_MEDIATION_PARTNERS_IN_AUCTION_AD_REQUESTS(157, 360), + ATN_MEDIATION_PARTNERS_IN_AUCTION_AD_REQUESTS(159, 360), /** * * @@ -28401,7 +30141,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_REJECTED_PARTNERS = 361; */ - ATN_MEDIATION_REJECTED_PARTNERS(158, 361), + ATN_MEDIATION_REJECTED_PARTNERS(160, 361), /** * * @@ -28420,7 +30160,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_TARGETED_PARTNERS = 362; */ - ATN_MEDIATION_TARGETED_PARTNERS(159, 362), + ATN_MEDIATION_TARGETED_PARTNERS(161, 362), /** * * @@ -28439,7 +30179,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_TOTAL_YIELD_PARTNERS = 442; */ - ATN_MEDIATION_TOTAL_YIELD_PARTNERS(160, 442), + ATN_MEDIATION_TOTAL_YIELD_PARTNERS(162, 442), /** * * @@ -28458,7 +30198,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_UNLOADED_ADS_FROM_CHAINS = 363; */ - ATN_MEDIATION_UNLOADED_ADS_FROM_CHAINS(161, 363), + ATN_MEDIATION_UNLOADED_ADS_FROM_CHAINS(163, 363), /** * * @@ -28477,7 +30217,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_UNUSED_BIDS_OR_PARTNERS = 364; */ - ATN_MEDIATION_UNUSED_BIDS_OR_PARTNERS(162, 364), + ATN_MEDIATION_UNUSED_BIDS_OR_PARTNERS(164, 364), /** * * @@ -28496,7 +30236,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_VALID_AD_REQUESTS = 365; */ - ATN_MEDIATION_VALID_AD_REQUESTS(163, 365), + ATN_MEDIATION_VALID_AD_REQUESTS(165, 365), /** * * @@ -28516,7 +30256,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_MEDIATION_WITH_PARTNERS_AD_REQUESTS = 475; */ - ATN_MEDIATION_WITH_PARTNERS_AD_REQUESTS(164, 475), + ATN_MEDIATION_WITH_PARTNERS_AD_REQUESTS(166, 475), /** * * @@ -28535,7 +30275,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_AD_REQUESTS_WITH_BIDS = 366; */ - ATN_PROGRAMMATIC_AD_REQUESTS_WITH_BIDS(165, 366), + ATN_PROGRAMMATIC_AD_REQUESTS_WITH_BIDS(167, 366), /** * * @@ -28554,7 +30294,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_AD_REQUESTS_WITH_BID_REQUESTS_SENT = 367; */ - ATN_PROGRAMMATIC_AD_REQUESTS_WITH_BID_REQUESTS_SENT(166, 367), + ATN_PROGRAMMATIC_AD_REQUESTS_WITH_BID_REQUESTS_SENT(168, 367), /** * * @@ -28573,7 +30313,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_ALLOWED_AD_REQUESTS = 368; */ - ATN_PROGRAMMATIC_ALLOWED_AD_REQUESTS(167, 368), + ATN_PROGRAMMATIC_ALLOWED_AD_REQUESTS(169, 368), /** * * @@ -28592,7 +30332,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_BIDS_IN_AUCTION = 369; */ - ATN_PROGRAMMATIC_BIDS_IN_AUCTION(168, 369), + ATN_PROGRAMMATIC_BIDS_IN_AUCTION(170, 369), /** * * @@ -28612,7 +30352,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_BID_IN_AUCTION_AD_REQUESTS = 370; */ - ATN_PROGRAMMATIC_BID_IN_AUCTION_AD_REQUESTS(169, 370), + ATN_PROGRAMMATIC_BID_IN_AUCTION_AD_REQUESTS(171, 370), /** * * @@ -28631,7 +30371,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_BID_REQUESTS_SENT = 371; */ - ATN_PROGRAMMATIC_BID_REQUESTS_SENT(170, 371), + ATN_PROGRAMMATIC_BID_REQUESTS_SENT(172, 371), /** * * @@ -28650,7 +30390,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_BID_REQUESTS_WITH_RESPONSE = 372; */ - ATN_PROGRAMMATIC_BID_REQUESTS_WITH_RESPONSE(171, 372), + ATN_PROGRAMMATIC_BID_REQUESTS_WITH_RESPONSE(173, 372), /** * * @@ -28669,7 +30409,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_BID_REQUEST_CANDIDATES = 373; */ - ATN_PROGRAMMATIC_BID_REQUEST_CANDIDATES(172, 373), + ATN_PROGRAMMATIC_BID_REQUEST_CANDIDATES(174, 373), /** * * @@ -28688,7 +30428,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_BID_REQUEST_ERRORS = 374; */ - ATN_PROGRAMMATIC_BID_REQUEST_ERRORS(173, 374), + ATN_PROGRAMMATIC_BID_REQUEST_ERRORS(175, 374), /** * * @@ -28708,7 +30448,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_INELIGIBLE_AD_REQUESTS = 375; */ - ATN_PROGRAMMATIC_INELIGIBLE_AD_REQUESTS(174, 375), + ATN_PROGRAMMATIC_INELIGIBLE_AD_REQUESTS(176, 375), /** * * @@ -28727,7 +30467,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_REJECTED_BIDS = 376; */ - ATN_PROGRAMMATIC_REJECTED_BIDS(175, 376), + ATN_PROGRAMMATIC_REJECTED_BIDS(177, 376), /** * * @@ -28746,7 +30486,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_SKIPPED_BID_REQUESTS = 377; */ - ATN_PROGRAMMATIC_SKIPPED_BID_REQUESTS(176, 377), + ATN_PROGRAMMATIC_SKIPPED_BID_REQUESTS(178, 377), /** * * @@ -28765,7 +30505,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_TOTAL_BIDS = 378; */ - ATN_PROGRAMMATIC_TOTAL_BIDS(177, 378), + ATN_PROGRAMMATIC_TOTAL_BIDS(179, 378), /** * * @@ -28785,7 +30525,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_PROGRAMMATIC_VALID_AD_REQUESTS = 379; */ - ATN_PROGRAMMATIC_VALID_AD_REQUESTS(178, 379), + ATN_PROGRAMMATIC_VALID_AD_REQUESTS(180, 379), /** * * @@ -28804,7 +30544,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_REJECTED_LINE_ITEMS = 380; */ - ATN_REJECTED_LINE_ITEMS(179, 380), + ATN_REJECTED_LINE_ITEMS(181, 380), /** * * @@ -28823,7 +30563,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_SERVED_MEDIATION_CHAINS = 381; */ - ATN_SERVED_MEDIATION_CHAINS(180, 381), + ATN_SERVED_MEDIATION_CHAINS(182, 381), /** * * @@ -28841,7 +30581,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_SERVED_SINGLE_ADS = 382; */ - ATN_SERVED_SINGLE_ADS(181, 382), + ATN_SERVED_SINGLE_ADS(183, 382), /** * * @@ -28860,7 +30600,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_TARGETED_LINE_ITEMS = 383; */ - ATN_TARGETED_LINE_ITEMS(182, 383), + ATN_TARGETED_LINE_ITEMS(184, 383), /** * * @@ -28870,7 +30610,8 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Total ad requests (ATN)" in the Ad Manager UI. + * Corresponds to "Total ad requests (Ads traffic navigator)" in the Ad + * Manager UI. * * Compatible with the following report types: * @@ -28879,7 +30620,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_TOTAL_AD_REQUESTS = 384; */ - ATN_TOTAL_AD_REQUESTS(183, 384), + ATN_TOTAL_AD_REQUESTS(185, 384), /** * * @@ -28897,7 +30638,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_TOTAL_COMPETING_ADS_IN_AUCTION = 385; */ - ATN_TOTAL_COMPETING_ADS_IN_AUCTION(184, 385), + ATN_TOTAL_COMPETING_ADS_IN_AUCTION(186, 385), /** * * @@ -28915,7 +30656,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_TOTAL_LOADED_ADS = 387; */ - ATN_TOTAL_LOADED_ADS(185, 387), + ATN_TOTAL_LOADED_ADS(187, 387), /** * * @@ -28933,7 +30674,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_VALID_AD_REQUESTS = 389; */ - ATN_VALID_AD_REQUESTS(186, 389), + ATN_VALID_AD_REQUESTS(188, 389), /** * * @@ -28952,7 +30693,25 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ATN_YIELD_GROUP_MEDIATION_PASSBACKS = 390; */ - ATN_YIELD_GROUP_MEDIATION_PASSBACKS(187, 390), + ATN_YIELD_GROUP_MEDIATION_PASSBACKS(189, 390), + /** + * + * + *
+     * Cost of the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment cost" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * AUDIENCE_SEGMENT_COST = 558; + */ + AUDIENCE_SEGMENT_COST(190, 558), /** * * @@ -28971,7 +30730,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_ECPM = 37; */ - AVERAGE_ECPM(188, 37), + AVERAGE_ECPM(191, 37), /** * * @@ -28983,14 +30742,14 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total average eCPM w/o CPD" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `MONEY` *
* * AVERAGE_ECPM_WITHOUT_CPD = 5; */ - AVERAGE_ECPM_WITHOUT_CPD(189, 5), + AVERAGE_ECPM_WITHOUT_CPD(192, 5), /** * * @@ -29009,7 +30768,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_ENGAGEMENT_SECONDS_PER_SESSION = 224; */ - AVERAGE_ENGAGEMENT_SECONDS_PER_SESSION(190, 224), + AVERAGE_ENGAGEMENT_SECONDS_PER_SESSION(193, 224), /** * * @@ -29028,7 +30787,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_ENGAGEMENT_SECONDS_PER_USER = 225; */ - AVERAGE_ENGAGEMENT_SECONDS_PER_USER(191, 225), + AVERAGE_ENGAGEMENT_SECONDS_PER_USER(194, 225), /** * * @@ -29046,7 +30805,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_IMPRESSIONS_PER_UNIQUE_VISITOR = 418; */ - AVERAGE_IMPRESSIONS_PER_UNIQUE_VISITOR(192, 418), + AVERAGE_IMPRESSIONS_PER_UNIQUE_VISITOR(195, 418), /** * * @@ -29064,7 +30823,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_PURCHASE_REVENUE_PER_PAYING_USER = 226; */ - AVERAGE_PURCHASE_REVENUE_PER_PAYING_USER(193, 226), + AVERAGE_PURCHASE_REVENUE_PER_PAYING_USER(196, 226), /** * * @@ -29082,7 +30841,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_REVENUE_PER_USER = 227; */ - AVERAGE_REVENUE_PER_USER(194, 227), + AVERAGE_REVENUE_PER_USER(197, 227), /** * * @@ -29100,7 +30859,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * AVERAGE_SESSION_SECONDS = 228; */ - AVERAGE_SESSION_SECONDS(195, 228), + AVERAGE_SESSION_SECONDS(198, 228), /** * * @@ -29118,7 +30877,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * BIDS = 443; */ - BIDS(196, 443), + BIDS(199, 443), /** * * @@ -29136,7 +30895,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * BID_AVERAGE_CPM = 444; */ - BID_AVERAGE_CPM(197, 444), + BID_AVERAGE_CPM(200, 444), /** * * @@ -29154,7 +30913,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * BOUNCE_RATE = 433; */ - BOUNCE_RATE(198, 433), + BOUNCE_RATE(201, 433), /** * * @@ -29165,14 +30924,14 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total clicks" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `INTEGER` *
* * CLICKS = 2; */ - CLICKS(199, 2), + CLICKS(202, 2), /** * * @@ -29191,7 +30950,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CODE_SERVED_COUNT = 44; */ - CODE_SERVED_COUNT(200, 44), + CODE_SERVED_COUNT(203, 44), /** * * @@ -29209,7 +30968,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CPC_REVENUE = 440; */ - CPC_REVENUE(201, 440), + CPC_REVENUE(204, 440), /** * * @@ -29227,7 +30986,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CPM_REVENUE = 441; */ - CPM_REVENUE(202, 441), + CPM_REVENUE(205, 441), /** * * @@ -29245,7 +31004,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_LOAD_TIME_0_500_PERCENT = 324; */ - CREATIVE_LOAD_TIME_0_500_PERCENT(203, 324), + CREATIVE_LOAD_TIME_0_500_PERCENT(206, 324), /** * * @@ -29263,7 +31022,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_LOAD_TIME_1000_2000_PERCENT = 326; */ - CREATIVE_LOAD_TIME_1000_2000_PERCENT(204, 326), + CREATIVE_LOAD_TIME_1000_2000_PERCENT(207, 326), /** * * @@ -29281,7 +31040,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_LOAD_TIME_2000_4000_PERCENT = 327; */ - CREATIVE_LOAD_TIME_2000_4000_PERCENT(205, 327), + CREATIVE_LOAD_TIME_2000_4000_PERCENT(208, 327), /** * * @@ -29299,7 +31058,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_LOAD_TIME_4000_8000_PERCENT = 328; */ - CREATIVE_LOAD_TIME_4000_8000_PERCENT(206, 328), + CREATIVE_LOAD_TIME_4000_8000_PERCENT(209, 328), /** * * @@ -29317,7 +31076,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_LOAD_TIME_500_1000_PERCENT = 325; */ - CREATIVE_LOAD_TIME_500_1000_PERCENT(207, 325), + CREATIVE_LOAD_TIME_500_1000_PERCENT(210, 325), /** * * @@ -29335,7 +31094,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * CREATIVE_LOAD_TIME_GT_8000_PERCENT = 329; */ - CREATIVE_LOAD_TIME_GT_8000_PERCENT(208, 329), + CREATIVE_LOAD_TIME_GT_8000_PERCENT(211, 329), /** * * @@ -29348,14 +31107,14 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total CTR" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `PERCENT` * * * CTR = 3; */ - CTR(209, 3), + CTR(212, 3), /** * * @@ -29373,7 +31132,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DEALS_BIDS = 542; */ - DEALS_BIDS(210, 542), + DEALS_BIDS(213, 542), /** * * @@ -29391,7 +31150,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DEALS_BID_RATE = 543; */ - DEALS_BID_RATE(211, 543), + DEALS_BID_RATE(214, 543), /** * * @@ -29409,7 +31168,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DEALS_BID_REQUESTS = 544; */ - DEALS_BID_REQUESTS(212, 544), + DEALS_BID_REQUESTS(215, 544), /** * * @@ -29427,7 +31186,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DEALS_WINNING_BIDS = 545; */ - DEALS_WINNING_BIDS(213, 545), + DEALS_WINNING_BIDS(216, 545), /** * * @@ -29445,7 +31204,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DEALS_WIN_RATE = 546; */ - DEALS_WIN_RATE(214, 546), + DEALS_WIN_RATE(217, 546), /** * * @@ -29464,7 +31223,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_FIRST_AD_REQUEST_0_500_PERCENT = 521; */ - DOM_LOAD_TO_FIRST_AD_REQUEST_0_500_PERCENT(215, 521), + DOM_LOAD_TO_FIRST_AD_REQUEST_0_500_PERCENT(218, 521), /** * * @@ -29483,7 +31242,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_FIRST_AD_REQUEST_1000_2000_PERCENT = 522; */ - DOM_LOAD_TO_FIRST_AD_REQUEST_1000_2000_PERCENT(216, 522), + DOM_LOAD_TO_FIRST_AD_REQUEST_1000_2000_PERCENT(219, 522), /** * * @@ -29502,7 +31261,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_FIRST_AD_REQUEST_2000_4000_PERCENT = 523; */ - DOM_LOAD_TO_FIRST_AD_REQUEST_2000_4000_PERCENT(217, 523), + DOM_LOAD_TO_FIRST_AD_REQUEST_2000_4000_PERCENT(220, 523), /** * * @@ -29521,7 +31280,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_FIRST_AD_REQUEST_4000_8000_PERCENT = 524; */ - DOM_LOAD_TO_FIRST_AD_REQUEST_4000_8000_PERCENT(218, 524), + DOM_LOAD_TO_FIRST_AD_REQUEST_4000_8000_PERCENT(221, 524), /** * * @@ -29540,7 +31299,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_FIRST_AD_REQUEST_500_1000_PERCENT = 525; */ - DOM_LOAD_TO_FIRST_AD_REQUEST_500_1000_PERCENT(219, 525), + DOM_LOAD_TO_FIRST_AD_REQUEST_500_1000_PERCENT(222, 525), /** * * @@ -29559,7 +31318,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_FIRST_AD_REQUEST_GT_8000_PERCENT = 520; */ - DOM_LOAD_TO_FIRST_AD_REQUEST_GT_8000_PERCENT(220, 520), + DOM_LOAD_TO_FIRST_AD_REQUEST_GT_8000_PERCENT(223, 520), /** * * @@ -29578,7 +31337,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_TAG_LOAD_TIME_0_500_PERCENT = 526; */ - DOM_LOAD_TO_TAG_LOAD_TIME_0_500_PERCENT(221, 526), + DOM_LOAD_TO_TAG_LOAD_TIME_0_500_PERCENT(224, 526), /** * * @@ -29597,7 +31356,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_TAG_LOAD_TIME_1000_2000_PERCENT = 527; */ - DOM_LOAD_TO_TAG_LOAD_TIME_1000_2000_PERCENT(222, 527), + DOM_LOAD_TO_TAG_LOAD_TIME_1000_2000_PERCENT(225, 527), /** * * @@ -29616,7 +31375,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_TAG_LOAD_TIME_2000_4000_PERCENT = 528; */ - DOM_LOAD_TO_TAG_LOAD_TIME_2000_4000_PERCENT(223, 528), + DOM_LOAD_TO_TAG_LOAD_TIME_2000_4000_PERCENT(226, 528), /** * * @@ -29635,7 +31394,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_TAG_LOAD_TIME_4000_8000_PERCENT = 529; */ - DOM_LOAD_TO_TAG_LOAD_TIME_4000_8000_PERCENT(224, 529), + DOM_LOAD_TO_TAG_LOAD_TIME_4000_8000_PERCENT(227, 529), /** * * @@ -29654,7 +31413,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_TAG_LOAD_TIME_500_1000_PERCENT = 531; */ - DOM_LOAD_TO_TAG_LOAD_TIME_500_1000_PERCENT(225, 531), + DOM_LOAD_TO_TAG_LOAD_TIME_500_1000_PERCENT(228, 531), /** * * @@ -29673,7 +31432,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DOM_LOAD_TO_TAG_LOAD_TIME_GT_8000_PERCENT = 530; */ - DOM_LOAD_TO_TAG_LOAD_TIME_GT_8000_PERCENT(226, 530), + DOM_LOAD_TO_TAG_LOAD_TIME_GT_8000_PERCENT(229, 530), /** * * @@ -29691,7 +31450,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * DROPOFF_RATE = 415; */ - DROPOFF_RATE(227, 415), + DROPOFF_RATE(230, 415), /** * * @@ -29709,7 +31468,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ENGAGED_SESSIONS = 229; */ - ENGAGED_SESSIONS(228, 229), + ENGAGED_SESSIONS(231, 229), /** * * @@ -29727,7 +31486,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ENGAGED_SESSIONS_PER_USER = 230; */ - ENGAGED_SESSIONS_PER_USER(229, 230), + ENGAGED_SESSIONS_PER_USER(232, 230), /** * * @@ -29745,7 +31504,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * ENGAGEMENT_RATE = 426; */ - ENGAGEMENT_RATE(230, 426), + ENGAGEMENT_RATE(233, 426), /** * * @@ -29764,7 +31523,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * EUROPEAN_REGULATIONS_CONSENT_RATE = 270; */ - EUROPEAN_REGULATIONS_CONSENT_RATE(231, 270), + EUROPEAN_REGULATIONS_CONSENT_RATE(234, 270), /** * * @@ -29784,7 +31543,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * EUROPEAN_REGULATIONS_CUSTOM_CONSENT_RATE = 271; */ - EUROPEAN_REGULATIONS_CUSTOM_CONSENT_RATE(232, 271), + EUROPEAN_REGULATIONS_CUSTOM_CONSENT_RATE(235, 271), /** * * @@ -29803,7 +31562,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * EUROPEAN_REGULATIONS_MESSAGES_SHOWN = 272; */ - EUROPEAN_REGULATIONS_MESSAGES_SHOWN(233, 272), + EUROPEAN_REGULATIONS_MESSAGES_SHOWN(236, 272), /** * * @@ -29823,7 +31582,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * EUROPEAN_REGULATIONS_NO_CONSENT_RATE = 273; */ - EUROPEAN_REGULATIONS_NO_CONSENT_RATE(234, 273), + EUROPEAN_REGULATIONS_NO_CONSENT_RATE(237, 273), /** * * @@ -29842,7 +31601,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * FILL_RATE = 258; */ - FILL_RATE(235, 258), + FILL_RATE(238, 258), /** * * @@ -29860,7 +31619,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_CLICKS = 231; */ - GOOGLE_ANALYTICS_CLICKS(236, 231), + GOOGLE_ANALYTICS_CLICKS(239, 231), /** * * @@ -29878,7 +31637,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_CTR = 232; */ - GOOGLE_ANALYTICS_CTR(237, 232), + GOOGLE_ANALYTICS_CTR(240, 232), /** * * @@ -29896,7 +31655,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_ECPM = 233; */ - GOOGLE_ANALYTICS_ECPM(238, 233), + GOOGLE_ANALYTICS_ECPM(241, 233), /** * * @@ -29914,7 +31673,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_IMPRESSIONS = 234; */ - GOOGLE_ANALYTICS_IMPRESSIONS(239, 234), + GOOGLE_ANALYTICS_IMPRESSIONS(242, 234), /** * * @@ -29932,7 +31691,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_REVENUE = 235; */ - GOOGLE_ANALYTICS_REVENUE(240, 235), + GOOGLE_ANALYTICS_REVENUE(243, 235), /** * * @@ -29950,7 +31709,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_VIEWS = 236; */ - GOOGLE_ANALYTICS_VIEWS(241, 236), + GOOGLE_ANALYTICS_VIEWS(244, 236), /** * * @@ -29968,7 +31727,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_ANALYTICS_VIEWS_PER_USER = 237; */ - GOOGLE_ANALYTICS_VIEWS_PER_USER(242, 237), + GOOGLE_ANALYTICS_VIEWS_PER_USER(245, 237), /** * * @@ -29987,7 +31746,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129; */ - GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS(243, 129), + GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS(246, 129), /** * * @@ -30005,7 +31764,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128; */ - GOOGLE_SOLD_AUCTION_IMPRESSIONS(244, 128), + GOOGLE_SOLD_AUCTION_IMPRESSIONS(247, 128), /** * * @@ -30024,7 +31783,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131; */ - GOOGLE_SOLD_COVIEWED_IMPRESSIONS(245, 131), + GOOGLE_SOLD_COVIEWED_IMPRESSIONS(248, 131), /** * * @@ -30042,7 +31801,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_SOLD_IMPRESSIONS = 130; */ - GOOGLE_SOLD_IMPRESSIONS(246, 130), + GOOGLE_SOLD_IMPRESSIONS(249, 130), /** * * @@ -30061,7 +31820,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127; */ - GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS(247, 127), + GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS(250, 127), /** * * @@ -30080,7 +31839,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126; */ - GOOGLE_SOLD_RESERVATION_IMPRESSIONS(248, 126), + GOOGLE_SOLD_RESERVATION_IMPRESSIONS(251, 126), /** * * @@ -30092,14 +31851,14 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total impressions" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `INTEGER` * * * IMPRESSIONS = 1; */ - IMPRESSIONS(249, 1), + IMPRESSIONS(252, 1), /** * * @@ -30121,7 +31880,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS = 407; */ - INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS(250, 407), + INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS(253, 407), /** * * @@ -30139,7 +31898,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARES = 547; */ - INVENTORY_SHARES(251, 547), + INVENTORY_SHARES(254, 547), /** * * @@ -30159,7 +31918,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * INVENTORY_SHARE_PARTNER_UNFILLED_OPPORTUNITIES = 548; */ - INVENTORY_SHARE_PARTNER_UNFILLED_OPPORTUNITIES(252, 548), + INVENTORY_SHARE_PARTNER_UNFILLED_OPPORTUNITIES(255, 548), /** * * @@ -30177,7 +31936,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * INVOICED_IMPRESSIONS = 404; */ - INVOICED_IMPRESSIONS(253, 404), + INVOICED_IMPRESSIONS(256, 404), /** * * @@ -30195,7 +31954,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * INVOICED_UNFILLED_IMPRESSIONS = 405; */ - INVOICED_UNFILLED_IMPRESSIONS(254, 405), + INVOICED_UNFILLED_IMPRESSIONS(257, 405), /** * * @@ -30213,7 +31972,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * MEDIATION_CHAINS_FILLED = 584; */ - MEDIATION_CHAINS_FILLED(255, 584), + MEDIATION_CHAINS_FILLED(258, 584), /** * * @@ -30231,7 +31990,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * MUTED_IMPRESSIONS = 412; */ - MUTED_IMPRESSIONS(256, 412), + MUTED_IMPRESSIONS(259, 412), /** * * @@ -30249,7 +32008,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * MUTE_ELIGIBLE_IMPRESSIONS = 409; */ - MUTE_ELIGIBLE_IMPRESSIONS(257, 409), + MUTE_ELIGIBLE_IMPRESSIONS(260, 409), /** * * @@ -30267,7 +32026,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * OPPORTUNITIES = 463; */ - OPPORTUNITIES(258, 463), + OPPORTUNITIES(261, 463), /** * * @@ -30285,7 +32044,282 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * OVERDELIVERED_IMPRESSIONS = 432; */ - OVERDELIVERED_IMPRESSIONS(259, 432), + OVERDELIVERED_IMPRESSIONS(262, 432), + /** + * + * + *
+     * The gross revenue for partner finance reports.
+     *
+     *
+     *
+     * Corresponds to "Gross revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_GROSS_REVENUE = 648; + */ + PARTNER_FINANCE_GROSS_REVENUE(263, 648), + /** + * + * + *
+     * Monthly host eCPM for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Host eCPM" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_HOST_ECPM = 649; + */ + PARTNER_FINANCE_HOST_ECPM(264, 649), + /** + * + * + *
+     * The host impressions for partner finance reports.
+     *
+     *
+     *
+     * Corresponds to "Host impressions" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_FINANCE_HOST_IMPRESSIONS = 650; + */ + PARTNER_FINANCE_HOST_IMPRESSIONS(265, 650), + /** + * + * + *
+     * Monthly host revenue for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Host revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_HOST_REVENUE = 651; + */ + PARTNER_FINANCE_HOST_REVENUE(266, 651), + /** + * + * + *
+     * Monthly partner eCPM for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Partner eCPM" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_PARTNER_ECPM = 652; + */ + PARTNER_FINANCE_PARTNER_ECPM(267, 652), + /** + * + * + *
+     * Monthly partner revenue for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Partner revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_PARTNER_REVENUE = 653; + */ + PARTNER_FINANCE_PARTNER_REVENUE(268, 653), + /** + * + * + *
+     * The gross revenue in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management gross revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_MANAGEMENT_GROSS_REVENUE = 533; + */ + PARTNER_MANAGEMENT_GROSS_REVENUE(269, 533), + /** + * + * + *
+     * The host clicks in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management host clicks" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_HOST_CLICKS = 534; + */ + PARTNER_MANAGEMENT_HOST_CLICKS(270, 534), + /** + * + * + *
+     * The host CTR in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management host CTR" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * PARTNER_MANAGEMENT_HOST_CTR = 535; + */ + PARTNER_MANAGEMENT_HOST_CTR(271, 535), + /** + * + * + *
+     * The host impressions in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management host impressions" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_HOST_IMPRESSIONS = 536; + */ + PARTNER_MANAGEMENT_HOST_IMPRESSIONS(272, 536), + /** + * + * + *
+     * The partner clicks in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner clicks" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_CLICKS = 537; + */ + PARTNER_MANAGEMENT_PARTNER_CLICKS(273, 537), + /** + * + * + *
+     * The partner CTR in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner CTR" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_CTR = 538; + */ + PARTNER_MANAGEMENT_PARTNER_CTR(274, 538), + /** + * + * + *
+     * The partner impressions in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner impressions" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS = 539; + */ + PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS(275, 539), + /** + * + * + *
+     * The total content views in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management total monetizable content views" in
+     * the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS = 540; + */ + PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS(276, 540), + /** + * + * + *
+     * The unfilled impressions in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management unfilled impressions" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS = 541; + */ + PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS(277, 541), /** * * @@ -30304,7 +32338,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SALES_FILLED_POD_REQUESTS = 135; */ - PARTNER_SALES_FILLED_POD_REQUESTS(260, 135), + PARTNER_SALES_FILLED_POD_REQUESTS(278, 135), /** * * @@ -30323,7 +32357,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SALES_FILL_RATE = 136; */ - PARTNER_SALES_FILL_RATE(261, 136), + PARTNER_SALES_FILL_RATE(279, 136), /** * * @@ -30342,7 +32376,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SALES_PARTNER_MATCH_RATE = 137; */ - PARTNER_SALES_PARTNER_MATCH_RATE(262, 137), + PARTNER_SALES_PARTNER_MATCH_RATE(280, 137), /** * * @@ -30360,7 +32394,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SALES_QUERIES = 132; */ - PARTNER_SALES_QUERIES(263, 132), + PARTNER_SALES_QUERIES(281, 132), /** * * @@ -30380,7 +32414,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SALES_UNFILLED_IMPRESSIONS = 133; */ - PARTNER_SALES_UNFILLED_IMPRESSIONS(264, 133), + PARTNER_SALES_UNFILLED_IMPRESSIONS(282, 133), /** * * @@ -30400,7 +32434,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SALES_UNMATCHED_QUERIES = 134; */ - PARTNER_SALES_UNMATCHED_QUERIES(265, 134), + PARTNER_SALES_UNMATCHED_QUERIES(283, 134), /** * * @@ -30418,7 +32452,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SOLD_CODE_SERVED = 125; */ - PARTNER_SOLD_CODE_SERVED(266, 125), + PARTNER_SOLD_CODE_SERVED(284, 125), /** * * @@ -30437,7 +32471,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124; */ - PARTNER_SOLD_COVIEWED_IMPRESSIONS(267, 124), + PARTNER_SOLD_COVIEWED_IMPRESSIONS(285, 124), /** * * @@ -30455,7 +32489,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PARTNER_SOLD_IMPRESSIONS = 123; */ - PARTNER_SOLD_IMPRESSIONS(268, 123), + PARTNER_SOLD_IMPRESSIONS(286, 123), /** * * @@ -30475,7 +32509,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177; */ - PROGRAMMATIC_ELIGIBLE_AD_REQUESTS(269, 177), + PROGRAMMATIC_ELIGIBLE_AD_REQUESTS(287, 177), /** * * @@ -30495,7 +32529,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PROGRAMMATIC_MATCH_RATE = 178; */ - PROGRAMMATIC_MATCH_RATE(270, 178), + PROGRAMMATIC_MATCH_RATE(288, 178), /** * * @@ -30517,7 +32551,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * PROGRAMMATIC_RESPONSES_SERVED = 176; */ - PROGRAMMATIC_RESPONSES_SERVED(271, 176), + PROGRAMMATIC_RESPONSES_SERVED(289, 176), /** * * @@ -30535,7 +32569,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * REACH_IMPRESSIONS = 416; */ - REACH_IMPRESSIONS(272, 416), + REACH_IMPRESSIONS(290, 416), /** * * @@ -30554,7 +32588,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * RESPONSES_SERVED = 39; */ - RESPONSES_SERVED(273, 39), + RESPONSES_SERVED(291, 39), /** * * @@ -30572,7 +32606,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * RETENTION = 238; */ - RETENTION(274, 238), + RETENTION(292, 238), /** * * @@ -30585,14 +32619,14 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total revenue" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `MONEY` * * * REVENUE = 36; */ - REVENUE(275, 36), + REVENUE(293, 36), /** * * @@ -30613,12 +32647,103 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT = 214; */ - REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT(276, 214), + REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT(294, 214), /** * * *
-     * Total amount of revenue (excluding CPD) based on the number of units
+     * The total CPD net revenue for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPD revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_CPD_REVENUE = 560; + */ + REVENUE_VERIFICATION_CPD_REVENUE(295, 560), + /** + * + * + *
+     * The total CPD gross revenue for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPD revenue (gross)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_GROSS_CPD_REVENUE = 559; + */ + REVENUE_VERIFICATION_GROSS_CPD_REVENUE(296, 559), + /** + * + * + *
+     * The total gross revenue (excluding CPD) for Revenue Verification
+     *  reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPM and CPC revenue (gross)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD = 561; + */ + REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD(297, 561), + /** + * + * + *
+     * The total impressions for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total impressions" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * REVENUE_VERIFICATION_IMPRESSIONS = 564; + */ + REVENUE_VERIFICATION_IMPRESSIONS(298, 564), + /** + * + * + *
+     * The total net revenue (excluding CPD) for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPM and CPC revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD = 567; + */ + REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD(299, 567), + /** + * + * + *
+     * Total revenue (excluding CPD) based on the number of units
      *  served by the Google Ad Manager server, AdSense, Ad Exchange, and
      *  third-party Mediation networks.
      *
@@ -30633,7 +32758,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * REVENUE_WITHOUT_CPD = 4;
      */
-    REVENUE_WITHOUT_CPD(277, 4),
+    REVENUE_WITHOUT_CPD(300, 4),
     /**
      *
      *
@@ -30651,7 +32776,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * REWARDS_GRANTED = 413;
      */
-    REWARDS_GRANTED(278, 413),
+    REWARDS_GRANTED(301, 413),
     /**
      *
      *
@@ -30670,7 +32795,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_AVERAGE_DISPLAY_TIME = 587;
      */
-    RICH_MEDIA_AVERAGE_DISPLAY_TIME(279, 587),
+    RICH_MEDIA_AVERAGE_DISPLAY_TIME(302, 587),
     /**
      *
      *
@@ -30689,7 +32814,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_AVERAGE_INTERACTION_TIME = 588;
      */
-    RICH_MEDIA_AVERAGE_INTERACTION_TIME(280, 588),
+    RICH_MEDIA_AVERAGE_INTERACTION_TIME(303, 588),
     /**
      *
      *
@@ -30708,7 +32833,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_BACKUP_IMAGES = 589;
      */
-    RICH_MEDIA_BACKUP_IMAGES(281, 589),
+    RICH_MEDIA_BACKUP_IMAGES(304, 589),
     /**
      *
      *
@@ -30727,7 +32852,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_CUSTOM_EVENT_COUNT = 599;
      */
-    RICH_MEDIA_CUSTOM_EVENT_COUNT(282, 599),
+    RICH_MEDIA_CUSTOM_EVENT_COUNT(305, 599),
     /**
      *
      *
@@ -30746,7 +32871,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_CUSTOM_EVENT_TIME = 600;
      */
-    RICH_MEDIA_CUSTOM_EVENT_TIME(283, 600),
+    RICH_MEDIA_CUSTOM_EVENT_TIME(306, 600),
     /**
      *
      *
@@ -30765,7 +32890,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_DISPLAY_TIME = 590;
      */
-    RICH_MEDIA_DISPLAY_TIME(284, 590),
+    RICH_MEDIA_DISPLAY_TIME(307, 590),
     /**
      *
      *
@@ -30784,7 +32909,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_EXPANDING_TIME = 591;
      */
-    RICH_MEDIA_EXPANDING_TIME(285, 591),
+    RICH_MEDIA_EXPANDING_TIME(308, 591),
     /**
      *
      *
@@ -30802,7 +32927,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_EXPANSIONS = 592;
      */
-    RICH_MEDIA_EXPANSIONS(286, 592),
+    RICH_MEDIA_EXPANSIONS(309, 592),
     /**
      *
      *
@@ -30820,7 +32945,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_FULL_SCREEN_IMPRESSIONS = 593;
      */
-    RICH_MEDIA_FULL_SCREEN_IMPRESSIONS(287, 593),
+    RICH_MEDIA_FULL_SCREEN_IMPRESSIONS(310, 593),
     /**
      *
      *
@@ -30838,7 +32963,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_INTERACTION_COUNT = 594;
      */
-    RICH_MEDIA_INTERACTION_COUNT(288, 594),
+    RICH_MEDIA_INTERACTION_COUNT(311, 594),
     /**
      *
      *
@@ -30857,7 +32982,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_INTERACTION_RATE = 595;
      */
-    RICH_MEDIA_INTERACTION_RATE(289, 595),
+    RICH_MEDIA_INTERACTION_RATE(312, 595),
     /**
      *
      *
@@ -30876,7 +33001,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_INTERACTION_TIME = 596;
      */
-    RICH_MEDIA_INTERACTION_TIME(290, 596),
+    RICH_MEDIA_INTERACTION_TIME(313, 596),
     /**
      *
      *
@@ -30894,7 +33019,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_INTERACTIVE_IMPRESSIONS = 597;
      */
-    RICH_MEDIA_INTERACTIVE_IMPRESSIONS(291, 597),
+    RICH_MEDIA_INTERACTIVE_IMPRESSIONS(314, 597),
     /**
      *
      *
@@ -30912,7 +33037,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_MANUAL_CLOSES = 598;
      */
-    RICH_MEDIA_MANUAL_CLOSES(292, 598),
+    RICH_MEDIA_MANUAL_CLOSES(315, 598),
     /**
      *
      *
@@ -30930,7 +33055,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_COMPLETES = 503;
      */
-    RICH_MEDIA_VIDEO_COMPLETES(293, 503),
+    RICH_MEDIA_VIDEO_COMPLETES(316, 503),
     /**
      *
      *
@@ -30950,7 +33075,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_INTERACTIONS = 505;
      */
-    RICH_MEDIA_VIDEO_INTERACTIONS(294, 505),
+    RICH_MEDIA_VIDEO_INTERACTIONS(317, 505),
     /**
      *
      *
@@ -30969,7 +33094,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_INTERACTION_RATE = 504;
      */
-    RICH_MEDIA_VIDEO_INTERACTION_RATE(295, 504),
+    RICH_MEDIA_VIDEO_INTERACTION_RATE(318, 504),
     /**
      *
      *
@@ -30987,7 +33112,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_MIDPOINTS = 506;
      */
-    RICH_MEDIA_VIDEO_MIDPOINTS(296, 506),
+    RICH_MEDIA_VIDEO_MIDPOINTS(319, 506),
     /**
      *
      *
@@ -31005,7 +33130,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_MUTES = 507;
      */
-    RICH_MEDIA_VIDEO_MUTES(297, 507),
+    RICH_MEDIA_VIDEO_MUTES(320, 507),
     /**
      *
      *
@@ -31023,7 +33148,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_PAUSES = 508;
      */
-    RICH_MEDIA_VIDEO_PAUSES(298, 508),
+    RICH_MEDIA_VIDEO_PAUSES(321, 508),
     /**
      *
      *
@@ -31041,7 +33166,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_PLAYS = 509;
      */
-    RICH_MEDIA_VIDEO_PLAYS(299, 509),
+    RICH_MEDIA_VIDEO_PLAYS(322, 509),
     /**
      *
      *
@@ -31059,7 +33184,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_REPLAYS = 510;
      */
-    RICH_MEDIA_VIDEO_REPLAYS(300, 510),
+    RICH_MEDIA_VIDEO_REPLAYS(323, 510),
     /**
      *
      *
@@ -31077,7 +33202,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_STOPS = 511;
      */
-    RICH_MEDIA_VIDEO_STOPS(301, 511),
+    RICH_MEDIA_VIDEO_STOPS(324, 511),
     /**
      *
      *
@@ -31095,7 +33220,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_UNMUTES = 512;
      */
-    RICH_MEDIA_VIDEO_UNMUTES(302, 512),
+    RICH_MEDIA_VIDEO_UNMUTES(325, 512),
     /**
      *
      *
@@ -31113,7 +33238,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_VIEW_RATE = 513;
      */
-    RICH_MEDIA_VIDEO_VIEW_RATE(303, 513),
+    RICH_MEDIA_VIDEO_VIEW_RATE(326, 513),
     /**
      *
      *
@@ -31132,7 +33257,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * RICH_MEDIA_VIDEO_VIEW_TIME = 514;
      */
-    RICH_MEDIA_VIDEO_VIEW_TIME(304, 514),
+    RICH_MEDIA_VIDEO_VIEW_TIME(327, 514),
     /**
      *
      *
@@ -31150,7 +33275,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SELL_THROUGH_AVAILABLE_IMPRESSIONS = 477;
      */
-    SELL_THROUGH_AVAILABLE_IMPRESSIONS(305, 477),
+    SELL_THROUGH_AVAILABLE_IMPRESSIONS(328, 477),
     /**
      *
      *
@@ -31168,7 +33293,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SELL_THROUGH_FORECASTED_IMPRESSIONS = 478;
      */
-    SELL_THROUGH_FORECASTED_IMPRESSIONS(306, 478),
+    SELL_THROUGH_FORECASTED_IMPRESSIONS(329, 478),
     /**
      *
      *
@@ -31186,7 +33311,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SELL_THROUGH_RESERVED_IMPRESSIONS = 479;
      */
-    SELL_THROUGH_RESERVED_IMPRESSIONS(307, 479),
+    SELL_THROUGH_RESERVED_IMPRESSIONS(330, 479),
     /**
      *
      *
@@ -31204,7 +33329,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SELL_THROUGH_SELL_THROUGH_RATE = 480;
      */
-    SELL_THROUGH_SELL_THROUGH_RATE(308, 480),
+    SELL_THROUGH_SELL_THROUGH_RATE(331, 480),
     /**
      *
      *
@@ -31227,7 +33352,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434;
      */
-    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS(309, 434),
+    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS(332, 434),
     /**
      *
      *
@@ -31245,7 +33370,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SERVER_SIDE_UNWRAPPING_CALLOUTS = 435;
      */
-    SERVER_SIDE_UNWRAPPING_CALLOUTS(310, 435),
+    SERVER_SIDE_UNWRAPPING_CALLOUTS(333, 435),
     /**
      *
      *
@@ -31265,7 +33390,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436;
      */
-    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES(311, 436),
+    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES(334, 436),
     /**
      *
      *
@@ -31285,7 +33410,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437;
      */
-    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES(312, 437),
+    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES(335, 437),
     /**
      *
      *
@@ -31306,7 +33431,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438;
      */
-    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES(313, 438),
+    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES(336, 438),
     /**
      *
      *
@@ -31325,7 +33450,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439;
      */
-    SERVER_SIDE_UNWRAPPING_TIMEOUTS(314, 439),
+    SERVER_SIDE_UNWRAPPING_TIMEOUTS(337, 439),
     /**
      *
      *
@@ -31343,7 +33468,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * SESSIONS = 239;
      */
-    SESSIONS(315, 239),
+    SESSIONS(338, 239),
     /**
      *
      *
@@ -31362,7 +33487,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TAG_LOAD_TO_FIRST_AD_REQUEST_0_500_PERCENT = 455;
      */
-    TAG_LOAD_TO_FIRST_AD_REQUEST_0_500_PERCENT(316, 455),
+    TAG_LOAD_TO_FIRST_AD_REQUEST_0_500_PERCENT(339, 455),
     /**
      *
      *
@@ -31381,7 +33506,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TAG_LOAD_TO_FIRST_AD_REQUEST_1000_2000_PERCENT = 457;
      */
-    TAG_LOAD_TO_FIRST_AD_REQUEST_1000_2000_PERCENT(317, 457),
+    TAG_LOAD_TO_FIRST_AD_REQUEST_1000_2000_PERCENT(340, 457),
     /**
      *
      *
@@ -31400,7 +33525,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TAG_LOAD_TO_FIRST_AD_REQUEST_2000_4000_PERCENT = 458;
      */
-    TAG_LOAD_TO_FIRST_AD_REQUEST_2000_4000_PERCENT(318, 458),
+    TAG_LOAD_TO_FIRST_AD_REQUEST_2000_4000_PERCENT(341, 458),
     /**
      *
      *
@@ -31419,7 +33544,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TAG_LOAD_TO_FIRST_AD_REQUEST_4000_8000_PERCENT = 459;
      */
-    TAG_LOAD_TO_FIRST_AD_REQUEST_4000_8000_PERCENT(319, 459),
+    TAG_LOAD_TO_FIRST_AD_REQUEST_4000_8000_PERCENT(342, 459),
     /**
      *
      *
@@ -31438,7 +33563,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TAG_LOAD_TO_FIRST_AD_REQUEST_500_1000_PERCENT = 456;
      */
-    TAG_LOAD_TO_FIRST_AD_REQUEST_500_1000_PERCENT(320, 456),
+    TAG_LOAD_TO_FIRST_AD_REQUEST_500_1000_PERCENT(343, 456),
     /**
      *
      *
@@ -31457,7 +33582,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TAG_LOAD_TO_FIRST_AD_REQUEST_GT_8000_PERCENT = 460;
      */
-    TAG_LOAD_TO_FIRST_AD_REQUEST_GT_8000_PERCENT(321, 460),
+    TAG_LOAD_TO_FIRST_AD_REQUEST_GT_8000_PERCENT(344, 460),
     /**
      *
      *
@@ -31476,7 +33601,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TARGETED_CLICKS = 276;
      */
-    TARGETED_CLICKS(322, 276),
+    TARGETED_CLICKS(345, 276),
     /**
      *
      *
@@ -31495,7 +33620,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * TARGETED_IMPRESSIONS = 277;
      */
-    TARGETED_IMPRESSIONS(323, 277),
+    TARGETED_IMPRESSIONS(346, 277),
     /**
      *
      *
@@ -31514,7 +33639,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNFILLED_IMPRESSIONS = 45;
      */
-    UNFILLED_IMPRESSIONS(324, 45),
+    UNFILLED_IMPRESSIONS(347, 45),
     /**
      *
      *
@@ -31532,7 +33657,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNIQUE_VISITORS = 417;
      */
-    UNIQUE_VISITORS(325, 417),
+    UNIQUE_VISITORS(348, 417),
     /**
      *
      *
@@ -31552,7 +33677,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNLOADED_IMPRESSIONS_DUE_TO_CPU = 408;
      */
-    UNLOADED_IMPRESSIONS_DUE_TO_CPU(326, 408),
+    UNLOADED_IMPRESSIONS_DUE_TO_CPU(349, 408),
     /**
      *
      *
@@ -31572,7 +33697,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNLOADED_IMPRESSIONS_DUE_TO_NETWORK = 406;
      */
-    UNLOADED_IMPRESSIONS_DUE_TO_NETWORK(327, 406),
+    UNLOADED_IMPRESSIONS_DUE_TO_NETWORK(350, 406),
     /**
      *
      *
@@ -31590,7 +33715,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNMATCHED_AD_REQUESTS = 43;
      */
-    UNMATCHED_AD_REQUESTS(328, 43),
+    UNMATCHED_AD_REQUESTS(351, 43),
     /**
      *
      *
@@ -31609,7 +33734,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNVIEWED_REASON_OTHER_PERCENT = 550;
      */
-    UNVIEWED_REASON_OTHER_PERCENT(329, 550),
+    UNVIEWED_REASON_OTHER_PERCENT(352, 550),
     /**
      *
      *
@@ -31628,7 +33753,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNVIEWED_REASON_SLOT_NEVER_ENTERED_VIEWPORT_PERCENT = 553;
      */
-    UNVIEWED_REASON_SLOT_NEVER_ENTERED_VIEWPORT_PERCENT(330, 553),
+    UNVIEWED_REASON_SLOT_NEVER_ENTERED_VIEWPORT_PERCENT(353, 553),
     /**
      *
      *
@@ -31647,7 +33772,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNVIEWED_REASON_USER_SCROLLED_BEFORE_AD_FILLED_PERCENT = 551;
      */
-    UNVIEWED_REASON_USER_SCROLLED_BEFORE_AD_FILLED_PERCENT(331, 551),
+    UNVIEWED_REASON_USER_SCROLLED_BEFORE_AD_FILLED_PERCENT(354, 551),
     /**
      *
      *
@@ -31667,7 +33792,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNVIEWED_REASON_USER_SCROLLED_BEFORE_AD_LOADED_PERCENT = 552;
      */
-    UNVIEWED_REASON_USER_SCROLLED_BEFORE_AD_LOADED_PERCENT(332, 552),
+    UNVIEWED_REASON_USER_SCROLLED_BEFORE_AD_LOADED_PERCENT(355, 552),
     /**
      *
      *
@@ -31687,7 +33812,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * UNVIEWED_REASON_USER_SCROLLED_BEFORE_ONE_SECOND_PERCENT = 549;
      */
-    UNVIEWED_REASON_USER_SCROLLED_BEFORE_ONE_SECOND_PERCENT(333, 549),
+    UNVIEWED_REASON_USER_SCROLLED_BEFORE_ONE_SECOND_PERCENT(356, 549),
     /**
      *
      *
@@ -31706,7 +33831,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * USER_ENGAGEMENT_DURATION_IN_SECONDS = 240;
      */
-    USER_ENGAGEMENT_DURATION_IN_SECONDS(334, 240),
+    USER_ENGAGEMENT_DURATION_IN_SECONDS(357, 240),
     /**
      *
      *
@@ -31725,7 +33850,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * USER_MESSAGES_AD_BLOCKING_EXTENSION_RATE = 486;
      */
-    USER_MESSAGES_AD_BLOCKING_EXTENSION_RATE(335, 486),
+    USER_MESSAGES_AD_BLOCKING_EXTENSION_RATE(358, 486),
     /**
      *
      *
@@ -31745,7 +33870,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * USER_MESSAGES_AD_BLOCKING_RECOVERY_ALLOWLISTED_COUNT = 487;
      */
-    USER_MESSAGES_AD_BLOCKING_RECOVERY_ALLOWLISTED_COUNT(336, 487),
+    USER_MESSAGES_AD_BLOCKING_RECOVERY_ALLOWLISTED_COUNT(359, 487),
     /**
      *
      *
@@ -31764,7 +33889,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * USER_MESSAGES_AD_BLOCKING_RECOVERY_MESSAGES_SHOWN = 488;
      */
-    USER_MESSAGES_AD_BLOCKING_RECOVERY_MESSAGES_SHOWN(337, 488),
+    USER_MESSAGES_AD_BLOCKING_RECOVERY_MESSAGES_SHOWN(360, 488),
     /**
      *
      *
@@ -31784,25 +33909,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      *
      * USER_MESSAGES_ALLOW_ADS_PAGEVIEWS = 489;
      */
-    USER_MESSAGES_ALLOW_ADS_PAGEVIEWS(338, 489),
-    /**
-     *
-     *
-     * 
-     * Number of times a US state regulations message was shown to users.
-     *
-     *
-     *
-     * Corresponds to "US states messages shown" in the Ad Manager UI.
-     *
-     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
-     *
-     * Data format: `INTEGER`
-     * 
- * - * USER_MESSAGES_CCPA_MESSAGES_SHOWN = 490; - */ - USER_MESSAGES_CCPA_MESSAGES_SHOWN(339, 490), + USER_MESSAGES_ALLOW_ADS_PAGEVIEWS(361, 489), /** * * @@ -31821,7 +33928,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_ATT_ALERTS_SHOWN = 491; */ - USER_MESSAGES_IDFA_ATT_ALERTS_SHOWN(340, 491), + USER_MESSAGES_IDFA_ATT_ALERTS_SHOWN(362, 491), /** * * @@ -31840,7 +33947,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_ATT_CONSENT = 492; */ - USER_MESSAGES_IDFA_ATT_CONSENT(341, 492), + USER_MESSAGES_IDFA_ATT_CONSENT(363, 492), /** * * @@ -31859,7 +33966,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_ATT_CONSENT_RATE = 493; */ - USER_MESSAGES_IDFA_ATT_CONSENT_RATE(342, 493), + USER_MESSAGES_IDFA_ATT_CONSENT_RATE(364, 493), /** * * @@ -31878,7 +33985,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_ATT_DECLINE_CONSENT = 494; */ - USER_MESSAGES_IDFA_ATT_DECLINE_CONSENT(343, 494), + USER_MESSAGES_IDFA_ATT_DECLINE_CONSENT(365, 494), /** * * @@ -31897,7 +34004,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_ATT_DECLINE_RATE = 495; */ - USER_MESSAGES_IDFA_ATT_DECLINE_RATE(344, 495), + USER_MESSAGES_IDFA_ATT_DECLINE_RATE(366, 495), /** * * @@ -31915,7 +34022,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_EXPLAINERS_SHOWN = 496; */ - USER_MESSAGES_IDFA_EXPLAINERS_SHOWN(345, 496), + USER_MESSAGES_IDFA_EXPLAINERS_SHOWN(367, 496), /** * * @@ -31934,7 +34041,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_IAB_MESSAGES_SHOWN = 497; */ - USER_MESSAGES_IDFA_IAB_MESSAGES_SHOWN(346, 497), + USER_MESSAGES_IDFA_IAB_MESSAGES_SHOWN(368, 497), /** * * @@ -31952,7 +34059,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_IDFA_NO_DECISION = 498; */ - USER_MESSAGES_IDFA_NO_DECISION(347, 498), + USER_MESSAGES_IDFA_NO_DECISION(369, 498), /** * * @@ -31970,7 +34077,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121; */ - USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN(348, 121), + USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN(370, 121), /** * * @@ -31988,7 +34095,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122; */ - USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS(349, 122), + USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS(371, 122), /** * * @@ -32007,7 +34114,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_POST_OFFERWALL_PAGEVIEWS = 499; */ - USER_MESSAGES_POST_OFFERWALL_PAGEVIEWS(350, 499), + USER_MESSAGES_POST_OFFERWALL_PAGEVIEWS(372, 499), /** * * @@ -32026,7 +34133,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_TOTAL_ESTIMATED_REVENUE = 500; */ - USER_MESSAGES_TOTAL_ESTIMATED_REVENUE(351, 500), + USER_MESSAGES_TOTAL_ESTIMATED_REVENUE(373, 500), /** * * @@ -32045,7 +34152,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_UPTC_MESSAGES_SHOWN = 501; */ - USER_MESSAGES_UPTC_MESSAGES_SHOWN(352, 501), + USER_MESSAGES_UPTC_MESSAGES_SHOWN(374, 501), /** * * @@ -32064,7 +34171,43 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO = 502; */ - USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO(353, 502), + USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO(375, 502), + /** + * + * + *
+     * Number of times a US state regulations message was shown to users.
+     *
+     *
+     *
+     * Corresponds to "US states messages shown" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * USER_MESSAGES_US_STATES_MESSAGES_SHOWN = 490; + */ + USER_MESSAGES_US_STATES_MESSAGES_SHOWN(376, 490), + /** + * + * + *
+     * Number of times users selected the opt-out option in a US states message.
+     *
+     *
+     *
+     * Corresponds to "US states opt-out selections" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS = 586; + */ + USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS(377, 586), /** * * @@ -32082,7 +34225,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_100_COUNT = 180; */ - VIDEO_ERROR_100_COUNT(354, 180), + VIDEO_ERROR_100_COUNT(378, 180), /** * * @@ -32100,7 +34243,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_101_COUNT = 181; */ - VIDEO_ERROR_101_COUNT(355, 181), + VIDEO_ERROR_101_COUNT(379, 181), /** * * @@ -32118,7 +34261,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_102_COUNT = 182; */ - VIDEO_ERROR_102_COUNT(356, 182), + VIDEO_ERROR_102_COUNT(380, 182), /** * * @@ -32136,7 +34279,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_200_COUNT = 183; */ - VIDEO_ERROR_200_COUNT(357, 183), + VIDEO_ERROR_200_COUNT(381, 183), /** * * @@ -32154,7 +34297,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_201_COUNT = 184; */ - VIDEO_ERROR_201_COUNT(358, 184), + VIDEO_ERROR_201_COUNT(382, 184), /** * * @@ -32172,7 +34315,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_202_COUNT = 185; */ - VIDEO_ERROR_202_COUNT(359, 185), + VIDEO_ERROR_202_COUNT(383, 185), /** * * @@ -32190,7 +34333,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_203_COUNT = 186; */ - VIDEO_ERROR_203_COUNT(360, 186), + VIDEO_ERROR_203_COUNT(384, 186), /** * * @@ -32208,7 +34351,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_300_COUNT = 187; */ - VIDEO_ERROR_300_COUNT(361, 187), + VIDEO_ERROR_300_COUNT(385, 187), /** * * @@ -32226,7 +34369,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_301_COUNT = 188; */ - VIDEO_ERROR_301_COUNT(362, 188), + VIDEO_ERROR_301_COUNT(386, 188), /** * * @@ -32244,7 +34387,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_302_COUNT = 189; */ - VIDEO_ERROR_302_COUNT(363, 189), + VIDEO_ERROR_302_COUNT(387, 189), /** * * @@ -32262,7 +34405,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_303_COUNT = 190; */ - VIDEO_ERROR_303_COUNT(364, 190), + VIDEO_ERROR_303_COUNT(388, 190), /** * * @@ -32280,7 +34423,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_400_COUNT = 191; */ - VIDEO_ERROR_400_COUNT(365, 191), + VIDEO_ERROR_400_COUNT(389, 191), /** * * @@ -32298,7 +34441,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_401_COUNT = 192; */ - VIDEO_ERROR_401_COUNT(366, 192), + VIDEO_ERROR_401_COUNT(390, 192), /** * * @@ -32316,7 +34459,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_402_COUNT = 193; */ - VIDEO_ERROR_402_COUNT(367, 193), + VIDEO_ERROR_402_COUNT(391, 193), /** * * @@ -32334,7 +34477,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_403_COUNT = 194; */ - VIDEO_ERROR_403_COUNT(368, 194), + VIDEO_ERROR_403_COUNT(392, 194), /** * * @@ -32352,7 +34495,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_405_COUNT = 195; */ - VIDEO_ERROR_405_COUNT(369, 195), + VIDEO_ERROR_405_COUNT(393, 195), /** * * @@ -32370,7 +34513,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_406_COUNT = 196; */ - VIDEO_ERROR_406_COUNT(370, 196), + VIDEO_ERROR_406_COUNT(394, 196), /** * * @@ -32388,7 +34531,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_407_COUNT = 197; */ - VIDEO_ERROR_407_COUNT(371, 197), + VIDEO_ERROR_407_COUNT(395, 197), /** * * @@ -32406,7 +34549,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_408_COUNT = 198; */ - VIDEO_ERROR_408_COUNT(372, 198), + VIDEO_ERROR_408_COUNT(396, 198), /** * * @@ -32424,7 +34567,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_409_COUNT = 199; */ - VIDEO_ERROR_409_COUNT(373, 199), + VIDEO_ERROR_409_COUNT(397, 199), /** * * @@ -32442,7 +34585,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_410_COUNT = 200; */ - VIDEO_ERROR_410_COUNT(374, 200), + VIDEO_ERROR_410_COUNT(398, 200), /** * * @@ -32460,7 +34603,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_500_COUNT = 201; */ - VIDEO_ERROR_500_COUNT(375, 201), + VIDEO_ERROR_500_COUNT(399, 201), /** * * @@ -32478,7 +34621,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_501_COUNT = 202; */ - VIDEO_ERROR_501_COUNT(376, 202), + VIDEO_ERROR_501_COUNT(400, 202), /** * * @@ -32496,7 +34639,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_502_COUNT = 203; */ - VIDEO_ERROR_502_COUNT(377, 203), + VIDEO_ERROR_502_COUNT(401, 203), /** * * @@ -32514,7 +34657,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_503_COUNT = 204; */ - VIDEO_ERROR_503_COUNT(378, 204), + VIDEO_ERROR_503_COUNT(402, 204), /** * * @@ -32532,7 +34675,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_600_COUNT = 205; */ - VIDEO_ERROR_600_COUNT(379, 205), + VIDEO_ERROR_600_COUNT(403, 205), /** * * @@ -32550,7 +34693,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_601_COUNT = 206; */ - VIDEO_ERROR_601_COUNT(380, 206), + VIDEO_ERROR_601_COUNT(404, 206), /** * * @@ -32568,7 +34711,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_602_COUNT = 207; */ - VIDEO_ERROR_602_COUNT(381, 207), + VIDEO_ERROR_602_COUNT(405, 207), /** * * @@ -32586,7 +34729,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_603_COUNT = 208; */ - VIDEO_ERROR_603_COUNT(382, 208), + VIDEO_ERROR_603_COUNT(406, 208), /** * * @@ -32604,7 +34747,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_604_COUNT = 209; */ - VIDEO_ERROR_604_COUNT(383, 209), + VIDEO_ERROR_604_COUNT(407, 209), /** * * @@ -32622,7 +34765,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_900_COUNT = 210; */ - VIDEO_ERROR_900_COUNT(384, 210), + VIDEO_ERROR_900_COUNT(408, 210), /** * * @@ -32640,7 +34783,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_ERROR_901_COUNT = 211; */ - VIDEO_ERROR_901_COUNT(385, 211), + VIDEO_ERROR_901_COUNT(409, 211), /** * * @@ -32659,7 +34802,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92; */ - VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE(386, 92), + VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE(410, 92), /** * * @@ -32678,7 +34821,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_COLLAPSES = 93; */ - VIDEO_INTERACTION_COLLAPSES(387, 93), + VIDEO_INTERACTION_COLLAPSES(411, 93), /** * * @@ -32696,7 +34839,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_EXPANDS = 95; */ - VIDEO_INTERACTION_EXPANDS(388, 95), + VIDEO_INTERACTION_EXPANDS(412, 95), /** * * @@ -32714,7 +34857,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_FULL_SCREENS = 96; */ - VIDEO_INTERACTION_FULL_SCREENS(389, 96), + VIDEO_INTERACTION_FULL_SCREENS(413, 96), /** * * @@ -32733,7 +34876,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_MUTES = 97; */ - VIDEO_INTERACTION_MUTES(390, 97), + VIDEO_INTERACTION_MUTES(414, 97), /** * * @@ -32751,7 +34894,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_PAUSES = 98; */ - VIDEO_INTERACTION_PAUSES(391, 98), + VIDEO_INTERACTION_PAUSES(415, 98), /** * * @@ -32769,7 +34912,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_RESUMES = 99; */ - VIDEO_INTERACTION_RESUMES(392, 99), + VIDEO_INTERACTION_RESUMES(416, 99), /** * * @@ -32787,7 +34930,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_REWINDS = 100; */ - VIDEO_INTERACTION_REWINDS(393, 100), + VIDEO_INTERACTION_REWINDS(417, 100), /** * * @@ -32805,7 +34948,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_UNMUTES = 101; */ - VIDEO_INTERACTION_UNMUTES(394, 101), + VIDEO_INTERACTION_UNMUTES(418, 101), /** * * @@ -32823,7 +34966,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_INTERACTION_VIDEO_SKIPS = 102; */ - VIDEO_INTERACTION_VIDEO_SKIPS(395, 102), + VIDEO_INTERACTION_VIDEO_SKIPS(419, 102), /** * * @@ -32841,7 +34984,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_MONETIZABLE_CONTENT_VIEWS = 601; */ - VIDEO_MONETIZABLE_CONTENT_VIEWS(396, 601), + VIDEO_MONETIZABLE_CONTENT_VIEWS(420, 601), /** * * @@ -32859,7 +35002,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_CREATIVE_SERVES = 139; */ - VIDEO_REAL_TIME_CREATIVE_SERVES(397, 139), + VIDEO_REAL_TIME_CREATIVE_SERVES(421, 139), /** * * @@ -32877,7 +35020,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_100_COUNT = 143; */ - VIDEO_REAL_TIME_ERROR_100_COUNT(398, 143), + VIDEO_REAL_TIME_ERROR_100_COUNT(422, 143), /** * * @@ -32895,7 +35038,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_101_COUNT = 144; */ - VIDEO_REAL_TIME_ERROR_101_COUNT(399, 144), + VIDEO_REAL_TIME_ERROR_101_COUNT(423, 144), /** * * @@ -32913,7 +35056,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_102_COUNT = 145; */ - VIDEO_REAL_TIME_ERROR_102_COUNT(400, 145), + VIDEO_REAL_TIME_ERROR_102_COUNT(424, 145), /** * * @@ -32931,7 +35074,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_200_COUNT = 146; */ - VIDEO_REAL_TIME_ERROR_200_COUNT(401, 146), + VIDEO_REAL_TIME_ERROR_200_COUNT(425, 146), /** * * @@ -32949,7 +35092,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_201_COUNT = 147; */ - VIDEO_REAL_TIME_ERROR_201_COUNT(402, 147), + VIDEO_REAL_TIME_ERROR_201_COUNT(426, 147), /** * * @@ -32967,7 +35110,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_202_COUNT = 148; */ - VIDEO_REAL_TIME_ERROR_202_COUNT(403, 148), + VIDEO_REAL_TIME_ERROR_202_COUNT(427, 148), /** * * @@ -32985,7 +35128,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_203_COUNT = 149; */ - VIDEO_REAL_TIME_ERROR_203_COUNT(404, 149), + VIDEO_REAL_TIME_ERROR_203_COUNT(428, 149), /** * * @@ -33003,7 +35146,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_300_COUNT = 150; */ - VIDEO_REAL_TIME_ERROR_300_COUNT(405, 150), + VIDEO_REAL_TIME_ERROR_300_COUNT(429, 150), /** * * @@ -33021,7 +35164,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_301_COUNT = 151; */ - VIDEO_REAL_TIME_ERROR_301_COUNT(406, 151), + VIDEO_REAL_TIME_ERROR_301_COUNT(430, 151), /** * * @@ -33039,7 +35182,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_302_COUNT = 152; */ - VIDEO_REAL_TIME_ERROR_302_COUNT(407, 152), + VIDEO_REAL_TIME_ERROR_302_COUNT(431, 152), /** * * @@ -33057,7 +35200,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_303_COUNT = 153; */ - VIDEO_REAL_TIME_ERROR_303_COUNT(408, 153), + VIDEO_REAL_TIME_ERROR_303_COUNT(432, 153), /** * * @@ -33075,7 +35218,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_400_COUNT = 154; */ - VIDEO_REAL_TIME_ERROR_400_COUNT(409, 154), + VIDEO_REAL_TIME_ERROR_400_COUNT(433, 154), /** * * @@ -33093,7 +35236,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_401_COUNT = 155; */ - VIDEO_REAL_TIME_ERROR_401_COUNT(410, 155), + VIDEO_REAL_TIME_ERROR_401_COUNT(434, 155), /** * * @@ -33111,7 +35254,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_402_COUNT = 156; */ - VIDEO_REAL_TIME_ERROR_402_COUNT(411, 156), + VIDEO_REAL_TIME_ERROR_402_COUNT(435, 156), /** * * @@ -33129,7 +35272,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_403_COUNT = 157; */ - VIDEO_REAL_TIME_ERROR_403_COUNT(412, 157), + VIDEO_REAL_TIME_ERROR_403_COUNT(436, 157), /** * * @@ -33147,7 +35290,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_405_COUNT = 158; */ - VIDEO_REAL_TIME_ERROR_405_COUNT(413, 158), + VIDEO_REAL_TIME_ERROR_405_COUNT(437, 158), /** * * @@ -33165,7 +35308,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_406_COUNT = 159; */ - VIDEO_REAL_TIME_ERROR_406_COUNT(414, 159), + VIDEO_REAL_TIME_ERROR_406_COUNT(438, 159), /** * * @@ -33183,7 +35326,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_407_COUNT = 160; */ - VIDEO_REAL_TIME_ERROR_407_COUNT(415, 160), + VIDEO_REAL_TIME_ERROR_407_COUNT(439, 160), /** * * @@ -33201,7 +35344,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_408_COUNT = 161; */ - VIDEO_REAL_TIME_ERROR_408_COUNT(416, 161), + VIDEO_REAL_TIME_ERROR_408_COUNT(440, 161), /** * * @@ -33219,7 +35362,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_409_COUNT = 162; */ - VIDEO_REAL_TIME_ERROR_409_COUNT(417, 162), + VIDEO_REAL_TIME_ERROR_409_COUNT(441, 162), /** * * @@ -33237,7 +35380,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_410_COUNT = 163; */ - VIDEO_REAL_TIME_ERROR_410_COUNT(418, 163), + VIDEO_REAL_TIME_ERROR_410_COUNT(442, 163), /** * * @@ -33255,7 +35398,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_500_COUNT = 164; */ - VIDEO_REAL_TIME_ERROR_500_COUNT(419, 164), + VIDEO_REAL_TIME_ERROR_500_COUNT(443, 164), /** * * @@ -33273,7 +35416,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_501_COUNT = 165; */ - VIDEO_REAL_TIME_ERROR_501_COUNT(420, 165), + VIDEO_REAL_TIME_ERROR_501_COUNT(444, 165), /** * * @@ -33291,7 +35434,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_502_COUNT = 166; */ - VIDEO_REAL_TIME_ERROR_502_COUNT(421, 166), + VIDEO_REAL_TIME_ERROR_502_COUNT(445, 166), /** * * @@ -33309,7 +35452,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_503_COUNT = 167; */ - VIDEO_REAL_TIME_ERROR_503_COUNT(422, 167), + VIDEO_REAL_TIME_ERROR_503_COUNT(446, 167), /** * * @@ -33327,7 +35470,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_600_COUNT = 168; */ - VIDEO_REAL_TIME_ERROR_600_COUNT(423, 168), + VIDEO_REAL_TIME_ERROR_600_COUNT(447, 168), /** * * @@ -33345,7 +35488,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_601_COUNT = 169; */ - VIDEO_REAL_TIME_ERROR_601_COUNT(424, 169), + VIDEO_REAL_TIME_ERROR_601_COUNT(448, 169), /** * * @@ -33363,7 +35506,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_602_COUNT = 170; */ - VIDEO_REAL_TIME_ERROR_602_COUNT(425, 170), + VIDEO_REAL_TIME_ERROR_602_COUNT(449, 170), /** * * @@ -33381,7 +35524,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_603_COUNT = 171; */ - VIDEO_REAL_TIME_ERROR_603_COUNT(426, 171), + VIDEO_REAL_TIME_ERROR_603_COUNT(450, 171), /** * * @@ -33399,7 +35542,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_604_COUNT = 172; */ - VIDEO_REAL_TIME_ERROR_604_COUNT(427, 172), + VIDEO_REAL_TIME_ERROR_604_COUNT(451, 172), /** * * @@ -33417,7 +35560,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_900_COUNT = 173; */ - VIDEO_REAL_TIME_ERROR_900_COUNT(428, 173), + VIDEO_REAL_TIME_ERROR_900_COUNT(452, 173), /** * * @@ -33435,7 +35578,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_ERROR_901_COUNT = 174; */ - VIDEO_REAL_TIME_ERROR_901_COUNT(429, 174), + VIDEO_REAL_TIME_ERROR_901_COUNT(453, 174), /** * * @@ -33453,7 +35596,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_IMPRESSIONS = 138; */ - VIDEO_REAL_TIME_IMPRESSIONS(430, 138), + VIDEO_REAL_TIME_IMPRESSIONS(454, 138), /** * * @@ -33471,7 +35614,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_MATCHED_QUERIES = 140; */ - VIDEO_REAL_TIME_MATCHED_QUERIES(431, 140), + VIDEO_REAL_TIME_MATCHED_QUERIES(455, 140), /** * * @@ -33489,7 +35632,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175; */ - VIDEO_REAL_TIME_TOTAL_ERROR_COUNT(432, 175), + VIDEO_REAL_TIME_TOTAL_ERROR_COUNT(456, 175), /** * * @@ -33507,7 +35650,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_TOTAL_QUERIES = 142; */ - VIDEO_REAL_TIME_TOTAL_QUERIES(433, 142), + VIDEO_REAL_TIME_TOTAL_QUERIES(457, 142), /** * * @@ -33525,7 +35668,191 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141; */ - VIDEO_REAL_TIME_UNMATCHED_QUERIES(434, 141), + VIDEO_REAL_TIME_UNMATCHED_QUERIES(458, 141), + /** + * + * + *
+     * The total number of breaks completed or fatal errors for the last ad in
+     *  the pod.
+     *
+     *
+     *
+     * Corresponds to "Break end" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END = 279; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END(459, 279), + /** + * + * + *
+     * The total number of breaks starts or errors for the first ad in a pod
+     *  that users made it to.
+     *
+     *
+     *
+     * Corresponds to "Break start" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START = 280; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START(460, 280), + /** + * + * + *
+     * The number of video ad opportunities reached by a user (rounded down, or
+     *  capped based on your max ads setting, whichever is less).
+     *
+     *
+     *
+     * Corresponds to "Capped opportunities (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK = 281; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK(461, 281), + /** + * + * + *
+     * The total number of seconds available to be filled.
+     *
+     *
+     *
+     * Corresponds to "Total duration (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK = 283; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK(462, 283), + /** + * + * + *
+     * The total number of seconds filled.
+     *
+     *
+     *
+     * Corresponds to "Matched duration (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK = 285; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK(463, 285), + /** + * + * + *
+     * The total matched opportunities in video true opportunities reporting.
+     *
+     *
+     *
+     * Corresponds to "Matched opportunities (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK = 287; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK(464, 287), + /** + * + * + *
+     * The number of video ad opportunities reached by a user (rounded down).
+     *
+     *
+     *
+     * Corresponds to "Viewed opportunities (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK = 289; + */ + VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK(465, 289), + /** + * + * + *
+     * The number of TrueView ad impressions viewed.
+     *
+     *
+     *
+     * Corresponds to "True views" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_VIEWS = 392; + */ + VIDEO_TRUE_VIEWS(466, 392), + /** + * + * + *
+     * Measures the percentage of skips.
+     *
+     *
+     *
+     * Corresponds to "True views skip rate" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * VIDEO_TRUE_VIEW_SKIP_RATE = 393; + */ + VIDEO_TRUE_VIEW_SKIP_RATE(467, 393), + /** + * + * + *
+     * The view-through rate is the percentage of views divided by number of
+     *  impressions
+     *
+     *
+     *
+     * Corresponds to "True views view-through rate" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE = 394; + */ + VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE(468, 394), /** * * @@ -33544,7 +35871,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_AUTO_PLAYS = 103; */ - VIDEO_VIEWERSHIP_AUTO_PLAYS(435, 103), + VIDEO_VIEWERSHIP_AUTO_PLAYS(469, 103), /** * * @@ -33562,7 +35889,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104; */ - VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE(436, 104), + VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE(470, 104), /** * * @@ -33580,7 +35907,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105; */ - VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME(437, 105), + VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME(471, 105), /** * * @@ -33599,7 +35926,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106; */ - VIDEO_VIEWERSHIP_CLICK_TO_PLAYS(438, 106), + VIDEO_VIEWERSHIP_CLICK_TO_PLAYS(472, 106), /** * * @@ -33617,7 +35944,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_COMPLETES = 107; */ - VIDEO_VIEWERSHIP_COMPLETES(439, 107), + VIDEO_VIEWERSHIP_COMPLETES(473, 107), /** * * @@ -33635,7 +35962,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_COMPLETION_RATE = 108; */ - VIDEO_VIEWERSHIP_COMPLETION_RATE(440, 108), + VIDEO_VIEWERSHIP_COMPLETION_RATE(474, 108), /** * * @@ -33654,7 +35981,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109; */ - VIDEO_VIEWERSHIP_ENGAGED_VIEWS(441, 109), + VIDEO_VIEWERSHIP_ENGAGED_VIEWS(475, 109), /** * * @@ -33672,7 +35999,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110; */ - VIDEO_VIEWERSHIP_FIRST_QUARTILES(442, 110), + VIDEO_VIEWERSHIP_FIRST_QUARTILES(476, 110), /** * * @@ -33690,7 +36017,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_MIDPOINTS = 111; */ - VIDEO_VIEWERSHIP_MIDPOINTS(443, 111), + VIDEO_VIEWERSHIP_MIDPOINTS(477, 111), /** * * @@ -33708,7 +36035,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112; */ - VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN(444, 112), + VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN(478, 112), /** * * @@ -33726,7 +36053,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_STARTS = 113; */ - VIDEO_VIEWERSHIP_STARTS(445, 113), + VIDEO_VIEWERSHIP_STARTS(479, 113), /** * * @@ -33744,7 +36071,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114; */ - VIDEO_VIEWERSHIP_THIRD_QUARTILES(446, 114), + VIDEO_VIEWERSHIP_THIRD_QUARTILES(480, 114), /** * * @@ -33763,7 +36090,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115; */ - VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT(447, 115), + VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT(481, 115), /** * * @@ -33781,7 +36108,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94; */ - VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE(448, 94), + VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE(482, 94), /** * * @@ -33799,7 +36126,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116; */ - VIDEO_VIEWERSHIP_VIDEO_LENGTH(449, 116), + VIDEO_VIEWERSHIP_VIDEO_LENGTH(483, 116), /** * * @@ -33817,7 +36144,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117; */ - VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE(450, 117), + VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE(484, 117), /** * * @@ -33836,7 +36163,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_AUCTIONS_WON = 80; */ - YIELD_GROUP_AUCTIONS_WON(451, 80), + YIELD_GROUP_AUCTIONS_WON(485, 80), /** * * @@ -33855,7 +36182,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_BIDS = 81; */ - YIELD_GROUP_BIDS(452, 81), + YIELD_GROUP_BIDS(486, 81), /** * * @@ -33874,7 +36201,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_BIDS_IN_AUCTION = 82; */ - YIELD_GROUP_BIDS_IN_AUCTION(453, 82), + YIELD_GROUP_BIDS_IN_AUCTION(487, 82), /** * * @@ -33893,7 +36220,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_CALLOUTS = 83; */ - YIELD_GROUP_CALLOUTS(454, 83), + YIELD_GROUP_CALLOUTS(488, 83), /** * * @@ -33912,7 +36239,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_ESTIMATED_CPM = 88; */ - YIELD_GROUP_ESTIMATED_CPM(455, 88), + YIELD_GROUP_ESTIMATED_CPM(489, 88), /** * * @@ -33931,7 +36258,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_ESTIMATED_REVENUE = 87; */ - YIELD_GROUP_ESTIMATED_REVENUE(456, 87), + YIELD_GROUP_ESTIMATED_REVENUE(490, 87), /** * * @@ -33950,7 +36277,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_IMPRESSIONS = 85; */ - YIELD_GROUP_IMPRESSIONS(457, 85), + YIELD_GROUP_IMPRESSIONS(491, 85), /** * * @@ -33969,7 +36296,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_MEDIATION_FILL_RATE = 89; */ - YIELD_GROUP_MEDIATION_FILL_RATE(458, 89), + YIELD_GROUP_MEDIATION_FILL_RATE(492, 89), /** * * @@ -33988,7 +36315,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86; */ - YIELD_GROUP_MEDIATION_MATCHED_QUERIES(459, 86), + YIELD_GROUP_MEDIATION_MATCHED_QUERIES(493, 86), /** * * @@ -34006,7 +36333,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_MEDIATION_PASSBACKS = 118; */ - YIELD_GROUP_MEDIATION_PASSBACKS(460, 118), + YIELD_GROUP_MEDIATION_PASSBACKS(494, 118), /** * * @@ -34026,7 +36353,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90; */ - YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM(461, 90), + YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM(495, 90), /** * * @@ -34047,7 +36374,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT = 215; */ - YIELD_GROUP_REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT(462, 215), + YIELD_GROUP_REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT(496, 215), /** * * @@ -34066,7 +36393,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * YIELD_GROUP_SUCCESSFUL_RESPONSES = 84; */ - YIELD_GROUP_SUCCESSFUL_RESPONSES(463, 84), + YIELD_GROUP_SUCCESSFUL_RESPONSES(497, 84), UNRECOGNIZED(-1, -1), ; @@ -35501,7 +37828,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * The ratio of matched ad requests served by the Ad Exchange that * resulted in users clicking on an ad. The clickthrough rate (CTR) is * updated nightly. Ad Exchange Matched Request CTR is calculated as: - * (Ad Exchange clicks / Ad Exchange Macthed Ad Requests). + * (Ad Exchange clicks / Ad Exchange Matched Ad Requests). * * * @@ -36426,6 +38753,48 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { */ public static final int AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS_VALUE = 338; + /** + * + * + *
+     * Total number of ad server VAST errors discounting errors generated from
+     *  video fallback ads.
+     *
+     *
+     *
+     * Corresponds to "Ad Server opportunities from errors" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AD_SERVER_OPPORTUNITIES_FROM_ERRORS = 461; + */ + public static final int AD_SERVER_OPPORTUNITIES_FROM_ERRORS_VALUE = 461; + + /** + * + * + *
+     * Total number of ad server impressions discounting video fallback
+     *  impressions.
+     *
+     *
+     *
+     * Corresponds to "Ad Server opportunities from impressions" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS = 462; + */ + public static final int AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS_VALUE = 462; + /** * * @@ -36959,7 +39328,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Header bidding trafficking ad requests with no bids" in + * Corresponds to "Ad requests with no header bidding trafficking bids" in * the Ad Manager UI. * * Compatible with the following report types: @@ -37022,7 +39391,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Header bidding trafficking ad requests with bids" in the + * Corresponds to "Ad requests with header bidding trafficking bids" in the * Ad Manager UI. * * Compatible with the following report types: @@ -37062,7 +39431,8 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Creative not retrieved" in the Ad Manager UI. + * Corresponds to "Line items with no creative retrieved" in the Ad Manager + * UI. * * Compatible with the following report types: * @@ -37122,7 +39492,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Not selected to compete" in the Ad Manager UI. + * Corresponds to "Line items not selected to compete" in the Ad Manager UI. * * Compatible with the following report types: * @@ -37245,8 +39615,8 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Mediation requests with no partners" in the Ad Manager - * UI. + * Corresponds to "Ad requests with no targeted mediation partners" in the + * Ad Manager UI. * * Compatible with the following report types: * @@ -37810,7 +40180,8 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * * - * Corresponds to "Total ad requests (ATN)" in the Ad Manager UI. + * Corresponds to "Total ad requests (Ads traffic navigator)" in the Ad + * Manager UI. * * Compatible with the following report types: * @@ -37898,6 +40269,25 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { */ public static final int ATN_YIELD_GROUP_MEDIATION_PASSBACKS_VALUE = 390; + /** + * + * + *
+     * Cost of the audience segment.
+     *
+     *
+     *
+     * Corresponds to "Audience segment cost" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * AUDIENCE_SEGMENT_COST = 558; + */ + public static final int AUDIENCE_SEGMENT_COST_VALUE = 558; + /** * * @@ -37929,7 +40319,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total average eCPM w/o CPD" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `MONEY` *
@@ -38121,7 +40511,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total clicks" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `INTEGER` * @@ -38314,7 +40704,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total CTR" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `PERCENT` * @@ -39098,7 +41488,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total impressions" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `INTEGER` * @@ -39303,6 +41693,296 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { */ public static final int OVERDELIVERED_IMPRESSIONS_VALUE = 432; + /** + * + * + *
+     * The gross revenue for partner finance reports.
+     *
+     *
+     *
+     * Corresponds to "Gross revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_GROSS_REVENUE = 648; + */ + public static final int PARTNER_FINANCE_GROSS_REVENUE_VALUE = 648; + + /** + * + * + *
+     * Monthly host eCPM for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Host eCPM" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_HOST_ECPM = 649; + */ + public static final int PARTNER_FINANCE_HOST_ECPM_VALUE = 649; + + /** + * + * + *
+     * The host impressions for partner finance reports.
+     *
+     *
+     *
+     * Corresponds to "Host impressions" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_FINANCE_HOST_IMPRESSIONS = 650; + */ + public static final int PARTNER_FINANCE_HOST_IMPRESSIONS_VALUE = 650; + + /** + * + * + *
+     * Monthly host revenue for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Host revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_HOST_REVENUE = 651; + */ + public static final int PARTNER_FINANCE_HOST_REVENUE_VALUE = 651; + + /** + * + * + *
+     * Monthly partner eCPM for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Partner eCPM" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_PARTNER_ECPM = 652; + */ + public static final int PARTNER_FINANCE_PARTNER_ECPM_VALUE = 652; + + /** + * + * + *
+     * Monthly partner revenue for partner finance reports
+     *
+     *
+     *
+     * Corresponds to "Partner revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PARTNER_FINANCE`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_FINANCE_PARTNER_REVENUE = 653; + */ + public static final int PARTNER_FINANCE_PARTNER_REVENUE_VALUE = 653; + + /** + * + * + *
+     * The gross revenue in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management gross revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * PARTNER_MANAGEMENT_GROSS_REVENUE = 533; + */ + public static final int PARTNER_MANAGEMENT_GROSS_REVENUE_VALUE = 533; + + /** + * + * + *
+     * The host clicks in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management host clicks" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_HOST_CLICKS = 534; + */ + public static final int PARTNER_MANAGEMENT_HOST_CLICKS_VALUE = 534; + + /** + * + * + *
+     * The host CTR in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management host CTR" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * PARTNER_MANAGEMENT_HOST_CTR = 535; + */ + public static final int PARTNER_MANAGEMENT_HOST_CTR_VALUE = 535; + + /** + * + * + *
+     * The host impressions in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management host impressions" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_HOST_IMPRESSIONS = 536; + */ + public static final int PARTNER_MANAGEMENT_HOST_IMPRESSIONS_VALUE = 536; + + /** + * + * + *
+     * The partner clicks in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner clicks" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_CLICKS = 537; + */ + public static final int PARTNER_MANAGEMENT_PARTNER_CLICKS_VALUE = 537; + + /** + * + * + *
+     * The partner CTR in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner CTR" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_CTR = 538; + */ + public static final int PARTNER_MANAGEMENT_PARTNER_CTR_VALUE = 538; + + /** + * + * + *
+     * The partner impressions in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management partner impressions" in the Ad Manager
+     * UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS = 539; + */ + public static final int PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS_VALUE = 539; + + /** + * + * + *
+     * The total content views in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management total monetizable content views" in
+     * the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS = 540; + */ + public static final int PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS_VALUE = 540; + + /** + * + * + *
+     * The unfilled impressions in the partner management.
+     *
+     *
+     *
+     * Corresponds to "Partner management unfilled impressions" in the Ad
+     * Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`,
+     * `PARTNER_FINANCE`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS = 541; + */ + public static final int PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS_VALUE = 541; + /** * * @@ -39617,7 +42297,7 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * Corresponds to "Total revenue" in the Ad Manager UI. * - * Compatible with the following report types: `HISTORICAL` + * Compatible with the following report types: `HISTORICAL`, `AD_SPEED` * * Data format: `MONEY` * @@ -39652,7 +42332,103 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * Total amount of revenue (excluding CPD) based on the number of units
+     * The total CPD net revenue for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPD revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_CPD_REVENUE = 560; + */ + public static final int REVENUE_VERIFICATION_CPD_REVENUE_VALUE = 560; + + /** + * + * + *
+     * The total CPD gross revenue for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPD revenue (gross)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_GROSS_CPD_REVENUE = 559; + */ + public static final int REVENUE_VERIFICATION_GROSS_CPD_REVENUE_VALUE = 559; + + /** + * + * + *
+     * The total gross revenue (excluding CPD) for Revenue Verification
+     *  reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPM and CPC revenue (gross)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD = 561; + */ + public static final int REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD_VALUE = 561; + + /** + * + * + *
+     * The total impressions for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total impressions" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * REVENUE_VERIFICATION_IMPRESSIONS = 564; + */ + public static final int REVENUE_VERIFICATION_IMPRESSIONS_VALUE = 564; + + /** + * + * + *
+     * The total net revenue (excluding CPD) for Revenue Verification reporting.
+     *
+     *
+     *
+     * Corresponds to "Total CPM and CPC revenue" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `REVENUE_VERIFICATION`
+     *
+     * Data format: `MONEY`
+     * 
+ * + * REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD = 567; + */ + public static final int REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD_VALUE = 567; + + /** + * + * + *
+     * Total revenue (excluding CPD) based on the number of units
      *  served by the Google Ad Manager server, AdSense, Ad Exchange, and
      *  third-party Mediation networks.
      *
@@ -40881,25 +43657,6 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum {
      */
     public static final int USER_MESSAGES_ALLOW_ADS_PAGEVIEWS_VALUE = 489;
 
-    /**
-     *
-     *
-     * 
-     * Number of times a US state regulations message was shown to users.
-     *
-     *
-     *
-     * Corresponds to "US states messages shown" in the Ad Manager UI.
-     *
-     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
-     *
-     * Data format: `INTEGER`
-     * 
- * - * USER_MESSAGES_CCPA_MESSAGES_SHOWN = 490; - */ - public static final int USER_MESSAGES_CCPA_MESSAGES_SHOWN_VALUE = 490; - /** * * @@ -41176,6 +43933,44 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { */ public static final int USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO_VALUE = 502; + /** + * + * + *
+     * Number of times a US state regulations message was shown to users.
+     *
+     *
+     *
+     * Corresponds to "US states messages shown" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * USER_MESSAGES_US_STATES_MESSAGES_SHOWN = 490; + */ + public static final int USER_MESSAGES_US_STATES_MESSAGES_SHOWN_VALUE = 490; + + /** + * + * + *
+     * Number of times users selected the opt-out option in a US states message.
+     *
+     *
+     *
+     * Corresponds to "US states opt-out selections" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `PRIVACY_AND_MESSAGING`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS = 586; + */ + public static final int USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS_VALUE = 586; + /** * * @@ -42718,6 +45513,201 @@ public enum Metric implements com.google.protobuf.ProtocolMessageEnum { */ public static final int VIDEO_REAL_TIME_UNMATCHED_QUERIES_VALUE = 141; + /** + * + * + *
+     * The total number of breaks completed or fatal errors for the last ad in
+     *  the pod.
+     *
+     *
+     *
+     * Corresponds to "Break end" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END = 279; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END_VALUE = 279; + + /** + * + * + *
+     * The total number of breaks starts or errors for the first ad in a pod
+     *  that users made it to.
+     *
+     *
+     *
+     * Corresponds to "Break start" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START = 280; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START_VALUE = 280; + + /** + * + * + *
+     * The number of video ad opportunities reached by a user (rounded down, or
+     *  capped based on your max ads setting, whichever is less).
+     *
+     *
+     *
+     * Corresponds to "Capped opportunities (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK = 281; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK_VALUE = 281; + + /** + * + * + *
+     * The total number of seconds available to be filled.
+     *
+     *
+     *
+     * Corresponds to "Total duration (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK = 283; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK_VALUE = 283; + + /** + * + * + *
+     * The total number of seconds filled.
+     *
+     *
+     *
+     * Corresponds to "Matched duration (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK = 285; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK_VALUE = 285; + + /** + * + * + *
+     * The total matched opportunities in video true opportunities reporting.
+     *
+     *
+     *
+     * Corresponds to "Matched opportunities (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK = 287; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK_VALUE = + 287; + + /** + * + * + *
+     * The number of video ad opportunities reached by a user (rounded down).
+     *
+     *
+     *
+     * Corresponds to "Viewed opportunities (adbreak)" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK = 289; + */ + public static final int VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK_VALUE = 289; + + /** + * + * + *
+     * The number of TrueView ad impressions viewed.
+     *
+     *
+     *
+     * Corresponds to "True views" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `INTEGER`
+     * 
+ * + * VIDEO_TRUE_VIEWS = 392; + */ + public static final int VIDEO_TRUE_VIEWS_VALUE = 392; + + /** + * + * + *
+     * Measures the percentage of skips.
+     *
+     *
+     *
+     * Corresponds to "True views skip rate" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * VIDEO_TRUE_VIEW_SKIP_RATE = 393; + */ + public static final int VIDEO_TRUE_VIEW_SKIP_RATE_VALUE = 393; + + /** + * + * + *
+     * The view-through rate is the percentage of views divided by number of
+     *  impressions
+     *
+     *
+     *
+     * Corresponds to "True views view-through rate" in the Ad Manager UI.
+     *
+     * Compatible with the following report types: `HISTORICAL`
+     *
+     * Data format: `PERCENT`
+     * 
+ * + * VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE = 394; + */ + public static final int VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE_VALUE = 394; + /** * * @@ -43542,6 +46532,10 @@ public static Metric forNumber(int value) { return AD_SERVER_IMPRESSIONS_WITH_COMPANION; case 338: return AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS; + case 461: + return AD_SERVER_OPPORTUNITIES_FROM_ERRORS; + case 462: + return AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS; case 12: return AD_SERVER_PERCENT_CLICKS; case 11: @@ -43686,6 +46680,8 @@ public static Metric forNumber(int value) { return ATN_VALID_AD_REQUESTS; case 390: return ATN_YIELD_GROUP_MEDIATION_PASSBACKS; + case 558: + return AUDIENCE_SEGMENT_COST; case 37: return AVERAGE_ECPM; case 5: @@ -43830,6 +46826,36 @@ public static Metric forNumber(int value) { return OPPORTUNITIES; case 432: return OVERDELIVERED_IMPRESSIONS; + case 648: + return PARTNER_FINANCE_GROSS_REVENUE; + case 649: + return PARTNER_FINANCE_HOST_ECPM; + case 650: + return PARTNER_FINANCE_HOST_IMPRESSIONS; + case 651: + return PARTNER_FINANCE_HOST_REVENUE; + case 652: + return PARTNER_FINANCE_PARTNER_ECPM; + case 653: + return PARTNER_FINANCE_PARTNER_REVENUE; + case 533: + return PARTNER_MANAGEMENT_GROSS_REVENUE; + case 534: + return PARTNER_MANAGEMENT_HOST_CLICKS; + case 535: + return PARTNER_MANAGEMENT_HOST_CTR; + case 536: + return PARTNER_MANAGEMENT_HOST_IMPRESSIONS; + case 537: + return PARTNER_MANAGEMENT_PARTNER_CLICKS; + case 538: + return PARTNER_MANAGEMENT_PARTNER_CTR; + case 539: + return PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS; + case 540: + return PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS; + case 541: + return PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS; case 135: return PARTNER_SALES_FILLED_POD_REQUESTS; case 136: @@ -43864,6 +46890,16 @@ public static Metric forNumber(int value) { return REVENUE; case 214: return REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT; + case 560: + return REVENUE_VERIFICATION_CPD_REVENUE; + case 559: + return REVENUE_VERIFICATION_GROSS_CPD_REVENUE; + case 561: + return REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD; + case 564: + return REVENUE_VERIFICATION_IMPRESSIONS; + case 567: + return REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD; case 4: return REVENUE_WITHOUT_CPD; case 413: @@ -43988,8 +47024,6 @@ public static Metric forNumber(int value) { return USER_MESSAGES_AD_BLOCKING_RECOVERY_MESSAGES_SHOWN; case 489: return USER_MESSAGES_ALLOW_ADS_PAGEVIEWS; - case 490: - return USER_MESSAGES_CCPA_MESSAGES_SHOWN; case 491: return USER_MESSAGES_IDFA_ATT_ALERTS_SHOWN; case 492: @@ -44018,6 +47052,10 @@ public static Metric forNumber(int value) { return USER_MESSAGES_UPTC_MESSAGES_SHOWN; case 502: return USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO; + case 490: + return USER_MESSAGES_US_STATES_MESSAGES_SHOWN; + case 586: + return USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS; case 180: return VIDEO_ERROR_100_COUNT; case 181: @@ -44180,6 +47218,26 @@ public static Metric forNumber(int value) { return VIDEO_REAL_TIME_TOTAL_QUERIES; case 141: return VIDEO_REAL_TIME_UNMATCHED_QUERIES; + case 279: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END; + case 280: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START; + case 281: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK; + case 283: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK; + case 285: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK; + case 287: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK; + case 289: + return VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK; + case 392: + return VIDEO_TRUE_VIEWS; + case 393: + return VIDEO_TRUE_VIEW_SKIP_RATE; + case 394: + return VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE; case 103: return VIDEO_VIEWERSHIP_AUTO_PLAYS; case 104: @@ -44389,6 +47447,8 @@ private static Metric[] getStaticValuesArray() { AD_SERVER_IMPRESSIONS, AD_SERVER_IMPRESSIONS_WITH_COMPANION, AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS, + AD_SERVER_OPPORTUNITIES_FROM_ERRORS, + AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS, AD_SERVER_PERCENT_CLICKS, AD_SERVER_PERCENT_IMPRESSIONS, AD_SERVER_PERCENT_REVENUE, @@ -44462,6 +47522,7 @@ private static Metric[] getStaticValuesArray() { ATN_TOTAL_LOADED_ADS, ATN_VALID_AD_REQUESTS, ATN_YIELD_GROUP_MEDIATION_PASSBACKS, + AUDIENCE_SEGMENT_COST, AVERAGE_ECPM, AVERAGE_ECPM_WITHOUT_CPD, AVERAGE_ENGAGEMENT_SECONDS_PER_SESSION, @@ -44534,6 +47595,21 @@ private static Metric[] getStaticValuesArray() { MUTE_ELIGIBLE_IMPRESSIONS, OPPORTUNITIES, OVERDELIVERED_IMPRESSIONS, + PARTNER_FINANCE_GROSS_REVENUE, + PARTNER_FINANCE_HOST_ECPM, + PARTNER_FINANCE_HOST_IMPRESSIONS, + PARTNER_FINANCE_HOST_REVENUE, + PARTNER_FINANCE_PARTNER_ECPM, + PARTNER_FINANCE_PARTNER_REVENUE, + PARTNER_MANAGEMENT_GROSS_REVENUE, + PARTNER_MANAGEMENT_HOST_CLICKS, + PARTNER_MANAGEMENT_HOST_CTR, + PARTNER_MANAGEMENT_HOST_IMPRESSIONS, + PARTNER_MANAGEMENT_PARTNER_CLICKS, + PARTNER_MANAGEMENT_PARTNER_CTR, + PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS, + PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS, + PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS, PARTNER_SALES_FILLED_POD_REQUESTS, PARTNER_SALES_FILL_RATE, PARTNER_SALES_PARTNER_MATCH_RATE, @@ -44551,6 +47627,11 @@ private static Metric[] getStaticValuesArray() { RETENTION, REVENUE, REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT, + REVENUE_VERIFICATION_CPD_REVENUE, + REVENUE_VERIFICATION_GROSS_CPD_REVENUE, + REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD, + REVENUE_VERIFICATION_IMPRESSIONS, + REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD, REVENUE_WITHOUT_CPD, REWARDS_GRANTED, RICH_MEDIA_AVERAGE_DISPLAY_TIME, @@ -44613,7 +47694,6 @@ private static Metric[] getStaticValuesArray() { USER_MESSAGES_AD_BLOCKING_RECOVERY_ALLOWLISTED_COUNT, USER_MESSAGES_AD_BLOCKING_RECOVERY_MESSAGES_SHOWN, USER_MESSAGES_ALLOW_ADS_PAGEVIEWS, - USER_MESSAGES_CCPA_MESSAGES_SHOWN, USER_MESSAGES_IDFA_ATT_ALERTS_SHOWN, USER_MESSAGES_IDFA_ATT_CONSENT, USER_MESSAGES_IDFA_ATT_CONSENT_RATE, @@ -44628,6 +47708,8 @@ private static Metric[] getStaticValuesArray() { USER_MESSAGES_TOTAL_ESTIMATED_REVENUE, USER_MESSAGES_UPTC_MESSAGES_SHOWN, USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO, + USER_MESSAGES_US_STATES_MESSAGES_SHOWN, + USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS, VIDEO_ERROR_100_COUNT, VIDEO_ERROR_101_COUNT, VIDEO_ERROR_102_COUNT, @@ -44709,6 +47791,16 @@ private static Metric[] getStaticValuesArray() { VIDEO_REAL_TIME_TOTAL_ERROR_COUNT, VIDEO_REAL_TIME_TOTAL_QUERIES, VIDEO_REAL_TIME_UNMATCHED_QUERIES, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK, + VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK, + VIDEO_TRUE_VIEWS, + VIDEO_TRUE_VIEW_SKIP_RATE, + VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE, VIDEO_VIEWERSHIP_AUTO_PLAYS, VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE, VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME, @@ -46695,6 +49787,17 @@ public enum RelativeDateRange implements com.google.protobuf.ProtocolMessageEnum * LAST_WEEK = 7; */ LAST_WEEK(7), + /** + * + * + *
+       * The entire previous calendar week, Sunday to Saturday (inclusive),
+       * preceding the calendar week the report is run.
+       * 
+ * + * LAST_WEEK_STARTING_SUNDAY = 39; + */ + LAST_WEEK_STARTING_SUNDAY(39), /** * * @@ -46768,6 +49871,16 @@ public enum RelativeDateRange implements com.google.protobuf.ProtocolMessageEnum * LAST_90_DAYS = 14; */ LAST_90_DAYS(14), + /** + * + * + *
+       * The 93 days preceding the day the report is run.
+       * 
+ * + * LAST_93_DAYS = 38; + */ + LAST_93_DAYS(38), /** * * @@ -47119,6 +50232,18 @@ public enum RelativeDateRange implements com.google.protobuf.ProtocolMessageEnum */ public static final int LAST_WEEK_VALUE = 7; + /** + * + * + *
+       * The entire previous calendar week, Sunday to Saturday (inclusive),
+       * preceding the calendar week the report is run.
+       * 
+ * + * LAST_WEEK_STARTING_SUNDAY = 39; + */ + public static final int LAST_WEEK_STARTING_SUNDAY_VALUE = 39; + /** * * @@ -47199,6 +50324,17 @@ public enum RelativeDateRange implements com.google.protobuf.ProtocolMessageEnum */ public static final int LAST_90_DAYS_VALUE = 14; + /** + * + * + *
+       * The 93 days preceding the day the report is run.
+       * 
+ * + * LAST_93_DAYS = 38; + */ + public static final int LAST_93_DAYS_VALUE = 38; + /** * * @@ -47471,6 +50607,8 @@ public static RelativeDateRange forNumber(int value) { return THIS_YEAR_TO_DATE; case 7: return LAST_WEEK; + case 39: + return LAST_WEEK_STARTING_SUNDAY; case 8: return LAST_MONTH; case 9: @@ -47485,6 +50623,8 @@ public static RelativeDateRange forNumber(int value) { return LAST_60_DAYS; case 14: return LAST_90_DAYS; + case 38: + return LAST_93_DAYS; case 15: return LAST_180_DAYS; case 16: diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionOrBuilder.java index 9b3fadf07cfc..98bb47a0b017 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionProto.java index 49946304197e..b784ba54afe4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportDefinitionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,7 +81,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "/google/ads/admanager/v1/report_definit" + "ion.proto\022\027google.ads.admanager.v1\032*goog" + "le/ads/admanager/v1/report_value.proto\032\037" - + "google/api/field_behavior.proto\032\026google/type/date.proto\"\350\324\002\n" + + "google/api/field_behavior.proto\032\026google/type/date.proto\"\275\355\002\n" + "\020ReportDefinition\022L\n" + "\n" + "dimensions\030\001" @@ -117,7 +117,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + ".admanager.v1.ReportDefinition.DimensionH\000\022B\n" + "\006metric\030\002" + " \001(\01620.google.ads.admanager.v1.ReportDefinition.MetricH\000B\007\n" - + "\005field\032\376\007\n" + + "\005field\032\257\010\n" + "\tDateRange\022S\n" + "\005fixed\030\001 \001(\0132B.google.ad" + "s.admanager.v1.ReportDefinition.DateRange.FixedDateRangeH\000\022Y\n" @@ -125,7 +125,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "oogle.ads.admanager.v1.ReportDefinition.DateRange.RelativeDateRangeH\000\032f\n" + "\016FixedDateRange\022*\n\n" + "start_date\030\001 \001(\0132\021.google.type.DateB\003\340A\002\022(\n" - + "\010end_date\030\002 \001(\0132\021.google.type.DateB\003\340A\002\"\305\005\n" + + "\010end_date\030\002 \001(\0132\021.google.type.DateB\003\340A\002\"\366\005\n" + "\021RelativeDateRange\022#\n" + "\037RELATIVE_DATE_RANGE_UNSPECIFIED\020\000\022\t\n" + "\005TODAY\020\001\022\r\n" @@ -138,7 +138,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024THIS_QUARTER_TO_DATE\020\033\022\r\n" + "\tTHIS_YEAR\020\006\022\025\n" + "\021THIS_YEAR_TO_DATE\020\034\022\r\n" - + "\tLAST_WEEK\020\007\022\016\n\n" + + "\tLAST_WEEK\020\007\022\035\n" + + "\031LAST_WEEK_STARTING_SUNDAY\020\'\022\016\n\n" + "LAST_MONTH\020\010\022\020\n" + "\014LAST_QUARTER\020\t\022\r\n" + "\tLAST_YEAR\020\n" @@ -147,13 +148,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\014LAST_30_DAYS\020\014\022\020\n" + "\014LAST_60_DAYS\020\r" + "\022\020\n" - + "\014LAST_90_DAYS\020\016\022\021\n\r" + + "\014LAST_90_DAYS\020\016\022\020\n" + + "\014LAST_93_DAYS\020&\022\021\n\r" + "LAST_180_DAYS\020\017\022\021\n\r" + "LAST_360_DAYS\020\020\022\021\n\r" + "LAST_365_DAYS\020\021\022\021\n\r" + "LAST_3_MONTHS\020\022\022\021\n\r" + "LAST_6_MONTHS\020\023\022\022\n" - + "\016LAST_12_MONTHS\020\024\022\021\n\r" + + "\016LAST_12_MONTHS\020\024\022\021\n" + + "\r" + "ALL_AVAILABLE\020\025\022\014\n" + "\010TOMORROW\020\036\022\020\n" + "\014NEXT_90_DAYS\020\037\022\016\n\n" @@ -167,32 +170,32 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\031SAME_PERIOD_PREVIOUS_YEAR\020\030B\021\n" + "\017date_range_type\032\317\010\n" + "\006Filter\022T\n" - + "\014field_filter\030\001 \001(\0132<.google.ads.admanager" - + ".v1.ReportDefinition.Filter.FieldFilterH\000\022F\n\n" - + "not_filter\030\002" - + " \001(\01320.google.ads.admanager.v1.ReportDefinition.FilterH\000\022Q\n\n" - + "and_filter\030\003" - + " \001(\0132;.google.ads.admanager.v1.ReportDefinition.Filter.FilterListH\000\022P\n" - + "\tor_filter\030\004 \001(\0132;.google.ads.admanager.v" - + "1.ReportDefinition.Filter.FilterListH\000\032\346\003\n" + + "\014field_filter\030\001 \001(\0132<.google.ads." + + "admanager.v1.ReportDefinition.Filter.FieldFilterH\000\022F\n\n" + + "not_filter\030\002 \001(\01320.google." + + "ads.admanager.v1.ReportDefinition.FilterH\000\022Q\n\n" + + "and_filter\030\003 \001(\0132;.google.ads.adma" + + "nager.v1.ReportDefinition.Filter.FilterListH\000\022P\n" + + "\tor_filter\030\004 \001(\0132;.google.ads.ad" + + "manager.v1.ReportDefinition.Filter.FilterListH\000\032\346\003\n" + "\013FieldFilter\022C\n" - + "\005field\030\001 \001(\0132/.google.a" - + "ds.admanager.v1.ReportDefinition.FieldB\003\340A\002\022R\n" - + "\toperation\030\002 \001(\0162:.google.ads.adma" - + "nager.v1.ReportDefinition.Filter.OperationB\003\340A\002\0229\n" + + "\005field\030\001 \001(\0132/" + + ".google.ads.admanager.v1.ReportDefinition.FieldB\003\340A\002\022R\n" + + "\toperation\030\002 \001(\0162:.google" + + ".ads.admanager.v1.ReportDefinition.Filter.OperationB\003\340A\002\0229\n" + "\006values\030\003" + " \003(\0132$.google.ads.admanager.v1.ReportValueB\003\340A\002\022H\n" - + "\005slice\030\004 \001(" - + "\0132/.google.ads.admanager.v1.ReportDefinition.SliceB\003\340A\001H\000\210\001\001\022#\n" + + "\005slice\030\004" + + " \001(\0132/.google.ads.admanager.v1.ReportDefinition.SliceB\003\340A\001H\000\210\001\001\022#\n" + "\021time_period_index\030\005 \001(\005B\003\340A\001H\001\210\001\001\022^\n" - + "\021metric_value_type\030\006" - + " \001(\01629.google.ads.admanager.v1.ReportDefinition.MetricValueTypeB\003\340A\001H\002\210\001\001B\010\n" + + "\021metric_value_type\030\006 \001(\01629.google.ads.admanager.v1." + + "ReportDefinition.MetricValueTypeB\003\340A\001H\002\210\001\001B\010\n" + "\006_sliceB\024\n" + "\022_time_period_indexB\024\n" + "\022_metric_value_type\032T\n\n" + "FilterList\022F\n" - + "\007filters\030\001 \003(\01320" - + ".google.ads.admanager.v1.ReportDefinition.FilterB\003\340A\002\"\272\001\n" + + "\007filters\030\001" + + " \003(\01320.google.ads.admanager.v1.ReportDefinition.FilterB\003\340A\002\"\272\001\n" + "\tOperation\022\006\n" + "\002IN\020\000\022\n\n" + "\006NOT_IN\020\001\022\014\n" @@ -208,32 +211,34 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "B\006\n" + "\004type\032\351\002\n" + "\004Sort\022C\n" - + "\005field\030\001 \001(\0132/.goo" - + "gle.ads.admanager.v1.ReportDefinition.FieldB\003\340A\002\022\027\n\n" + + "\005field\030\001 " + + "\001(\0132/.google.ads.admanager.v1.ReportDefinition.FieldB\003\340A\002\022\027\n\n" + "descending\030\002 \001(\010B\003\340A\001\022H\n" + "\005slice\030\003" + " \001(\0132/.google.ads.admanager.v1.ReportDefinition.SliceB\003\340A\001H\000\210\001\001\022#\n" + "\021time_period_index\030\004 \001(\005B\003\340A\001H\001\210\001\001\022^\n" - + "\021metric_value_type\030\005 \001(\01629.google.ads.admanager.v1.Re" - + "portDefinition.MetricValueTypeB\003\340A\001H\002\210\001\001B\010\n" + + "\021metric_value_type\030\005 \001(\01629.google.ads.admana" + + "ger.v1.ReportDefinition.MetricValueTypeB\003\340A\001H\002\210\001\001B\010\n" + "\006_sliceB\024\n" + "\022_time_period_indexB\024\n" + "\022_metric_value_type\032\216\001\n" + "\005Slice\022K\n" - + "\tdimension\030\001 " - + "\001(\01623.google.ads.admanager.v1.ReportDefinition.DimensionB\003\340A\002\0228\n" + + "\tdimension\030\001" + + " \001(\01623.google.ads.admanager.v1.ReportDefinition.DimensionB\003\340A\002\0228\n" + "\005value\030\002 \001(\0132$.google.ads.admanager.v1.ReportValueB\003\340A\002\032a\n" + "\004Flag\022F\n" - + "\007filters\030\001 \003(\01320.google.ads.ad" - + "manager.v1.ReportDefinition.FilterB\003\340A\002\022\021\n" - + "\004name\030\002 \001(\tB\003\340A\001\"m\n\n" + + "\007filters\030\001 \003(\01320.goog" + + "le.ads.admanager.v1.ReportDefinition.FilterB\003\340A\002\022\021\n" + + "\004name\030\002 \001(\tB\003\340A\001\"\234\001\n\n" + "ReportType\022\033\n" + "\027REPORT_TYPE_UNSPECIFIED\020\000\022\016\n\n" + "HISTORICAL\020\001\022\t\n" + "\005REACH\020\005\022\031\n" - + "\025PRIVACY_AND_MESSAGING\020\006\022\014\n" + + "\025PRIVACY_AND_MESSAGING\020\006\022\030\n" + + "\024REVENUE_VERIFICATION\020\007\022\023\n" + + "\017PARTNER_FINANCE\020\010\022\014\n" + "\010AD_SPEED\020\r" - + "\"\263\251\001\n" + + "\"\337\265\001\n" + "\tDimension\022\031\n" + "\025DIMENSION_UNSPECIFIED\020\000\022#\n" + "\036ACTIVE_VIEW_MEASUREMENT_SOURCE\020\277\004\022(\n" @@ -257,7 +262,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\023AD_EXPERIENCES_TYPE\020\201\005\022\035\n" + "\030AD_EXPERIENCES_TYPE_NAME\020\202\005\022\020\n" + "\013AD_LOCATION\020\206\003\022\025\n" - + "\020AD_LOCATION_NAME\020\207\003\022\"\n" + + "\020AD_LOCATION_NAME\020\207\003\022\025\n" + + "\020AD_REQUEST_SIZES\020\235\004\022\"\n" + "\035AD_TECHNOLOGY_PROVIDER_DOMAIN\020\354\004\022\036\n" + "\031AD_TECHNOLOGY_PROVIDER_ID\020\355\004\022 \n" + "\033AD_TECHNOLOGY_PROVIDER_NAME\020\356\004\022\014\n" @@ -329,14 +335,34 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\021AGENCY_LEVEL_3_ID\020\271\004\022\030\n" + "\023AGENCY_LEVEL_3_NAME\020\272\004\022\020\n" + "\013AGE_BRACKET\020\374\003\022\025\n" - + "\020AGE_BRACKET_NAME\020\306\004\022-\n" + + "\020AGE_BRACKET_NAME\020\306\004\022\032\n" + + "\025ANALYTICS_PROPERTY_ID\020\335\005\022\034\n" + + "\027ANALYTICS_PROPERTY_NAME\020\377\005\022-\n" + "(APP_TRACKING_TRANSPARENCY_CONSENT_STATUS\020\272\003\0222\n" + "-APP_TRACKING_TRANSPARENCY_CONSENT_STATUS_NAME\020\273\003\022\020\n" + "\013APP_VERSION\020\210\003\022\031\n" + "\024AUCTION_PACKAGE_DEAL\020\303\004\022\034\n" - + "\027AUCTION_PACKAGE_DEAL_ID\020\273\004\022!\n" + + "\027AUCTION_PACKAGE_DEAL_ID\020\273\004\022\036\n" + + "\031AUDIENCE_SEGMENT_BILLABLE\020\322\004\022&\n" + + "!AUDIENCE_SEGMENT_DATA_PROVIDER_ID\020\345\004\022(\n" + + "#AUDIENCE_SEGMENT_DATA_PROVIDER_NAME\020\346\004\022!\n" + + "\034AUDIENCE_SEGMENT_ID_BILLABLE\020\323\004\022!\n" + "\034AUDIENCE_SEGMENT_ID_TARGETED\020\310\004\022\036\n" - + "\031AUDIENCE_SEGMENT_TARGETED\020\311\004\022\033\n" + + "\031AUDIENCE_SEGMENT_TARGETED\020\311\004\022.\n" + + ")AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE\020\335\004\0224\n" + + "/AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE\020\336\004\0223\n" + + ".AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE\020\337\004\0221\n" + + ",AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE\020\340\004\022-\n" + + "(AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE\020\341\004\0223\n" + + ".AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE\020\342\004\0224\n" + + "/AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE\020\343\004\022-\n" + + "(AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE\020\344\004\022-\n" + + "(AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE\020\347\004\0223\n" + + ".AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE\020\350\004\022#\n" + + "\036AUDIENCE_SEGMENT_TARGETED_SIZE\020\352\004\022%\n" + + " AUDIENCE_SEGMENT_TARGETED_STATUS\020\364\004\022*\n" + + "%AUDIENCE_SEGMENT_TARGETED_STATUS_NAME\020\351\004\022-\n" + + "(AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE\020\353\004\022\033\n" + "\026AUTO_REFRESHED_TRAFFIC\020\245\003\022 \n" + "\033AUTO_REFRESHED_TRAFFIC_NAME\020\246\003\022\030\n" + "\023BIDDER_ENCRYPTED_ID\020\355\003\022\020\n" @@ -365,7 +391,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\030CLASSIFIED_ADVERTISER_ID\020\205\001\022\037\n" + "\032CLASSIFIED_ADVERTISER_NAME\020\206\001\022\030\n" + "\023CLASSIFIED_BRAND_ID\020\363\001\022\032\n" - + "\025CLASSIFIED_BRAND_NAME\020\364\001\022\025\n" + + "\025CLASSIFIED_BRAND_NAME\020\364\001\022\026\n" + + "\021CONTENT_BUNDLE_ID\020\314\003\022\030\n" + + "\023CONTENT_BUNDLE_NAME\020\315\003\022)\n" + + "$CONTENT_CMS_METADATA_KV_NAMESPACE_ID\020\316\003\022+\n" + + "&CONTENT_CMS_METADATA_KV_NAMESPACE_NAME\020\317\003\022\025\n" + "\020CONTENT_CMS_NAME\020\203\005\022\031\n" + "\024CONTENT_CMS_VIDEO_ID\020\204\005\022\017\n\n" + "CONTENT_ID\020\366\001\022\035\n" @@ -374,7 +404,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\014CONTENT_NAME\020\367\001\022\016\n" + "\tCONTINENT\020\325\003\022\023\n" + "\016CONTINENT_NAME\020\326\003\022\021\n" - + "\014COUNTRY_CODE\020\322\003\022\016\n\n" + + "\014COUNTRY_CODE\020\322\003\022\016\n" + + "\n" + "COUNTRY_ID\020\013\022\020\n" + "\014COUNTRY_NAME\020\014\022\032\n" + "\025CREATIVE_BILLING_TYPE\020\356\002\022\037\n" @@ -425,8 +456,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\026DEVICE_MANUFACTURER_ID\020\215\004\022\035\n" + "\030DEVICE_MANUFACTURER_NAME\020\216\004\022\024\n" + "\017DEVICE_MODEL_ID\020\217\004\022\026\n" - + "\021DEVICE_MODEL_NAME\020\220\004\022\020\n" - + "\013DEVICE_NAME\020\341\001\022\020\n" + + "\021DEVICE_MODEL_NAME\020\220\004\022\024\n" + + "\013DEVICE_NAME\020\341\001\032\002\010\001\022\020\n" + "\013DSP_SEAT_ID\020\264\004\022\034\n" + "\027DYNAMIC_ALLOCATION_TYPE\020\366\003\022!\n" + "\034DYNAMIC_ALLOCATION_TYPE_NAME\020\367\003\022\021\n" @@ -475,7 +506,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "IS_DROPPED\020\320\003\022\027\n" + "\022IS_FIRST_LOOK_DEAL\020\221\003\022\022\n\r" + "KEY_VALUES_ID\020\326\001\022\024\n" - + "\017KEY_VALUES_NAME\020\327\001\022\025\n" + + "\017KEY_VALUES_NAME\020\327\001\022\023\n" + + "\016KEY_VALUES_SET\020\311\005\022\025\n" + "\020LINE_ITEM_AGENCY\020\227\005\022\027\n" + "\022LINE_ITEM_ARCHIVED\020\274\001\022(\n" + "#LINE_ITEM_COMPANION_DELIVERY_OPTION\020\314\001\022-\n" @@ -601,7 +633,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\023ORDER_UNLIMITED_END\020\313\001\022\016\n" + "\tPAGE_PATH\020\377\003\022 \n" + "\033PAGE_TITLE_AND_SCREEN_CLASS\020\200\004\022\037\n" - + "\032PAGE_TITLE_AND_SCREEN_NAME\020\201\004\022\020\n" + + "\032PAGE_TITLE_AND_SCREEN_NAME\020\201\004\022%\n" + + " PARTNER_MANAGEMENT_ASSIGNMENT_ID\020\221\005\022\'\n" + + "\"PARTNER_MANAGEMENT_ASSIGNMENT_NAME\020\222\005\022\"\n" + + "\035PARTNER_MANAGEMENT_PARTNER_ID\020\217\005\022$\n" + + "\037PARTNER_MANAGEMENT_PARTNER_NAME\020\220\005\022\020\n" + "\014PLACEMENT_ID\020q\022\025\n" + "\020PLACEMENT_ID_ALL\020\220\001\022\022\n" + "\016PLACEMENT_NAME\020r\022\027\n" @@ -617,7 +653,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "!PREDICTED_VIEWABILITY_BUCKET_NAME\020\372\004\022\037\n" + "\032PRESENTED_SECURE_SIGNAL_ID\020\357\003\022!\n" + "\034PRESENTED_SECURE_SIGNAL_NAME\020\360\003\022$\n" - + "\037PRIMARY_PERSONALIZATION_ID_TYPE\020\230\003\022)\n" + + "\037PRIMARY_PERSONALIZATION_ID_TY", + "PE\020\230\003\022)\n" + "$PRIMARY_PERSONALIZATION_ID_TYPE_NAME\020\231\003\022\036\n" + "\025PROGRAMMATIC_BUYER_ID\020\360\001\032\002\010\001\022 \n" + "\027PROGRAMMATIC_BUYER_NAME\020\361\001\032\002\010\001\022\030\n" @@ -648,12 +685,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\026RENDERED_CREATIVE_SIZE\020\327\002\022\027\n" + "\022REQUESTED_AD_SIZES\020\340\002\022\021\n" + "\014REQUEST_TYPE\020\222\001\022\026\n" - + "\021REQUEST_TYPE_NAME\020\223\001\022$\n" + + "\021REQUEST_TYPE_NAME\020\223\001\022\034\n" + + "\027REVENUE_VERIFICATION_ID\020\205\005\022$\n" + "\037SERVER_SIDE_UNWRAPPING_ELIGIBLE\020\325\004\022\030\n" + "\023SERVING_RESTRICTION\020\367\004\022\035\n" + "\030SERVING_RESTRICTION_NAME\020\370\004\022\t\n" - + "\004SI", - "TE\020\203\003\022\021\n" + + "\004SITE\020\203\003\022\021\n" + "\014TARGETING_ID\020\350\001\022\023\n" + "\016TARGETING_NAME\020\351\001\022\023\n" + "\016TARGETING_TYPE\020\201\003\022\030\n" @@ -668,7 +705,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\027UNIFIED_PRICING_RULE_ID\020\211\003\022\036\n" + "\031UNIFIED_PRICING_RULE_NAME\020\212\003\022\010\n" + "\003URL\020\372\003\022\013\n" - + "\006URL_ID\020\373\003\022%\n" + + "\006URL_ID\020\373\003\022\031\n" + + "\024USER_MESSAGES_CHOICE\020\276\005\022\036\n" + + "\031USER_MESSAGES_CHOICE_NAME\020\277\005\022%\n" + " USER_MESSAGES_ENTITLEMENT_SOURCE\020\373\004\022*\n" + "%USER_MESSAGES_ENTITLEMENT_SOURCE_NAME\020\374\004\022/\n" + "*USER_MESSAGES_OPERATING_SYSTEM_CRITERIA_ID\020\375\004\0221\n" @@ -689,7 +728,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\022VIDEO_AD_TYPE_NAME\020\261\003\022\037\n" + "\032VIDEO_CONTINUOUS_PLAY_TYPE\020\321\005\022$\n" + "\037VIDEO_CONTINUOUS_PLAY_TYPE_NAME\020\322\005\022\034\n" - + "\027VIDEO_FALLBACK_POSITION\020\222\004\022\035\n" + + "\027VIDEO_FALLBACK_POSITION\020\222\004\022.\n" + + ")VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION\020\243\004\022(\n" + + "#VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID\020\244\004\022*\n" + + "%VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME\020\245\004\022*\n" + + "%VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME\020\246\004\022\037\n" + + "\032VIDEO_LIVE_STREAM_EVENT_ID\020\247\004\022!\n" + + "\034VIDEO_LIVE_STREAM_EVENT_NAME\020\250\004\022\035\n" + "\030VIDEO_MEASUREMENT_SOURCE\020\331\004\022\"\n" + "\035VIDEO_MEASUREMENT_SOURCE_NAME\020\332\004\022\020\n" + "\013VIDEO_PLCMT\020\254\001\022\025\n" @@ -699,7 +744,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\021VIDEO_SDK_VERSION\020\270\003\022\033\n" + "\026VIDEO_SDK_VERSION_NAME\020\271\003\022\030\n" + "\023VIDEO_STITCHER_TYPE\020\360\005\022\035\n" - + "\030VIDEO_STITCHER_TYPE_NAME\020\361\005\022\010\n" + + "\030VIDEO_STITCHER_TYPE_NAME\020\361\005\022\026\n" + + "\021WEB_PROPERTY_CODE\020\332\005\022\010\n" + "\004WEEK\020\005\022\033\n" + "\026YIELD_GROUP_BUYER_NAME\020\270\001\022\037\n" + "\032YIELD_GROUP_BUYER_TAG_NAME\020\363\004\022\023\n" @@ -908,7 +954,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\030CUSTOM_DIMENSION_6_VALUE\020\216\225\006\022\036\n" + "\030CUSTOM_DIMENSION_7_VALUE\020\217\225\006\022\036\n" + "\030CUSTOM_DIMENSION_8_VALUE\020\220\225\006\022\036\n" - + "\030CUSTOM_DIMENSION_9_VALUE\020\221\225\006\032\002\020\001\"\237\210\001\n" + + "\030CUSTOM_DIMENSION_9_VALUE\020\221\225\006\032\002\020\001\"\347\223\001\n" + "\006Metric\022\026\n" + "\022METRIC_UNSPECIFIED\020\000\022\021\n" + "\014ACTIVE_USERS\020\337\001\022)\n" @@ -1012,7 +1058,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "*AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS\020>\022<\n" + "7AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_DISTRIBUTION\020\315\002\0223\n" + "/AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE\020A\022\032\n" - + "\026AD_SERVER_AVERAGE_ECPM\020\"\022&\n" + + "\026AD_", + "SERVER_AVERAGE_ECPM\020\"\022&\n" + "\"AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD\020\n" + "\022*\n" + "%AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS\020\206\002\022\024\n" @@ -1025,7 +1072,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "#AD_SERVER_GROSS_REVENUE_WITHOUT_CPD\020\344\003\022\031\n" + "\025AD_SERVER_IMPRESSIONS\020\006\022)\n" + "$AD_SERVER_IMPRESSIONS_WITH_COMPANION\020\336\001\0223\n" - + ".AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS\020\322\002\022\034\n" + + ".AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS\020\322\002\022(\n" + + "#AD_SERVER_OPPORTUNITIES_FROM_ERRORS\020\315\003\022-\n" + + "(AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS\020\316\003\022\034\n" + "\030AD_SERVER_PERCENT_CLICKS\020\014\022!\n" + "\035AD_SERVER_PERCENT_IMPRESSIONS\020\013\022\035\n" + "\031AD_SERVER_PERCENT_REVENUE\020#\022)\n" @@ -1043,7 +1092,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "+AD_SERVER_UNFILTERED_DOWNLOADED_IMPRESSIONS\020\204\002\022)\n" + " AD_SERVER_UNFILTERED_IMPRESSIONS\020\204\002\032\002\010\001\022%\n" + " AD_SERVER_UNFILTERED_TRACKED_ADS\020\207\002\022\035\n" - + "\030AD_UNIT_EXPOSURE_SECONDS\020\362\001\022\017\n\n" + + "\030AD_UNIT_EXPOSURE_SECONDS\020\362\001\022\017\n" + + "\n" + "AD_VIEWERS\020\251\003\022\035\n" + "\030ATN_ADS_FAILED_TO_RENDER\020\256\003\022\034\n" + "\027ATN_ELIGIBLE_LINE_ITEMS\020\326\002\022(\n" @@ -1062,8 +1112,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\031ATN_LINE_ITEMS_IN_AUCTION\020\340\002\022!\n" + "\034ATN_LINE_ITEMS_NOT_COMPETING\020\203\004\022 \n" + "\033ATN_LINE_ITEMS_NOT_SELECTED\020\341\002\022)\n" - + "$ATN_LINE_IT", - "EM_IN_AUCTION_AD_REQUESTS\020\342\002\022\'\n" + + "$ATN_LINE_ITEM_IN_AUCTION_AD_REQUESTS\020\342\002\022\'\n" + "\"ATN_LINE_ITEM_TARGETED_AD_REQUESTS\020\343\002\022&\n" + "!ATN_MEDIATION_ALLOWED_AD_REQUESTS\020\344\002\022&\n" + "!ATN_MEDIATION_INVALID_AD_REQUESTS\020\345\002\022)\n" @@ -1100,7 +1149,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\"ATN_TOTAL_COMPETING_ADS_IN_AUCTION\020\201\003\022\031\n" + "\024ATN_TOTAL_LOADED_ADS\020\203\003\022\032\n" + "\025ATN_VALID_AD_REQUESTS\020\205\003\022(\n" - + "#ATN_YIELD_GROUP_MEDIATION_PASSBACKS\020\206\003\022\020\n" + + "#ATN_YIELD_GROUP_MEDIATION_PASSBACKS\020\206\003\022\032\n" + + "\025AUDIENCE_SEGMENT_COST\020\256\004\022\020\n" + "\014AVERAGE_ECPM\020%\022\034\n" + "\030AVERAGE_ECPM_WITHOUT_CPD\020\005\022+\n" + "&AVERAGE_ENGAGEMENT_SECONDS_PER_SESSION\020\340\001\022(\n" @@ -1172,7 +1222,22 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\021MUTED_IMPRESSIONS\020\234\003\022\036\n" + "\031MUTE_ELIGIBLE_IMPRESSIONS\020\231\003\022\022\n\r" + "OPPORTUNITIES\020\317\003\022\036\n" - + "\031OVERDELIVERED_IMPRESSIONS\020\260\003\022&\n" + + "\031OVERDELIVERED_IMPRESSIONS\020\260\003\022\"\n" + + "\035PARTNER_FINANCE_GROSS_REVENUE\020\210\005\022\036\n" + + "\031PARTNER_FINANCE_HOST_ECPM\020\211\005\022%\n" + + " PARTNER_FINANCE_HOST_IMPRESSIONS\020\212\005\022!\n" + + "\034PARTNER_FINANCE_HOST_REVENUE\020\213\005\022!\n" + + "\034PARTNER_FINANCE_PARTNER_ECPM\020\214\005\022$\n" + + "\037PARTNER_FINANCE_PARTNER_REVENUE\020\215\005\022%\n" + + " PARTNER_MANAGEMENT_GROSS_REVENUE\020\225\004\022#\n" + + "\036PARTNER_MANAGEMENT_HOST_CLICKS\020\226\004\022 \n" + + "\033PARTNER_MANAGEMENT_HOST_CTR\020\227\004\022(\n" + + "#PARTNER_MANAGEMENT_HOST_IMPRESSIONS\020\230\004\022&\n" + + "!PARTNER_MANAGEMENT_PARTNER_CLICKS\020\231\004\022#\n" + + "\036PARTNER_MANAGEMENT_PARTNER_CTR\020\232\004\022+\n" + + "&PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS\020\233\004\022+\n" + + "&PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS\020\234\004\022,\n" + + "\'PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS\020\235\004\022&\n" + "!PARTNER_SALES_FILLED_POD_REQUESTS\020\207\001\022\034\n" + "\027PARTNER_SALES_FILL_RATE\020\210\001\022%\n" + " PARTNER_SALES_PARTNER_MATCH_RATE\020\211\001\022\032\n" @@ -1189,7 +1254,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\020RESPONSES_SERVED\020\'\022\016\n" + "\tRETENTION\020\356\001\022\013\n" + "\007REVENUE\020$\022)\n" - + "$REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT\020\326\001\022\027\n" + + "$REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT\020\326\001\022%\n" + + " REVENUE_VERIFICATION_CPD_REVENUE\020\260\004\022+\n" + + "&REVENUE_VERIFICATION_GROSS_CPD_REVENUE\020\257\004\0223\n" + + ".REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD\020\261\004\022%\n" + + " REVENUE_VERIFICATION_IMPRESSIONS\020\264\004\022-\n" + + "(REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD\020\267\004\022\027\n" + "\023REVENUE_WITHOUT_CPD\020\004\022\024\n" + "\017REWARDS_GRANTED\020\235\003\022$\n" + "\037RICH_MEDIA_AVERAGE_DISPLAY_TIME\020\313\004\022(\n" @@ -1251,8 +1321,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "(USER_MESSAGES_AD_BLOCKING_EXTENSION_RATE\020\346\003\0229\n" + "4USER_MESSAGES_AD_BLOCKING_RECOVERY_ALLOWLISTED_COUNT\020\347\003\0226\n" + "1USER_MESSAGES_AD_BLOCKING_RECOVERY_MESSAGES_SHOWN\020\350\003\022&\n" - + "!USER_MESSAGES_ALLOW_ADS_PAGEVIEWS\020\351\003\022&\n" - + "!USER_MESSAGES_CCPA_MESSAGES_SHOWN\020\352\003\022(\n" + + "!USER_MESSAGES_ALLOW_ADS_PAGEVIEWS\020\351\003\022(\n" + "#USER_MESSAGES_IDFA_ATT_ALERTS_SHOWN\020\353\003\022#\n" + "\036USER_MESSAGES_IDFA_ATT_CONSENT\020\354\003\022(\n" + "#USER_MESSAGES_IDFA_ATT_CONSENT_RATE\020\355\003\022+\n" @@ -1266,7 +1335,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "&USER_MESSAGES_POST_OFFERWALL_PAGEVIEWS\020\363\003\022*\n" + "%USER_MESSAGES_TOTAL_ESTIMATED_REVENUE\020\364\003\022&\n" + "!USER_MESSAGES_UPTC_MESSAGES_SHOWN\020\365\003\0225\n" - + "0USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO\020\366\003\022\032\n" + + "0USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO\020\366\003\022+\n" + + "&USER_MESSAGES_US_STATES_MESSAGES_SHOWN\020\352\003\022/\n" + + "*USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS\020\312\004\022\032\n" + "\025VIDEO_ERROR_100_COUNT\020\264\001\022\032\n" + "\025VIDEO_ERROR_101_COUNT\020\265\001\022\032\n" + "\025VIDEO_ERROR_102_COUNT\020\266\001\022\032\n" @@ -1347,7 +1418,17 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\037VIDEO_REAL_TIME_MATCHED_QUERIES\020\214\001\022&\n" + "!VIDEO_REAL_TIME_TOTAL_ERROR_COUNT\020\257\001\022\"\n" + "\035VIDEO_REAL_TIME_TOTAL_QUERIES\020\216\001\022&\n" - + "!VIDEO_REAL_TIME_UNMATCHED_QUERIES\020\215\001\022\037\n" + + "!VIDEO_REAL_TIME_UNMATCHED_QUERIES\020\215\001\022-\n" + + "(VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END\020\227\002\022/\n" + + "*VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START\020\230\002\022@\n" + + ";VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK\020\231\002\0224\n" + + "/VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK\020\233\002\022<\n" + + "7VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK\020\235\002\022A\n" + + "\n" + "\020dimension_values\030\001 \003(\0132$.google.ads.admanager.v1.ReportValue\022V\n" - + "\023metric_value_groups\030\002 \003(\01329.goog" - + "le.ads.admanager.v1.ReportDataTable.MetricValueGroup\032\323\003\n" + + "\023metric_value_groups\030\002" + + " \003(\01329.google.ads.admanager.v1.ReportDataTable.MetricValueGroup\032\323\003\n" + "\020MetricValueGroup\022<\n" + "\016primary_values\030\001 \003(\0132$.google.ads.admanager.v1.ReportValue\022M\n" + "\037primary_percent_of_total_values\030\002" + " \003(\0132$.google.ads.admanager.v1.ReportValue\022?\n" + "\021comparison_values\030\003 \003(\0132$.google.ads.admanager.v1.ReportValue\022P\n" - + "\"comparison_percent_of_total_values\030\004 " - + "\003(\0132$.google.ads.admanager.v1.ReportValue\022D\n" + + "\"comparison_percent_of_total_values\030\004" + + " \003(\0132$.google.ads.admanager.v1.ReportValue\022D\n" + "\026absolute_change_values\030\005" + " \003(\0132$.google.ads.admanager.v1.ReportValue\022D\n" + "\026relative_change_values\030\006" + " \003(\0132$.google.ads.admanager.v1.ReportValue\022\023\n" + "\013flag_values\030\007 \003(\010\"\372\007\n" + "\017ScheduleOptions\022C\n" - + "\010schedule\030\001 \001(\013" - + "21.google.ads.admanager.v1.ScheduleOptions.Schedule\022V\n" - + "\022delivery_condition\030\002 \001(\0162" - + ":.google.ads.admanager.v1.ScheduleOptions.DeliveryCondition\022B\n" - + "\005flags\030\003 \003(\0132..goo" - + "gle.ads.admanager.v1.ReportDefinition.FlagB\003\340A\001\032\273\005\n" + + "\010schedule\030\001" + + " \001(\01321.google.ads.admanager.v1.ScheduleOptions.Schedule\022V\n" + + "\022delivery_condition\030\002 \001(\0162:.google.ads.admana" + + "ger.v1.ScheduleOptions.DeliveryCondition\022B\n" + + "\005flags\030\003" + + " \003(\0132..google.ads.admanager.v1.ReportDefinition.FlagB\003\340A\001\032\273\005\n" + "\010Schedule\022[\n" - + "\017weekly_schedule\030\006" - + " \001(\0132@.google.ads.admanager.v1.ScheduleOptions.Schedule.WeeklyScheduleH\000\022]\n" - + "\020monthly_schedule\030\007 \001(\0132A.google.ads.admanag" - + "er.v1.ScheduleOptions.Schedule.MonthlyScheduleH\000\022%\n\n" + + "\017weekly_schedule\030\006 \001(\0132@.google.ads." + + "admanager.v1.ScheduleOptions.Schedule.WeeklyScheduleH\000\022]\n" + + "\020monthly_schedule\030\007 \001(\013" + + "2A.google.ads.admanager.v1.ScheduleOptions.Schedule.MonthlyScheduleH\000\022%\n\n" + "start_date\030\001 \001(\0132\021.google.type.Date\022#\n" + "\010end_date\030\002 \001(\0132\021.google.type.Date\022N\n" - + "\tfrequency\030\003 \001(\0162;.google.ads.adm" - + "anager.v1.ScheduleOptions.Schedule.Frequency\022*\n\n" + + "\tfrequency\030\003" + + " \001(\0162;.google.ads.admanager.v1.ScheduleOptions.Schedule.Frequency\022*\n\n" + "start_time\030\004 \001(\0132\026.google.type.TimeOfDay\032G\n" + "\016WeeklySchedule\0225\n" + "\025weekly_scheduled_days\030\001 \003(\0162\026.google.type.DayOfWeek\0321\n" @@ -149,11 +150,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005NEVER\020\000\022\n\n" + "\006ALWAYS\020\001\022\034\n" + "\030WHEN_FLAG_CONDITIONS_MET\020\002B\307\001\n" - + "\033com.google.ads.admanager.v1B\023ReportMessagesProtoP\001Z@" - + "google.golang.org/genproto/googleapis/ad" - + "s/admanager/v1;admanager\252\002\027Google.Ads.Ad" - + "Manager.V1\312\002\027Google\\Ads\\AdManager\\V1\352\002\032G" - + "oogle::Ads::AdManager::V1b\006proto3" + + "\033com.google.ads.admanager.v1B\023ReportMessagesProtoP\001Z@google.golang.org/g" + + "enproto/googleapis/ads/admanager/v1;adma" + + "nager\252\002\027Google.Ads.AdManager.V1\312\002\027Google" + + "\\Ads\\AdManager\\V1\352\002\032Google::Ads::AdManager::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportName.java index 18d7f84e1b43..14612a6e7064 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportOrBuilder.java index a09366ab354b..f48fff6b34a4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportServiceProto.java index d6cc50c59edf..3e9bd90cfc61 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValue.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValue.java index 6ae8c0876a9a..683ad9acc37d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValue.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueOrBuilder.java index 7e240a5a487a..4ac23c3c83b9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueProto.java index ac44a73ad454..4cec80176f5b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ReportValueProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnum.java index f032fc679e9b..82a6bcd847c1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumOrBuilder.java index c6060d6353dc..7b1796a2cc1d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumProto.java index 73b38e3e1d7e..f549cd79f23f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargeting.java index f53df0927565..4739ecf9ce04 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargetingOrBuilder.java index 918743ae2a61..df61a3506537 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RequestPlatformTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Role.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Role.java index 973e11626866..715fce5ebf01 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Role.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Role.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleEnumsProto.java index 29463b8656d5..6c8d3a7e0e75 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleMessagesProto.java index 11f7a45fe171..762a9e2e635f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleName.java index 59738f80e6bd..d3548e53ea53 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleOrBuilder.java index 398ff162a92f..fbe1896c6b4c 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleServiceProto.java index 66903dbdddf9..bd4f981c6f6b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnum.java index ae4ae91aa1e6..012361829197 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnumOrBuilder.java index e9ef28522488..bbcb4fb9494b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RoleStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadata.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadata.java index 4503b4f4af83..514aae82c327 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadata.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadataOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadataOrBuilder.java index ed653871b766..dcf2e0e4d600 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadataOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequest.java index 8695615d929b..04f535b25fd8 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequestOrBuilder.java index db6b6d4c349c..49f420aa9bab 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponse.java index 33603fa5a19b..28d9643d0e46 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponseOrBuilder.java index 9d03ece3ddb8..5b81f9ea17dd 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/RunReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptions.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptions.java index afdf6859b559..a47bb60ba382 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptions.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptionsOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptionsOrBuilder.java index 91263846d3c5..538b262759b9 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptionsOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/ScheduleOptionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequest.java index affa06fe5b58..750b226acf0b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -238,11 +238,11 @@ public com.google.protobuf.ByteString getPageTokenBytes() { * * *
-   * Required. Only return ads with the given status.
+   * Optional. Only return ads with the given status.
    * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The enum numeric value on the wire for status. @@ -256,11 +256,11 @@ public int getStatusValue() { * * *
-   * Required. Only return ads with the given status.
+   * Optional. Only return ads with the given status.
    * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The status. @@ -285,7 +285,8 @@ public com.google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdSt * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -301,7 +302,8 @@ public com.google.protobuf.ProtocolStringList getAdReviewCenterAdIdList() { * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -317,7 +319,8 @@ public int getAdReviewCenterAdIdCount() { * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -334,7 +337,8 @@ public java.lang.String getAdReviewCenterAdId(int index) { * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1520,11 +1524,11 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { * * *
-     * Required. Only return ads with the given status.
+     * Optional. Only return ads with the given status.
      * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The enum numeric value on the wire for status. @@ -1538,11 +1542,11 @@ public int getStatusValue() { * * *
-     * Required. Only return ads with the given status.
+     * Optional. Only return ads with the given status.
      * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @param value The enum numeric value on the wire for status to set. @@ -1559,11 +1563,11 @@ public Builder setStatusValue(int value) { * * *
-     * Required. Only return ads with the given status.
+     * Optional. Only return ads with the given status.
      * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The status. @@ -1584,11 +1588,11 @@ public Builder setStatusValue(int value) { * * *
-     * Required. Only return ads with the given status.
+     * Optional. Only return ads with the given status.
      * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @param value The status to set. @@ -1609,11 +1613,11 @@ public Builder setStatus( * * *
-     * Required. Only return ads with the given status.
+     * Optional. Only return ads with the given status.
      * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return This builder for chaining. @@ -1639,7 +1643,8 @@ private void ensureAdReviewCenterAdIdIsMutable() { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1656,7 +1661,8 @@ public com.google.protobuf.ProtocolStringList getAdReviewCenterAdIdList() { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1672,7 +1678,8 @@ public int getAdReviewCenterAdIdCount() { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1689,7 +1696,8 @@ public java.lang.String getAdReviewCenterAdId(int index) { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1706,7 +1714,8 @@ public com.google.protobuf.ByteString getAdReviewCenterAdIdBytes(int index) { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1731,7 +1740,8 @@ public Builder setAdReviewCenterAdId(int index, java.lang.String value) { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1755,7 +1765,8 @@ public Builder addAdReviewCenterAdId(java.lang.String value) { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1776,7 +1787,8 @@ public Builder addAllAdReviewCenterAdId(java.lang.Iterable val * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -1796,7 +1808,8 @@ public Builder clearAdReviewCenterAdId() { * * *
-     * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+     * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+     * no other filter can be set (other than page size and page token).
      * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequestOrBuilder.java index 4aa24e3d9cbc..b95bffbd631b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -128,11 +128,11 @@ public interface SearchAdReviewCenterAdsRequestOrBuilder * * *
-   * Required. Only return ads with the given status.
+   * Optional. Only return ads with the given status.
    * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The enum numeric value on the wire for status. @@ -143,11 +143,11 @@ public interface SearchAdReviewCenterAdsRequestOrBuilder * * *
-   * Required. Only return ads with the given status.
+   * Optional. Only return ads with the given status.
    * 
* * - * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = REQUIRED]; + * .google.ads.admanager.v1.AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The status. @@ -158,7 +158,8 @@ public interface SearchAdReviewCenterAdsRequestOrBuilder * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -172,7 +173,8 @@ public interface SearchAdReviewCenterAdsRequestOrBuilder * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -186,7 +188,8 @@ public interface SearchAdReviewCenterAdsRequestOrBuilder * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; @@ -201,7 +204,8 @@ public interface SearchAdReviewCenterAdsRequestOrBuilder * * *
-   * Optional. If provided, only return ads with the given AdReviewCenterAd IDs.
+   * Optional. Only return ads with the given AdReviewCenterAd IDs. If provided,
+   * no other filter can be set (other than page size and page token).
    * 
* * repeated string ad_review_center_ad_id = 5 [(.google.api.field_behavior) = OPTIONAL]; diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponse.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponse.java index 66cb1d920827..ebfa947ced2e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponse.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponseOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponseOrBuilder.java index 2c381fdb643c..fd8479c73300 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponseOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SearchAdReviewCenterAdsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Site.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Site.java index 1e2f5f94cee9..d6204beee747 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Site.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Site.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnum.java index 89bfe0c51afa..8aeac35485e3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnumOrBuilder.java index 9d275b26403b..fea31d585159 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteApprovalStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnum.java index 0a06b603b9ea..c8e3d5872c64 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnumOrBuilder.java index c52521d936ff..3b370f6d22ac 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteDisapprovalReasonEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteEnumsProto.java index 769829cdf9ce..82a862918c20 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteMessagesProto.java index cfe0fdb2375d..e9cb312472bc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteName.java index 836326a63cba..8d8cdaff343e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteOrBuilder.java index 2aba3e63a3e8..d30566e596f4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteServiceProto.java index ef46199815f7..b813a0b32fd7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SiteServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Size.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Size.java index 67fda572e2ff..16d8e5c9fe6a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Size.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Size.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeOrBuilder.java index bf7533095b68..c89ae96d7704 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeProto.java index 5b86c05a86f7..0877b13a8fe4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnum.java index 4517dc06f6f8..50fefe51afc5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumOrBuilder.java index 52bb8d87a216..73648e0c6e73 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumProto.java index e52fec77659b..51bdb4b608ce 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SizeTypeEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnum.java index 4276cf6171d2..7b2a8de42a3b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnumOrBuilder.java index a461c43ed1c2..7cb3352d279d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/SmartSizeModeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnum.java index 8d13d4d5f87d..c251812f0b19 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnumOrBuilder.java index 79de6b61e3c1..76c75c59276d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetWindowEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnum.java index 255f9165f8c6..6bab41c43793 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumOrBuilder.java index 29182a7cfe8a..5b0bc7cccc26 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumProto.java index ae0e22143328..f2d94c1784d0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetedVideoBumperTypeEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Targeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Targeting.java index 9566e9d94536..85dcb9e01096 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Targeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Targeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingOrBuilder.java index 693d39dea3f5..5fae0599eded 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingProto.java index ad56f7b36434..8ae7068d6b30 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TargetingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategory.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategory.java index 8f3f96b5cfca..e95572242c65 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategory.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryMessagesProto.java index 4977ea89405b..d0b6ace33ab0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryName.java index 8ceb7b1bb33f..d70d07cf455d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryOrBuilder.java index 9a7969104835..170bcfa60f1b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceProto.java index 1505e6329dd6..80c62f6183f4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyCategoryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnum.java index d1530f9261e3..6ab1dd109977 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumOrBuilder.java index 4a8cc2c34f2a..8aac0241cf65 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumProto.java index f5e00bf6abc4..2d3236627e33 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TaxonomyTypeEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Team.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Team.java index 408f7117fcac..975c3df7ce5d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Team.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/Team.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnum.java index 944e94f5aa9a..b8e62d2c4241 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnumOrBuilder.java index b63f60b69feb..282df0ce81d7 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamAccessTypeEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamEnumsProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamEnumsProto.java index 42ce96941518..6a372d117836 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamEnumsProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamEnumsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamMessagesProto.java index 8bb7d0f7b1bc..d563074e4aab 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamName.java index 1c8ae16a6f18..f4957ea2fbd5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamOrBuilder.java index 80a1d3c66106..81130637c3f3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamServiceProto.java index d59ff562b6b3..286f5a3be7b1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnum.java index 0ed9fc763860..d6c54df0e167 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnumOrBuilder.java index eecbc816d7a0..1f831df6d675 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TeamStatusEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargeting.java index 9af397b6457f..d8dcf909f309 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargetingOrBuilder.java index d7971ebd45e4..95c83eed53f4 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TechnologyTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnum.java index 706ceec81d8f..0107066f2653 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumOrBuilder.java index 6dc41b7d01de..7c8652f3f081 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumProto.java index ac68978e53e5..94ebecf2de60 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/TimeUnitEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UnitTypeEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UnitTypeEnum.java new file mode 100644 index 000000000000..ca6012d2cc08 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UnitTypeEnum.java @@ -0,0 +1,757 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Wrapper message for
+ * [UnitType][google.ads.admanager.v1.UnitTypeEnum.UnitType].
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.UnitTypeEnum} + */ +public final class UnitTypeEnum extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.UnitTypeEnum) + UnitTypeEnumOrBuilder { + private static final long serialVersionUID = 0L; + + // Use UnitTypeEnum.newBuilder() to construct. + private UnitTypeEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private UnitTypeEnum() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new UnitTypeEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_UnitTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_UnitTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.UnitTypeEnum.class, + com.google.ads.admanager.v1.UnitTypeEnum.Builder.class); + } + + /** + * + * + *
+   * Indicates the type of unit used for defining a reservation. The
+   * [LineItem.cost_type][] can differ from the UnitType - an
+   * ad can have an impression goal, but be billed by its click. Usually
+   * CostType and UnitType will refer to the same unit.
+   * 
+ * + * Protobuf enum {@code google.ads.admanager.v1.UnitTypeEnum.UnitType} + */ + public enum UnitType implements com.google.protobuf.ProtocolMessageEnum { + /** + * + * + *
+     * Default value. This value is unused.
+     * 
+ * + * UNIT_TYPE_UNSPECIFIED = 0; + */ + UNIT_TYPE_UNSPECIFIED(0), + /** + * + * + *
+     * The number of impressions served by creatives associated with the line
+     * item.
+     * 
+ * + * IMPRESSIONS = 1; + */ + IMPRESSIONS(1), + /** + * + * + *
+     * The number of clicks reported by creatives associated with the line item.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD]
+     * * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * 
+ * + * CLICKS = 2; + */ + CLICKS(2), + /** + * + * + *
+     * The number of click-through Cost-Per-Action (CPA) conversions from
+     * creatives associated with the line item. This is only supported as
+     * secondary goal and the [LineItem.cost_type][] must be
+     * [CostTypeEnum.CostType.CPA][].
+     * 
+ * + * CLICK_THROUGH_CPA_CONVERSIONS = 3; + */ + CLICK_THROUGH_CPA_CONVERSIONS(3), + /** + * + * + *
+     * The number of view-through Cost-Per-Action (CPA) conversions from
+     * creatives associated with the line item. This is only supported as
+     * secondary goal and the [LineItem.cost_type][] must be
+     * [CostTypeEnum.CostType.CPA}.
+     * 
+ * + * VIEW_THROUGH_CPA_CONVERSIONS = 4; + */ + VIEW_THROUGH_CPA_CONVERSIONS(4), + /** + * + * + *
+     * The number of total Cost-Per-Action (CPA) conversions from creatives
+     * associated with the line item. This is only supported as secondary goal
+     * and the [LineItem.cost_type} must be [CostTypeEnum.CostType.CPA}.
+     * 
+ * + * TOTAL_CPA_CONVERSIONS = 5; + */ + TOTAL_CPA_CONVERSIONS(5), + /** + * + * + *
+     * The number of viewable impressions reported by creatives associated with
+     * the line item. The
+     * [LineItem.line_item_type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be
+     * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD].
+     * 
+ * + * VIEWABLE_IMPRESSIONS = 6; + */ + VIEWABLE_IMPRESSIONS(6), + /** + * + * + *
+     * The number of in-target impressions reported by third party measurements.
+     * The
+     * [LineItem.line_item_type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be
+     * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD].
+     * 
+ * + * IN_TARGET_IMPRESSIONS = 7; + */ + IN_TARGET_IMPRESSIONS(7), + UNRECOGNIZED(-1), + ; + + /** + * + * + *
+     * Default value. This value is unused.
+     * 
+ * + * UNIT_TYPE_UNSPECIFIED = 0; + */ + public static final int UNIT_TYPE_UNSPECIFIED_VALUE = 0; + + /** + * + * + *
+     * The number of impressions served by creatives associated with the line
+     * item.
+     * 
+ * + * IMPRESSIONS = 1; + */ + public static final int IMPRESSIONS_VALUE = 1; + + /** + * + * + *
+     * The number of clicks reported by creatives associated with the line item.
+     * The line item [type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be one of:
+     *
+     * * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD]
+     * * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK]
+     * * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY]
+     * 
+ * + * CLICKS = 2; + */ + public static final int CLICKS_VALUE = 2; + + /** + * + * + *
+     * The number of click-through Cost-Per-Action (CPA) conversions from
+     * creatives associated with the line item. This is only supported as
+     * secondary goal and the [LineItem.cost_type][] must be
+     * [CostTypeEnum.CostType.CPA][].
+     * 
+ * + * CLICK_THROUGH_CPA_CONVERSIONS = 3; + */ + public static final int CLICK_THROUGH_CPA_CONVERSIONS_VALUE = 3; + + /** + * + * + *
+     * The number of view-through Cost-Per-Action (CPA) conversions from
+     * creatives associated with the line item. This is only supported as
+     * secondary goal and the [LineItem.cost_type][] must be
+     * [CostTypeEnum.CostType.CPA}.
+     * 
+ * + * VIEW_THROUGH_CPA_CONVERSIONS = 4; + */ + public static final int VIEW_THROUGH_CPA_CONVERSIONS_VALUE = 4; + + /** + * + * + *
+     * The number of total Cost-Per-Action (CPA) conversions from creatives
+     * associated with the line item. This is only supported as secondary goal
+     * and the [LineItem.cost_type} must be [CostTypeEnum.CostType.CPA}.
+     * 
+ * + * TOTAL_CPA_CONVERSIONS = 5; + */ + public static final int TOTAL_CPA_CONVERSIONS_VALUE = 5; + + /** + * + * + *
+     * The number of viewable impressions reported by creatives associated with
+     * the line item. The
+     * [LineItem.line_item_type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be
+     * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD].
+     * 
+ * + * VIEWABLE_IMPRESSIONS = 6; + */ + public static final int VIEWABLE_IMPRESSIONS_VALUE = 6; + + /** + * + * + *
+     * The number of in-target impressions reported by third party measurements.
+     * The
+     * [LineItem.line_item_type][google.ads.admanager.v1.LineItem.line_item_type]
+     * must be
+     * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD].
+     * 
+ * + * IN_TARGET_IMPRESSIONS = 7; + */ + public static final int IN_TARGET_IMPRESSIONS_VALUE = 7; + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static UnitType valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static UnitType forNumber(int value) { + switch (value) { + case 0: + return UNIT_TYPE_UNSPECIFIED; + case 1: + return IMPRESSIONS; + case 2: + return CLICKS; + case 3: + return CLICK_THROUGH_CPA_CONVERSIONS; + case 4: + return VIEW_THROUGH_CPA_CONVERSIONS; + case 5: + return TOTAL_CPA_CONVERSIONS; + case 6: + return VIEWABLE_IMPRESSIONS; + case 7: + return IN_TARGET_IMPRESSIONS; + default: + return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { + return internalValueMap; + } + + private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public UnitType findValueByNumber(int number) { + return UnitType.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + + public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + return getDescriptor(); + } + + public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + return com.google.ads.admanager.v1.UnitTypeEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final UnitType[] VALUES = values(); + + public static UnitType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private UnitType(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.admanager.v1.UnitTypeEnum.UnitType) + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.UnitTypeEnum)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.UnitTypeEnum other = (com.google.ads.admanager.v1.UnitTypeEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.UnitTypeEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Wrapper message for
+   * [UnitType][google.ads.admanager.v1.UnitTypeEnum.UnitType].
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.UnitTypeEnum} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.UnitTypeEnum) + com.google.ads.admanager.v1.UnitTypeEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_UnitTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_UnitTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.UnitTypeEnum.class, + com.google.ads.admanager.v1.UnitTypeEnum.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.UnitTypeEnum.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.GoalEnumsProto + .internal_static_google_ads_admanager_v1_UnitTypeEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UnitTypeEnum getDefaultInstanceForType() { + return com.google.ads.admanager.v1.UnitTypeEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.UnitTypeEnum build() { + com.google.ads.admanager.v1.UnitTypeEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UnitTypeEnum buildPartial() { + com.google.ads.admanager.v1.UnitTypeEnum result = + new com.google.ads.admanager.v1.UnitTypeEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.UnitTypeEnum) { + return mergeFrom((com.google.ads.admanager.v1.UnitTypeEnum) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.UnitTypeEnum other) { + if (other == com.google.ads.admanager.v1.UnitTypeEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.UnitTypeEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.UnitTypeEnum) + private static final com.google.ads.admanager.v1.UnitTypeEnum DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.UnitTypeEnum(); + } + + public static com.google.ads.admanager.v1.UnitTypeEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UnitTypeEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UnitTypeEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UnitTypeEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UnitTypeEnumOrBuilder.java new file mode 100644 index 000000000000..a0bee4ec5e56 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UnitTypeEnumOrBuilder.java @@ -0,0 +1,25 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/goal_enums.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface UnitTypeEnumOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.UnitTypeEnum) + com.google.protobuf.MessageOrBuilder {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequest.java index c47fb2b22723..649ccff50918 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequestOrBuilder.java index eb956ae550a6..73a2afecee8a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdBreakRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdUnitRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdUnitRequest.java new file mode 100644 index 000000000000..9bb684816323 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdUnitRequest.java @@ -0,0 +1,1063 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `UpdateAdUnit` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.UpdateAdUnitRequest} + */ +public final class UpdateAdUnitRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.UpdateAdUnitRequest) + UpdateAdUnitRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use UpdateAdUnitRequest.newBuilder() to construct. + private UpdateAdUnitRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private UpdateAdUnitRequest() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new UpdateAdUnitRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.UpdateAdUnitRequest.class, + com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder.class); + } + + private int bitField0_; + public static final int AD_UNIT_FIELD_NUMBER = 1; + private com.google.ads.admanager.v1.AdUnit adUnit_; + + /** + * + * + *
+   * Required. The `AdUnit` to update.
+   *
+   * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+   * `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the adUnit field is set. + */ + @java.lang.Override + public boolean hasAdUnit() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Required. The `AdUnit` to update.
+   *
+   * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+   * `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The adUnit. + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnit getAdUnit() { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } + + /** + * + * + *
+   * Required. The `AdUnit` to update.
+   *
+   * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+   * `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitOrBuilder() { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } + + public static final int UPDATE_MASK_FIELD_NUMBER = 2; + private com.google.protobuf.FieldMask updateMask_; + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the updateMask field is set. + */ + @java.lang.Override + public boolean hasUpdateMask() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The updateMask. + */ + @java.lang.Override + public com.google.protobuf.FieldMask getUpdateMask() { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getAdUnit()); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(2, getUpdateMask()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getAdUnit()); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getUpdateMask()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.UpdateAdUnitRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.UpdateAdUnitRequest other = + (com.google.ads.admanager.v1.UpdateAdUnitRequest) obj; + + if (hasAdUnit() != other.hasAdUnit()) return false; + if (hasAdUnit()) { + if (!getAdUnit().equals(other.getAdUnit())) return false; + } + if (hasUpdateMask() != other.hasUpdateMask()) return false; + if (hasUpdateMask()) { + if (!getUpdateMask().equals(other.getUpdateMask())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasAdUnit()) { + hash = (37 * hash) + AD_UNIT_FIELD_NUMBER; + hash = (53 * hash) + getAdUnit().hashCode(); + } + if (hasUpdateMask()) { + hash = (37 * hash) + UPDATE_MASK_FIELD_NUMBER; + hash = (53 * hash) + getUpdateMask().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.ads.admanager.v1.UpdateAdUnitRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `UpdateAdUnit` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.UpdateAdUnitRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.UpdateAdUnitRequest) + com.google.ads.admanager.v1.UpdateAdUnitRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.UpdateAdUnitRequest.class, + com.google.ads.admanager.v1.UpdateAdUnitRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.UpdateAdUnitRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getAdUnitFieldBuilder(); + getUpdateMaskFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + adUnit_ = null; + if (adUnitBuilder_ != null) { + adUnitBuilder_.dispose(); + adUnitBuilder_ = null; + } + updateMask_ = null; + if (updateMaskBuilder_ != null) { + updateMaskBuilder_.dispose(); + updateMaskBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.AdUnitServiceProto + .internal_static_google_ads_admanager_v1_UpdateAdUnitRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateAdUnitRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.UpdateAdUnitRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateAdUnitRequest build() { + com.google.ads.admanager.v1.UpdateAdUnitRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateAdUnitRequest buildPartial() { + com.google.ads.admanager.v1.UpdateAdUnitRequest result = + new com.google.ads.admanager.v1.UpdateAdUnitRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.UpdateAdUnitRequest result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.adUnit_ = adUnitBuilder_ == null ? adUnit_ : adUnitBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.updateMask_ = updateMaskBuilder_ == null ? updateMask_ : updateMaskBuilder_.build(); + to_bitField0_ |= 0x00000002; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.UpdateAdUnitRequest) { + return mergeFrom((com.google.ads.admanager.v1.UpdateAdUnitRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.UpdateAdUnitRequest other) { + if (other == com.google.ads.admanager.v1.UpdateAdUnitRequest.getDefaultInstance()) + return this; + if (other.hasAdUnit()) { + mergeAdUnit(other.getAdUnit()); + } + if (other.hasUpdateMask()) { + mergeUpdateMask(other.getUpdateMask()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage(getAdUnitFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + input.readMessage(getUpdateMaskFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private com.google.ads.admanager.v1.AdUnit adUnit_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + adUnitBuilder_; + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the adUnit field is set. + */ + public boolean hasAdUnit() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The adUnit. + */ + public com.google.ads.admanager.v1.AdUnit getAdUnit() { + if (adUnitBuilder_ == null) { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } else { + return adUnitBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setAdUnit(com.google.ads.admanager.v1.AdUnit value) { + if (adUnitBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + adUnit_ = value; + } else { + adUnitBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setAdUnit(com.google.ads.admanager.v1.AdUnit.Builder builderForValue) { + if (adUnitBuilder_ == null) { + adUnit_ = builderForValue.build(); + } else { + adUnitBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeAdUnit(com.google.ads.admanager.v1.AdUnit value) { + if (adUnitBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) + && adUnit_ != null + && adUnit_ != com.google.ads.admanager.v1.AdUnit.getDefaultInstance()) { + getAdUnitBuilder().mergeFrom(value); + } else { + adUnit_ = value; + } + } else { + adUnitBuilder_.mergeFrom(value); + } + if (adUnit_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearAdUnit() { + bitField0_ = (bitField0_ & ~0x00000001); + adUnit_ = null; + if (adUnitBuilder_ != null) { + adUnitBuilder_.dispose(); + adUnitBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.AdUnit.Builder getAdUnitBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getAdUnitFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitOrBuilder() { + if (adUnitBuilder_ != null) { + return adUnitBuilder_.getMessageOrBuilder(); + } else { + return adUnit_ == null ? com.google.ads.admanager.v1.AdUnit.getDefaultInstance() : adUnit_; + } + } + + /** + * + * + *
+     * Required. The `AdUnit` to update.
+     *
+     * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+     * `networks/{network_code}/adUnits/{ad_unit_id}`
+     * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder> + getAdUnitFieldBuilder() { + if (adUnitBuilder_ == null) { + adUnitBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.AdUnit, + com.google.ads.admanager.v1.AdUnit.Builder, + com.google.ads.admanager.v1.AdUnitOrBuilder>( + getAdUnit(), getParentForChildren(), isClean()); + adUnit_ = null; + } + return adUnitBuilder_; + } + + private com.google.protobuf.FieldMask updateMask_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, + com.google.protobuf.FieldMask.Builder, + com.google.protobuf.FieldMaskOrBuilder> + updateMaskBuilder_; + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the updateMask field is set. + */ + public boolean hasUpdateMask() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The updateMask. + */ + public com.google.protobuf.FieldMask getUpdateMask() { + if (updateMaskBuilder_ == null) { + return updateMask_ == null + ? com.google.protobuf.FieldMask.getDefaultInstance() + : updateMask_; + } else { + return updateMaskBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setUpdateMask(com.google.protobuf.FieldMask value) { + if (updateMaskBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + updateMask_ = value; + } else { + updateMaskBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForValue) { + if (updateMaskBuilder_ == null) { + updateMask_ = builderForValue.build(); + } else { + updateMaskBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { + if (updateMaskBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) + && updateMask_ != null + && updateMask_ != com.google.protobuf.FieldMask.getDefaultInstance()) { + getUpdateMaskBuilder().mergeFrom(value); + } else { + updateMask_ = value; + } + } else { + updateMaskBuilder_.mergeFrom(value); + } + if (updateMask_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearUpdateMask() { + bitField0_ = (bitField0_ & ~0x00000002); + updateMask_ = null; + if (updateMaskBuilder_ != null) { + updateMaskBuilder_.dispose(); + updateMaskBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getUpdateMaskFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { + if (updateMaskBuilder_ != null) { + return updateMaskBuilder_.getMessageOrBuilder(); + } else { + return updateMask_ == null + ? com.google.protobuf.FieldMask.getDefaultInstance() + : updateMask_; + } + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, + com.google.protobuf.FieldMask.Builder, + com.google.protobuf.FieldMaskOrBuilder> + getUpdateMaskFieldBuilder() { + if (updateMaskBuilder_ == null) { + updateMaskBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, + com.google.protobuf.FieldMask.Builder, + com.google.protobuf.FieldMaskOrBuilder>( + getUpdateMask(), getParentForChildren(), isClean()); + updateMask_ = null; + } + return updateMaskBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.UpdateAdUnitRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.UpdateAdUnitRequest) + private static final com.google.ads.admanager.v1.UpdateAdUnitRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.UpdateAdUnitRequest(); + } + + public static com.google.ads.admanager.v1.UpdateAdUnitRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UpdateAdUnitRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateAdUnitRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdUnitRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdUnitRequestOrBuilder.java new file mode 100644 index 000000000000..ccb9b466553f --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateAdUnitRequestOrBuilder.java @@ -0,0 +1,115 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/ad_unit_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface UpdateAdUnitRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.UpdateAdUnitRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The `AdUnit` to update.
+   *
+   * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+   * `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the adUnit field is set. + */ + boolean hasAdUnit(); + + /** + * + * + *
+   * Required. The `AdUnit` to update.
+   *
+   * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+   * `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The adUnit. + */ + com.google.ads.admanager.v1.AdUnit getAdUnit(); + + /** + * + * + *
+   * Required. The `AdUnit` to update.
+   *
+   * The `AdUnit`'s name is used to identify the `AdUnit` to update. Format:
+   * `networks/{network_code}/adUnits/{ad_unit_id}`
+   * 
+ * + * .google.ads.admanager.v1.AdUnit ad_unit = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.AdUnitOrBuilder getAdUnitOrBuilder(); + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the updateMask field is set. + */ + boolean hasUpdateMask(); + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The updateMask. + */ + com.google.protobuf.FieldMask getUpdateMask(); + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequest.java index a4c000069463..f55ee9e8af6f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequestOrBuilder.java index 0dbf82f0a432..a522b9f4ad55 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateContactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequest.java index 7994a9fb869a..cd5868ca9de1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequestOrBuilder.java index 4365c3fa0415..b3868ca8e780 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomFieldRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomTargetingKeyRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomTargetingKeyRequest.java new file mode 100644 index 000000000000..b868bf97d325 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomTargetingKeyRequest.java @@ -0,0 +1,1092 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +/** + * + * + *
+ * Request object for `UpdateCustomTargetingKey` method.
+ * 
+ * + * Protobuf type {@code google.ads.admanager.v1.UpdateCustomTargetingKeyRequest} + */ +public final class UpdateCustomTargetingKeyRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) + UpdateCustomTargetingKeyRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use UpdateCustomTargetingKeyRequest.newBuilder() to construct. + private UpdateCustomTargetingKeyRequest( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private UpdateCustomTargetingKeyRequest() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new UpdateCustomTargetingKeyRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.class, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder.class); + } + + private int bitField0_; + public static final int CUSTOM_TARGETING_KEY_FIELD_NUMBER = 1; + private com.google.ads.admanager.v1.CustomTargetingKey customTargetingKey_; + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to update.
+   *
+   * The `CustomTargetingKey`'s `name` is used to identify the
+   * `CustomTargetingKey` to update.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the customTargetingKey field is set. + */ + @java.lang.Override + public boolean hasCustomTargetingKey() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to update.
+   *
+   * The `CustomTargetingKey`'s `name` is used to identify the
+   * `CustomTargetingKey` to update.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The customTargetingKey. + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKey() { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to update.
+   *
+   * The `CustomTargetingKey`'s `name` is used to identify the
+   * `CustomTargetingKey` to update.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeyOrBuilder() { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } + + public static final int UPDATE_MASK_FIELD_NUMBER = 2; + private com.google.protobuf.FieldMask updateMask_; + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the updateMask field is set. + */ + @java.lang.Override + public boolean hasUpdateMask() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The updateMask. + */ + @java.lang.Override + public com.google.protobuf.FieldMask getUpdateMask() { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getCustomTargetingKey()); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(2, getUpdateMask()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getCustomTargetingKey()); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getUpdateMask()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest)) { + return super.equals(obj); + } + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest other = + (com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) obj; + + if (hasCustomTargetingKey() != other.hasCustomTargetingKey()) return false; + if (hasCustomTargetingKey()) { + if (!getCustomTargetingKey().equals(other.getCustomTargetingKey())) return false; + } + if (hasUpdateMask() != other.hasUpdateMask()) return false; + if (hasUpdateMask()) { + if (!getUpdateMask().equals(other.getUpdateMask())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasCustomTargetingKey()) { + hash = (37 * hash) + CUSTOM_TARGETING_KEY_FIELD_NUMBER; + hash = (53 * hash) + getCustomTargetingKey().hashCode(); + } + if (hasUpdateMask()) { + hash = (37 * hash) + UPDATE_MASK_FIELD_NUMBER; + hash = (53 * hash) + getUpdateMask().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Request object for `UpdateCustomTargetingKey` method.
+   * 
+ * + * Protobuf type {@code google.ads.admanager.v1.UpdateCustomTargetingKeyRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.class, + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.Builder.class); + } + + // Construct using com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getCustomTargetingKeyFieldBuilder(); + getUpdateMaskFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + customTargetingKey_ = null; + if (customTargetingKeyBuilder_ != null) { + customTargetingKeyBuilder_.dispose(); + customTargetingKeyBuilder_ = null; + } + updateMask_ = null; + if (updateMaskBuilder_ != null) { + updateMaskBuilder_.dispose(); + updateMaskBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.ads.admanager.v1.CustomTargetingKeyServiceProto + .internal_static_google_ads_admanager_v1_UpdateCustomTargetingKeyRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest getDefaultInstanceForType() { + return com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest build() { + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest buildPartial() { + com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest result = + new com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.customTargetingKey_ = + customTargetingKeyBuilder_ == null + ? customTargetingKey_ + : customTargetingKeyBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.updateMask_ = updateMaskBuilder_ == null ? updateMask_ : updateMaskBuilder_.build(); + to_bitField0_ |= 0x00000002; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) { + return mergeFrom((com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest other) { + if (other == com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest.getDefaultInstance()) + return this; + if (other.hasCustomTargetingKey()) { + mergeCustomTargetingKey(other.getCustomTargetingKey()); + } + if (other.hasUpdateMask()) { + mergeUpdateMask(other.getUpdateMask()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage( + getCustomTargetingKeyFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + input.readMessage(getUpdateMaskFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private com.google.ads.admanager.v1.CustomTargetingKey customTargetingKey_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + customTargetingKeyBuilder_; + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the customTargetingKey field is set. + */ + public boolean hasCustomTargetingKey() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The customTargetingKey. + */ + public com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKey() { + if (customTargetingKeyBuilder_ == null) { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } else { + return customTargetingKeyBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setCustomTargetingKey(com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeyBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + customTargetingKey_ = value; + } else { + customTargetingKeyBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setCustomTargetingKey( + com.google.ads.admanager.v1.CustomTargetingKey.Builder builderForValue) { + if (customTargetingKeyBuilder_ == null) { + customTargetingKey_ = builderForValue.build(); + } else { + customTargetingKeyBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeCustomTargetingKey(com.google.ads.admanager.v1.CustomTargetingKey value) { + if (customTargetingKeyBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) + && customTargetingKey_ != null + && customTargetingKey_ + != com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance()) { + getCustomTargetingKeyBuilder().mergeFrom(value); + } else { + customTargetingKey_ = value; + } + } else { + customTargetingKeyBuilder_.mergeFrom(value); + } + if (customTargetingKey_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearCustomTargetingKey() { + bitField0_ = (bitField0_ & ~0x00000001); + customTargetingKey_ = null; + if (customTargetingKeyBuilder_ != null) { + customTargetingKeyBuilder_.dispose(); + customTargetingKeyBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CustomTargetingKey.Builder getCustomTargetingKeyBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getCustomTargetingKeyFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder + getCustomTargetingKeyOrBuilder() { + if (customTargetingKeyBuilder_ != null) { + return customTargetingKeyBuilder_.getMessageOrBuilder(); + } else { + return customTargetingKey_ == null + ? com.google.ads.admanager.v1.CustomTargetingKey.getDefaultInstance() + : customTargetingKey_; + } + } + + /** + * + * + *
+     * Required. The `CustomTargetingKey` to update.
+     *
+     * The `CustomTargetingKey`'s `name` is used to identify the
+     * `CustomTargetingKey` to update.
+     * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder> + getCustomTargetingKeyFieldBuilder() { + if (customTargetingKeyBuilder_ == null) { + customTargetingKeyBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.admanager.v1.CustomTargetingKey, + com.google.ads.admanager.v1.CustomTargetingKey.Builder, + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder>( + getCustomTargetingKey(), getParentForChildren(), isClean()); + customTargetingKey_ = null; + } + return customTargetingKeyBuilder_; + } + + private com.google.protobuf.FieldMask updateMask_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, + com.google.protobuf.FieldMask.Builder, + com.google.protobuf.FieldMaskOrBuilder> + updateMaskBuilder_; + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the updateMask field is set. + */ + public boolean hasUpdateMask() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The updateMask. + */ + public com.google.protobuf.FieldMask getUpdateMask() { + if (updateMaskBuilder_ == null) { + return updateMask_ == null + ? com.google.protobuf.FieldMask.getDefaultInstance() + : updateMask_; + } else { + return updateMaskBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setUpdateMask(com.google.protobuf.FieldMask value) { + if (updateMaskBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + updateMask_ = value; + } else { + updateMaskBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForValue) { + if (updateMaskBuilder_ == null) { + updateMask_ = builderForValue.build(); + } else { + updateMaskBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { + if (updateMaskBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) + && updateMask_ != null + && updateMask_ != com.google.protobuf.FieldMask.getDefaultInstance()) { + getUpdateMaskBuilder().mergeFrom(value); + } else { + updateMask_ = value; + } + } else { + updateMaskBuilder_.mergeFrom(value); + } + if (updateMask_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearUpdateMask() { + bitField0_ = (bitField0_ & ~0x00000002); + updateMask_ = null; + if (updateMaskBuilder_ != null) { + updateMaskBuilder_.dispose(); + updateMaskBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getUpdateMaskFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { + if (updateMaskBuilder_ != null) { + return updateMaskBuilder_.getMessageOrBuilder(); + } else { + return updateMask_ == null + ? com.google.protobuf.FieldMask.getDefaultInstance() + : updateMask_; + } + } + + /** + * + * + *
+     * Required. The list of fields to update.
+     * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, + com.google.protobuf.FieldMask.Builder, + com.google.protobuf.FieldMaskOrBuilder> + getUpdateMaskFieldBuilder() { + if (updateMaskBuilder_ == null) { + updateMaskBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, + com.google.protobuf.FieldMask.Builder, + com.google.protobuf.FieldMaskOrBuilder>( + getUpdateMask(), getParentForChildren(), isClean()); + updateMask_ = null; + } + return updateMaskBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) + private static final com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest(); + } + + public static com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UpdateCustomTargetingKeyRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomTargetingKeyRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomTargetingKeyRequestOrBuilder.java new file mode 100644 index 000000000000..3f400855c45e --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateCustomTargetingKeyRequestOrBuilder.java @@ -0,0 +1,118 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/admanager/v1/custom_targeting_key_service.proto + +// Protobuf Java Version: 3.25.8 +package com.google.ads.admanager.v1; + +public interface UpdateCustomTargetingKeyRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.ads.admanager.v1.UpdateCustomTargetingKeyRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to update.
+   *
+   * The `CustomTargetingKey`'s `name` is used to identify the
+   * `CustomTargetingKey` to update.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the customTargetingKey field is set. + */ + boolean hasCustomTargetingKey(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to update.
+   *
+   * The `CustomTargetingKey`'s `name` is used to identify the
+   * `CustomTargetingKey` to update.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The customTargetingKey. + */ + com.google.ads.admanager.v1.CustomTargetingKey getCustomTargetingKey(); + + /** + * + * + *
+   * Required. The `CustomTargetingKey` to update.
+   *
+   * The `CustomTargetingKey`'s `name` is used to identify the
+   * `CustomTargetingKey` to update.
+   * 
+ * + * + * .google.ads.admanager.v1.CustomTargetingKey custom_targeting_key = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.ads.admanager.v1.CustomTargetingKeyOrBuilder getCustomTargetingKeyOrBuilder(); + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the updateMask field is set. + */ + boolean hasUpdateMask(); + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The updateMask. + */ + com.google.protobuf.FieldMask getUpdateMask(); + + /** + * + * + *
+   * Required. The list of fields to update.
+   * 
+ * + * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder(); +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequest.java index b9b62368fc27..a20fa5a80d0f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequestOrBuilder.java index f8f3d149b055..0374da48782f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateEntitySignalsMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequest.java index a10d2627508f..03211a61b78a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequestOrBuilder.java index 1ddb11765140..6f588d7d9417 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePlacementRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequest.java index 8722e9a95e49..4c7ae11190a3 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequestOrBuilder.java index b87a66dab063..1f516d4ba83b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionDealRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequest.java index 785fe23c06b0..957a90e9b627 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequestOrBuilder.java index 482655f98af0..0206e8d9cd12 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdatePrivateAuctionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequest.java index df437b49fbee..4bf69f6af0dc 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequestOrBuilder.java index 336ab9cae179..5a58fe614710 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequest.java index e871edd34098..87a009322a26 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequestOrBuilder.java index c422d3f1bb26..ef29685924e0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateSiteRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequest.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequest.java index c46a7ab59937..ffc9f184d44e 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequest.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequestOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequestOrBuilder.java index 463baceea77e..820467915219 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequestOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UpdateTeamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/User.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/User.java index 3ba73d9d1648..c0c02eef99ad 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/User.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/User.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargeting.java index ee98f0e6b992..4c22daed18c1 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargetingOrBuilder.java index 1b674c1e0ce7..064c7aaa5d02 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserDomainTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserMessagesProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserMessagesProto.java index 521eb8648edc..2f76bfb50129 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserMessagesProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserMessagesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserName.java index c15e2c29099c..29e1d25b4727 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserOrBuilder.java index d33367532f79..fe1b182db5ec 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserServiceProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserServiceProto.java index d8d3a09c0f11..221c1daaeb80 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserServiceProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/UserServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPosition.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPosition.java index 9d17eded5c4a..30088332aef5 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPosition.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPosition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnum.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnum.java index 1944afb20f3d..e40668fce3b0 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnum.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumOrBuilder.java index eab8ca30339c..6360b9127bc6 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumProto.java index 0e8eea7465d9..044a1a4b7587 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionEnumProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionOrBuilder.java index f79b968bf5e5..da8464c7849b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargeting.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargeting.java index 6782e0d4f4bb..624a94d20236 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargeting.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargeting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargetingOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargetingOrBuilder.java index de097a6a5047..35bbf1b4a442 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargetingOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/VideoPositionTargetingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebProperty.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebProperty.java index acad1b2ca25f..45f020c36b9a 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebProperty.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyName.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyName.java index b9b1a8a3a5ef..b26f5d70d479 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyName.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyOrBuilder.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyOrBuilder.java index 647997c00a73..f55f0242525b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyOrBuilder.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyProto.java b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyProto.java index fd098233c3d5..211288f7e70f 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyProto.java +++ b/java-admanager/proto-ad-manager-v1/src/main/java/com/google/ads/admanager/v1/WebPropertyProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_review_center_ad_service.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_review_center_ad_service.proto index c1b4255cbfc9..6b736e49695b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_review_center_ad_service.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_review_center_ad_service.proto @@ -117,11 +117,12 @@ message SearchAdReviewCenterAdsRequest { // is the value returned from a previous Search request, or empty. string page_token = 3 [(google.api.field_behavior) = OPTIONAL]; - // Required. Only return ads with the given status. + // Optional. Only return ads with the given status. AdReviewCenterAdStatusEnum.AdReviewCenterAdStatus status = 4 - [(google.api.field_behavior) = REQUIRED]; + [(google.api.field_behavior) = OPTIONAL]; - // Optional. If provided, only return ads with the given AdReviewCenterAd IDs. + // Optional. Only return ads with the given AdReviewCenterAd IDs. If provided, + // no other filter can be set (other than page size and page token). repeated string ad_review_center_ad_id = 5 [(google.api.field_behavior) = OPTIONAL]; diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_unit_service.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_unit_service.proto index 00843ea20407..c7ff8039f887 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_unit_service.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/ad_unit_service.proto @@ -21,6 +21,7 @@ import "google/api/annotations.proto"; import "google/api/client.proto"; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; +import "google/protobuf/field_mask.proto"; option csharp_namespace = "Google.Ads.AdManager.V1"; option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; @@ -60,6 +61,74 @@ service AdUnitService { }; option (google.api.method_signature) = "parent"; } + + // API to create an `AdUnit` object. + rpc CreateAdUnit(CreateAdUnitRequest) returns (AdUnit) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/adUnits" + body: "ad_unit" + }; + option (google.api.method_signature) = "parent,ad_unit"; + } + + // API to update an `AdUnit` object. + rpc UpdateAdUnit(UpdateAdUnitRequest) returns (AdUnit) { + option (google.api.http) = { + patch: "/v1/{ad_unit.name=networks/*/adUnits/*}" + body: "ad_unit" + }; + option (google.api.method_signature) = "ad_unit,update_mask"; + } + + // API to batch create `AdUnit` objects. + rpc BatchCreateAdUnits(BatchCreateAdUnitsRequest) + returns (BatchCreateAdUnitsResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/adUnits:batchCreate" + body: "*" + }; + option (google.api.method_signature) = "parent,requests"; + } + + // API to batch update `AdUnit` objects. + rpc BatchUpdateAdUnits(BatchUpdateAdUnitsRequest) + returns (BatchUpdateAdUnitsResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/adUnits:batchUpdate" + body: "*" + }; + option (google.api.method_signature) = "parent,requests"; + } + + // API to batch activate `AdUnit` objects. + rpc BatchActivateAdUnits(BatchActivateAdUnitsRequest) + returns (BatchActivateAdUnitsResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/adUnits:batchActivate" + body: "*" + }; + option (google.api.method_signature) = "parent,names"; + } + + // Deactivates a list of `AdUnit` objects. + rpc BatchDeactivateAdUnits(BatchDeactivateAdUnitsRequest) + returns (BatchDeactivateAdUnitsResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/adUnits:batchDeactivate" + body: "*" + }; + option (google.api.method_signature) = "parent,names"; + } + + // Archives a list of `AdUnit` objects. + rpc BatchArchiveAdUnits(BatchArchiveAdUnitsRequest) + returns (BatchArchiveAdUnitsResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/adUnits:batchArchive" + body: "*" + }; + option (google.api.method_signature) = "parent,names"; + } } // Request object for GetAdUnit method. @@ -135,6 +204,84 @@ message ListAdUnitsResponse { int32 total_size = 3; } +// Request object for `CreateAdUnit` method. +message CreateAdUnitRequest { + // Required. The parent resource where this `AdUnit` will be created. + // Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The `AdUnit` to create. + AdUnit ad_unit = 2 [(google.api.field_behavior) = REQUIRED]; +} + +// Request object for `UpdateAdUnit` method. +message UpdateAdUnitRequest { + // Required. The `AdUnit` to update. + // + // The `AdUnit`'s name is used to identify the `AdUnit` to update. Format: + // `networks/{network_code}/adUnits/{ad_unit_id}` + AdUnit ad_unit = 1 [(google.api.field_behavior) = REQUIRED]; + + // Required. The list of fields to update. + google.protobuf.FieldMask update_mask = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Request object for `BatchCreateAdUnits` method. +message BatchCreateAdUnitsRequest { + // Required. The parent resource where `AdUnits` will be created. + // Format: `networks/{network_code}` + // The parent field in the CreateAdUnitRequest must match this + // field. + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The `AdUnit` objects to create. + // A maximum of 100 objects can be created in a batch. + repeated CreateAdUnitRequest requests = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Response object for `BatchCreateAdUnits` method. +message BatchCreateAdUnitsResponse { + // The `AdUnit` objects created. + repeated AdUnit ad_units = 1; +} + +// Request object for `BatchUpdateAdUnits` method. +message BatchUpdateAdUnitsRequest { + // Required. The parent resource where `AdUnits` will be updated. + // Format: `networks/{network_code}` + // The parent field in the UpdateAdUnitRequest must match this + // field. + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The `AdUnit` objects to update. + // A maximum of 100 objects can be updated in a batch. + repeated UpdateAdUnitRequest requests = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Response object for `BatchUpdateAdUnits` method. +message BatchUpdateAdUnitsResponse { + // The `AdUnit` objects updated. + repeated AdUnit ad_units = 1; +} + // Request object for ListAdUnitSizes method. message ListAdUnitSizesRequest { // Required. The parent, which owns this collection of AdUnitSizes. @@ -195,3 +342,72 @@ message ListAdUnitSizesResponse { // https://developers.google.com/ad-manager/api/beta/field-masks int32 total_size = 3; } + +// Request object for `BatchActivateAdUnits` method. +message BatchActivateAdUnitsRequest { + // Required. Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The resource names of the `AdUnit`s to activate. + // Format: `networks/{network_code}/adUnits/{ad_unit_id}` + repeated string names = 2 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/AdUnit" + } + ]; +} + +// Response object for `BatchActivateAdUnits` method. +message BatchActivateAdUnitsResponse {} + +// Request object for `BatchDeactivateAdUnits` method. +message BatchDeactivateAdUnitsRequest { + // Required. Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The resource names of the `AdUnit`s to deactivate. + // Format: `networks/{network_code}/adUnits/{ad_unit_id}` + repeated string names = 2 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/AdUnit" + } + ]; +} + +// Response object for `BatchDeactivateAdUnits` method. +message BatchDeactivateAdUnitsResponse {} + +// Request object for `BatchArchiveAdUnits` method. +message BatchArchiveAdUnitsRequest { + // Required. Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The resource names of the `AdUnit`s to archive. + // Format: `networks/{network_code}/adUnits/{ad_unit_id}` + repeated string names = 2 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/AdUnit" + } + ]; +} + +// Response object for `BatchArchiveAdUnits` method. +message BatchArchiveAdUnitsResponse {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/cms_metadata_value_service.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/cms_metadata_value_service.proto index 8e85a34443e4..a569ae23fc5d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/cms_metadata_value_service.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/cms_metadata_value_service.proto @@ -36,7 +36,7 @@ service CmsMetadataValueService { option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/admanager"; - // API to retrieve a `CmsMetadataKey` object. + // API to retrieve a `CmsMetadataValue` object. rpc GetCmsMetadataValue(GetCmsMetadataValueRequest) returns (CmsMetadataValue) { option (google.api.http) = { @@ -57,7 +57,7 @@ service CmsMetadataValueService { // Request object for `GetCmsMetadataValue` method. message GetCmsMetadataValueRequest { - // Required. The resource name of the CmsMetadataKey. + // Required. The resource name of the CmsMetadataValue. // Format: `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}` string name = 1 [ (google.api.field_behavior) = REQUIRED, diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/custom_targeting_key_service.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/custom_targeting_key_service.proto index d211d674992b..ff317e80a562 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/custom_targeting_key_service.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/custom_targeting_key_service.proto @@ -21,6 +21,7 @@ import "google/api/annotations.proto"; import "google/api/client.proto"; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; +import "google/protobuf/field_mask.proto"; option csharp_namespace = "Google.Ads.AdManager.V1"; option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; @@ -53,6 +54,67 @@ service CustomTargetingKeyService { }; option (google.api.method_signature) = "parent"; } + + // API to create a `CustomTargetingKey` object. + rpc CreateCustomTargetingKey(CreateCustomTargetingKeyRequest) + returns (CustomTargetingKey) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/customTargetingKeys" + body: "custom_targeting_key" + }; + option (google.api.method_signature) = "parent,custom_targeting_key"; + } + + // API to batch create `CustomTargetingKey` objects. + rpc BatchCreateCustomTargetingKeys(BatchCreateCustomTargetingKeysRequest) + returns (BatchCreateCustomTargetingKeysResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/customTargetingKeys:batchCreate" + body: "*" + }; + option (google.api.method_signature) = "parent,requests"; + } + + // API to update a `CustomTargetingKey` object. + rpc UpdateCustomTargetingKey(UpdateCustomTargetingKeyRequest) + returns (CustomTargetingKey) { + option (google.api.http) = { + patch: "/v1/{custom_targeting_key.name=networks/*/customTargetingKeys/*}" + body: "custom_targeting_key" + }; + option (google.api.method_signature) = "custom_targeting_key,update_mask"; + } + + // API to batch update `CustomTargetingKey` objects. + rpc BatchUpdateCustomTargetingKeys(BatchUpdateCustomTargetingKeysRequest) + returns (BatchUpdateCustomTargetingKeysResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/customTargetingKeys:batchUpdate" + body: "*" + }; + option (google.api.method_signature) = "parent,requests"; + } + + // API to batch activate `CustomTargetingKey` objects. + rpc BatchActivateCustomTargetingKeys(BatchActivateCustomTargetingKeysRequest) + returns (BatchActivateCustomTargetingKeysResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/customTargetingKeys:batchActivate" + body: "*" + }; + option (google.api.method_signature) = "parent,names"; + } + + // Deactivates a list of `CustomTargetingKey` objects. + rpc BatchDeactivateCustomTargetingKeys( + BatchDeactivateCustomTargetingKeysRequest) + returns (BatchDeactivateCustomTargetingKeysResponse) { + option (google.api.http) = { + post: "/v1/{parent=networks/*}/customTargetingKeys:batchDeactivate" + body: "*" + }; + option (google.api.method_signature) = "parent,names"; + } } // Request object for `GetCustomTargetingKey` method. @@ -129,3 +191,131 @@ message ListCustomTargetingKeysResponse { // https://developers.google.com/ad-manager/api/beta/field-masks int32 total_size = 3; } + +// Request object for `CreateCustomTargetingKey` method. +message CreateCustomTargetingKeyRequest { + // Required. The parent resource where this `CustomTargetingKey` will be + // created. Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The `CustomTargetingKey` to create. + CustomTargetingKey custom_targeting_key = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Request object for `BatchCreateCustomTargetingKeys` method. +message BatchCreateCustomTargetingKeysRequest { + // Required. The parent resource where `CustomTargetingKeys` will be created. + // Format: `networks/{network_code}` + // The parent field in the CreateCustomTargetingKeyRequest must match this + // field. + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The `CustomTargetingKey` objects to create. + // A maximum of 100 objects can be created in a batch. + repeated CreateCustomTargetingKeyRequest requests = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Response object for `BatchCreateCustomTargetingKeys` method. +message BatchCreateCustomTargetingKeysResponse { + // The `CustomTargetingKey` objects created. + repeated CustomTargetingKey custom_targeting_keys = 1; +} + +// Request object for `UpdateCustomTargetingKey` method. +message UpdateCustomTargetingKeyRequest { + // Required. The `CustomTargetingKey` to update. + // + // The `CustomTargetingKey`'s `name` is used to identify the + // `CustomTargetingKey` to update. + CustomTargetingKey custom_targeting_key = 1 + [(google.api.field_behavior) = REQUIRED]; + + // Required. The list of fields to update. + google.protobuf.FieldMask update_mask = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Request object for `BatchUpdateCustomTargetingKeys` method. +message BatchUpdateCustomTargetingKeysRequest { + // Required. The parent resource where `CustomTargetingKeys` will be updated. + // Format: `networks/{network_code}` + // The parent field in the UpdateCustomTargetingKeyRequest must match this + // field. + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The `CustomTargetingKey` objects to update. + // A maximum of 100 objects can be updated in a batch. + repeated UpdateCustomTargetingKeyRequest requests = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Response object for `BatchUpdateCustomTargetingKeys` method. +message BatchUpdateCustomTargetingKeysResponse { + // The `CustomTargetingKey` objects updated. + repeated CustomTargetingKey custom_targeting_keys = 1; +} + +// Request object for `BatchActivateCustomTargetingKeys` method. +message BatchActivateCustomTargetingKeysRequest { + // Required. Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The resource names of the `CustomTargetingKey`s to activate. + // Format: + // `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}` + repeated string names = 2 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/CustomTargetingKey" + } + ]; +} + +// Response object for `BatchActivateCustomTargetingKeys` method. +message BatchActivateCustomTargetingKeysResponse {} + +// Request message for `BatchDeactivateCustomTargetingKeys` method. +message BatchDeactivateCustomTargetingKeysRequest { + // Required. Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Required. The resource names of the `CustomTargetingKey`s to deactivate. + // Format: + // `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}` + repeated string names = 2 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/CustomTargetingKey" + } + ]; +} + +// Response object for `BatchDeactivateCustomTargetingKeys` method. +message BatchDeactivateCustomTargetingKeysResponse {} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/goal.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/goal.proto new file mode 100644 index 000000000000..8916b12f005c --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/goal.proto @@ -0,0 +1,57 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.ads.admanager.v1; + +import "google/ads/admanager/v1/goal_enums.proto"; + +option csharp_namespace = "Google.Ads.AdManager.V1"; +option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; +option java_multiple_files = true; +option java_outer_classname = "GoalProto"; +option java_package = "com.google.ads.admanager.v1"; +option php_namespace = "Google\\Ads\\AdManager\\V1"; +option ruby_package = "Google::Ads::AdManager::V1"; + +// Defines the criteria a [LineItem][google.ads.admanager.v1.LineItem] needs to +// satisfy to meet its delivery goal. +message Goal { + // The type of the goal for the LineItem. It defines the period over which the + // goal should be reached. + optional GoalTypeEnum.GoalType goal_type = 1; + + // The type of the goal unit for the LineItem. + optional UnitTypeEnum.UnitType unit_type = 2; + + // If this is a primary goal, it represents the number or percentage of + // impressions or clicks that will be reserved. If the line item is of type + // [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP], + // it represents the percentage of available impressions reserved. If the line + // item is of type + // [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK] + // or + // [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY], + // it represents the number of remaining impressions reserved. If the line + // item is of type + // [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK] + // or + // [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE], + // it represents the percentage of remaining impressions reserved.

If this + // is an impression cap goal, it represents the number of impressions or + // conversions that the line item will stop serving at if reached. For valid + // line item types, see [LineItem.impressions_cap][]. + optional int64 units = 3; +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/goal_enums.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/goal_enums.proto new file mode 100644 index 000000000000..963823378de8 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/goal_enums.proto @@ -0,0 +1,129 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.ads.admanager.v1; + +option csharp_namespace = "Google.Ads.AdManager.V1"; +option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; +option java_multiple_files = true; +option java_outer_classname = "GoalEnumsProto"; +option java_package = "com.google.ads.admanager.v1"; +option php_namespace = "Google\\Ads\\AdManager\\V1"; +option ruby_package = "Google::Ads::AdManager::V1"; + +// Wrapper message for +// [GoalType][google.ads.admanager.v1.GoalTypeEnum.GoalType]. +message GoalTypeEnum { + // Specifies the type of the goal for a LineItem. + enum GoalType { + // Default value. This value is unused. + GOAL_TYPE_UNSPECIFIED = 0; + + // No goal is specified for the number of ads delivered. + // The line item [type][google.ads.admanager.v1.LineItem.line_item_type] + // must be one of: + // + // * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY] + // * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE] + // * [LineItemTypeEnum.LineItemType.CLICK_TRACKING][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.CLICK_TRACKING] + NONE = 1; + + // There is a goal on the number of ads delivered for this line item during + // its entire lifetime. + // The line item [type][google.ads.admanager.v1.LineItem.line_item_type] + // must be one of: + // + // * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD] + // * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK] + // * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY] + // * [LineItemTypeEnum.LineItemType.ADSENSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.ADSENSE] + // * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE] + // * [LineItemTypeEnum.LineItemType.ADMOB][] + // * [LineItemTypeEnum.LineItemType.CLICK_TRACKING][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.CLICK_TRACKING] + LIFETIME = 2; + + // There is a daily goal on the number of ads delivered for this line item. + // The line item [type][google.ads.admanager.v1.LineItem.line_item_type] + // must be one of: + // + // * [LineItemTypeEnum.LineItemType.SPONSORSHIP][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.SPONSORSHIP] + // * [LineItemTypeEnum.LineItemType.NETWORK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.NETWORK] + // * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY] + // * [LineItemTypeEnum.LineItemType.HOUSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.HOUSE] + // * [LineItemTypeEnum.LineItemType.ADSENSE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.ADSENSE] + // * [LineItemTypeEnum.LineItemType.AD_EXCHANGE][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.AD_EXCHANGE] + // * [LineItemTypeEnum.LineItemType.ADMOB][] + // * [LineItemTypeEnum.LineItemType.BUMPER][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BUMPER] + DAILY = 3; + } +} + +// Wrapper message for +// [UnitType][google.ads.admanager.v1.UnitTypeEnum.UnitType]. +message UnitTypeEnum { + // Indicates the type of unit used for defining a reservation. The + // [LineItem.cost_type][] can differ from the UnitType - an + // ad can have an impression goal, but be billed by its click. Usually + // CostType and UnitType will refer to the same unit. + enum UnitType { + // Default value. This value is unused. + UNIT_TYPE_UNSPECIFIED = 0; + + // The number of impressions served by creatives associated with the line + // item. + IMPRESSIONS = 1; + + // The number of clicks reported by creatives associated with the line item. + // The line item [type][google.ads.admanager.v1.LineItem.line_item_type] + // must be one of: + // + // * [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD] + // * [LineItemTypeEnum.LineItemType.BULK][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.BULK] + // * [LineItemTypeEnum.LineItemType.PRICE_PRIORITY][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.PRICE_PRIORITY] + CLICKS = 2; + + // The number of click-through Cost-Per-Action (CPA) conversions from + // creatives associated with the line item. This is only supported as + // secondary goal and the [LineItem.cost_type][] must be + // [CostTypeEnum.CostType.CPA][]. + CLICK_THROUGH_CPA_CONVERSIONS = 3; + + // The number of view-through Cost-Per-Action (CPA) conversions from + // creatives associated with the line item. This is only supported as + // secondary goal and the [LineItem.cost_type][] must be + // [CostTypeEnum.CostType.CPA}. + VIEW_THROUGH_CPA_CONVERSIONS = 4; + + // The number of total Cost-Per-Action (CPA) conversions from creatives + // associated with the line item. This is only supported as secondary goal + // and the [LineItem.cost_type} must be [CostTypeEnum.CostType.CPA}. + TOTAL_CPA_CONVERSIONS = 5; + + // The number of viewable impressions reported by creatives associated with + // the line item. The + // [LineItem.line_item_type][google.ads.admanager.v1.LineItem.line_item_type] + // must be + // [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD]. + VIEWABLE_IMPRESSIONS = 6; + + // The number of in-target impressions reported by third party measurements. + // The + // [LineItem.line_item_type][google.ads.admanager.v1.LineItem.line_item_type] + // must be + // [LineItemTypeEnum.LineItemType.STANDARD][google.ads.admanager.v1.LineItemTypeEnum.LineItemType.STANDARD]. + IN_TARGET_IMPRESSIONS = 7; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_enums.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_enums.proto new file mode 100644 index 000000000000..ef03b0c49b48 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_enums.proto @@ -0,0 +1,86 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.ads.admanager.v1; + +option csharp_namespace = "Google.Ads.AdManager.V1"; +option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; +option java_multiple_files = true; +option java_outer_classname = "LineItemEnumsProto"; +option java_package = "com.google.ads.admanager.v1"; +option php_namespace = "Google\\Ads\\AdManager\\V1"; +option ruby_package = "Google::Ads::AdManager::V1"; + +// Wrapper message for +// [LineItemType][google.ads.admanager.v1.LineItemTypeEnum.LineItemType]. +message LineItemTypeEnum { + // Indicates the priority of a LineItem, determined by the way in which + // impressions are reserved to be served for it. + enum LineItemType { + // Not specified value. + LINE_ITEM_TYPE_UNSPECIFIED = 0; + + // The type of LineItem for which a percentage of all the impressions that + // are being sold are reserved. + SPONSORSHIP = 12; + + // The type of LineItem for which a fixed quantity of impressions or + // clicks are reserved. + STANDARD = 13; + + // The type of LineItem most commonly used to fill a site's unsold + // inventory if not contractually obligated to deliver a requested number + // of impressions. Uses daily percentage of unsold impressions or clicks. + NETWORK = 9; + + // The type of LineItem for which a fixed quantity of impressions or + // clicks will be delivered at a priority lower than the STANDARD type. + BULK = 4; + + // The type of LineItem most commonly used to fill a site's unsold + // inventory if not contractually obligated to deliver a requested number + // of impressions. Uses fixed quantity percentage of unsold impressions or + // clicks. + PRICE_PRIORITY = 11; + + // The type of LineItem typically used for ads that promote products and + // services chosen by the publisher. + HOUSE = 7; + + // The type of LineItem used for ads that track ads being served + // externally of Ad Manager. + CLICK_TRACKING = 6; + + // Targets the LineItem to specific inventory available to AdSense buyers. + ADSENSE = 2; + + // Targets the LineItem to specific inventory available to Authorized Buyers + // and the Open Auction. + AD_EXCHANGE = 3; + + // Represents a non-monetizable video LineItem that targets one or more + // bumper positions, which are short house video messages used by + // publishers to separate content from ad breaks. + BUMPER = 5; + + // The type of LineItem for which there are no impressions reserved, and + // will serve for a second price bid. + PREFERRED_DEAL = 10; + + // The type of LineItem used for configuring audience extension campaigns. + AUDIENCE_EXTENSION = 14; + } +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_messages.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_messages.proto new file mode 100644 index 000000000000..75392cd5d615 --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_messages.proto @@ -0,0 +1,93 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.ads.admanager.v1; + +import "google/ads/admanager/v1/custom_field_value.proto"; +import "google/ads/admanager/v1/goal.proto"; +import "google/ads/admanager/v1/line_item_enums.proto"; +import "google/api/field_behavior.proto"; +import "google/api/resource.proto"; +import "google/protobuf/timestamp.proto"; +import "google/type/money.proto"; + +option csharp_namespace = "Google.Ads.AdManager.V1"; +option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; +option java_multiple_files = true; +option java_outer_classname = "LineItemMessagesProto"; +option java_package = "com.google.ads.admanager.v1"; +option php_namespace = "Google\\Ads\\AdManager\\V1"; +option ruby_package = "Google::Ads::AdManager::V1"; + +// A LineItem contains information about how specific ad creatives are intended +// to serve to your website or app along with pricing and other delivery +// details. +message LineItem { + option (google.api.resource) = { + type: "admanager.googleapis.com/LineItem" + pattern: "networks/{network_code}/lineItems/{line_item}" + plural: "lineItems" + singular: "lineItem" + }; + + // Identifier. The resource name of the `LineItem`. + // Format: `networks/{network_code}/lineItems/{line_item_id}` + string name = 1 [(google.api.field_behavior) = IDENTIFIER]; + + // Output only. The ID of the Order to which the LineItem belongs. This + // attribute is required. Format: `networks/{network_code}/orders/{order}` + optional string order = 2 [ + (google.api.field_behavior) = OUTPUT_ONLY, + (google.api.resource_reference) = { type: "admanager.googleapis.com/Order" } + ]; + + // Required. The name of the line item. This attribute is required and has a + // maximum length of 255 characters. + optional string display_name = 3 [(google.api.field_behavior) = REQUIRED]; + + // Required. The date and time on which the LineItem is enabled to begin + // serving. This attribute is required and must be in the future. + optional google.protobuf.Timestamp start_time = 6 + [(google.api.field_behavior) = REQUIRED]; + + // Output only. The timestamp when the LineItem will stop serving. This + // attribute is read-only and includes auto extension days. + optional google.protobuf.Timestamp end_time = 7 + [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Required. Indicates the line item type of a LineItem. This attribute is + // required. The line item type determines the default priority of the line + // item. More information can be found at + // https://support.google.com/admanager/answer/177279. + optional LineItemTypeEnum.LineItemType line_item_type = 17 + [(google.api.field_behavior) = REQUIRED]; + + // Required. The amount of money to spend per impression or click. + optional google.type.Money rate = 20 [(google.api.field_behavior) = REQUIRED]; + + // Output only. The amount of money allocated to the LineItem. This attribute + // is readonly and is populated by Google. The currency code is readonly. + optional google.type.Money budget = 35 + [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Optional. The values of the custom fields associated with this line item. + repeated CustomFieldValue custom_field_values = 59 + [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The primary goal that this LineItem is associated with, which is + // used in its pacing and budgeting. + optional Goal goal = 76 [(google.api.field_behavior) = OPTIONAL]; +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_service.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_service.proto new file mode 100644 index 000000000000..014b94e80cfe --- /dev/null +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/line_item_service.proto @@ -0,0 +1,128 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.ads.admanager.v1; + +import "google/ads/admanager/v1/line_item_messages.proto"; +import "google/api/annotations.proto"; +import "google/api/client.proto"; +import "google/api/field_behavior.proto"; +import "google/api/resource.proto"; + +option csharp_namespace = "Google.Ads.AdManager.V1"; +option go_package = "google.golang.org/genproto/googleapis/ads/admanager/v1;admanager"; +option java_multiple_files = true; +option java_outer_classname = "LineItemServiceProto"; +option java_package = "com.google.ads.admanager.v1"; +option php_namespace = "Google\\Ads\\AdManager\\V1"; +option ruby_package = "Google::Ads::AdManager::V1"; + +// Provides methods for handling `LineItem` objects. +service LineItemService { + option (google.api.default_host) = "admanager.googleapis.com"; + option (google.api.oauth_scopes) = + "https://www.googleapis.com/auth/admanager"; + + // API to retrieve a `LineItem` object. + rpc GetLineItem(GetLineItemRequest) returns (LineItem) { + option (google.api.http) = { + get: "/v1/{name=networks/*/lineItems/*}" + }; + option (google.api.method_signature) = "name"; + } + + // API to retrieve a list of `LineItem` objects. + rpc ListLineItems(ListLineItemsRequest) returns (ListLineItemsResponse) { + option (google.api.http) = { + get: "/v1/{parent=networks/*}/lineItems" + }; + option (google.api.method_signature) = "parent"; + } +} + +// Request object for `GetLineItem` method. +message GetLineItemRequest { + // Required. The resource name of the LineItem. + // Format: `networks/{network_code}/lineItems/{line_item_id}` + string name = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/LineItem" + } + ]; +} + +// Request object for `ListLineItems` method. +message ListLineItemsRequest { + // Required. The parent, which owns this collection of LineItems. + // Format: `networks/{network_code}` + string parent = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "admanager.googleapis.com/Network" + } + ]; + + // Optional. The maximum number of `LineItems` to return. The service may + // return fewer than this value. If unspecified, at most 50 `LineItems` will + // be returned. The maximum value is 1000; values greater than 1000 will be + // coerced to 1000. + int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. A page token, received from a previous `ListLineItems` call. + // Provide this to retrieve the subsequent page. + // + // When paginating, all other parameters provided to `ListLineItems` must + // match the call that provided the page token. + string page_token = 3 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Expression to filter the response. + // See syntax details at + // https://developers.google.com/ad-manager/api/beta/filters + string filter = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Expression to specify sorting order. + // See syntax details at + // https://developers.google.com/ad-manager/api/beta/filters#order + string order_by = 5 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Number of individual resources to skip while paginating. + int32 skip = 6 [(google.api.field_behavior) = OPTIONAL]; +} + +// Response object for `ListLineItemsRequest` containing matching `LineItem` +// objects. +message ListLineItemsResponse { + // The `LineItem` objects from the specified network. + repeated LineItem line_items = 1; + + // A token, which can be sent as `page_token` to retrieve the next page. + // If this field is omitted, there are no subsequent pages. + string next_page_token = 2; + + // Total number of `LineItem` objects. + // If a filter was included in the request, this reflects the total number + // after the filtering is applied. + // + // `total_size` won't be calculated in the response unless it has been + // included in a response field mask. The response field mask can be provided + // to the method by using the URL parameter `$fields` or `fields`, or by using + // the HTTP/gRPC header `X-Goog-FieldMask`. + // + // For more information, see + // https://developers.google.com/ad-manager/api/beta/field-masks + int32 total_size = 3; +} diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_messages.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_messages.proto index ce2cb82a2523..78a85362d44b 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_messages.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_messages.proto @@ -41,20 +41,20 @@ message Network { string name = 1 [(google.api.field_behavior) = IDENTIFIER]; // Optional. Display name for Network. - string display_name = 2 [(google.api.field_behavior) = OPTIONAL]; + optional string display_name = 2 [(google.api.field_behavior) = OPTIONAL]; // Output only. Network Code. - string network_code = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; + optional string network_code = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. Property code. - string property_code = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; + optional string property_code = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. Time zone associated with the delivery of orders and // reporting. - string time_zone = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; + optional string time_zone = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. Primary currency code, in ISO-4217 format. - string currency_code = 6 [(google.api.field_behavior) = OUTPUT_ONLY]; + optional string currency_code = 6 [(google.api.field_behavior) = OUTPUT_ONLY]; // Optional. Currency codes that can be used as an alternative to the primary // currency code for trafficking Line Items. @@ -64,7 +64,7 @@ message Network { // Output only. Top most [Ad Unit](google.ads.admanager.v1.AdUnit) to which // descendant Ad Units can be added. // Format: networks/{network_code}/adUnits/{ad_unit} - string effective_root_ad_unit = 8 [ + optional string effective_root_ad_unit = 8 [ (google.api.field_behavior) = OUTPUT_ONLY, (google.api.resource_reference) = { type: "admanager.googleapis.com/AdUnit" @@ -72,8 +72,8 @@ message Network { ]; // Output only. Whether this is a test network. - bool test_network = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; + optional bool test_network = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. Network ID. - int64 network_id = 11 [(google.api.field_behavior) = OUTPUT_ONLY]; + optional int64 network_id = 11 [(google.api.field_behavior) = OUTPUT_ONLY]; } diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_service.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_service.proto index fed396886a50..2bf5396c3737 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_service.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/network_service.proto @@ -65,10 +65,41 @@ message GetNetworkRequest { } // Request object for `ListNetworks` method. -message ListNetworksRequest {} +message ListNetworksRequest { + // Optional. The maximum number of `Network`s to return. The service may + // return fewer than this value. If unspecified, at most 50 `Network`s will be + // returned. The maximum value is 1000; values greater than 1000 will be + // coerced to 1000. + int32 page_size = 3 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. A page token, received from a previous `ListNetworks` call. + // Provide this to retrieve the subsequent page. + // + // When paginating, all other parameters provided to `ListNetworks` must match + // the call that provided the page token. + string page_token = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Number of individual resources to skip while paginating. + int32 skip = 5 [(google.api.field_behavior) = OPTIONAL]; +} // Response object for `ListNetworks` method. message ListNetworksResponse { // The `Network`s a user has access to. repeated Network networks = 1; + + // A token, which can be sent as `page_token` to retrieve the next page. + // If this field is omitted, there are no subsequent pages. + string next_page_token = 2; + + // Total number of `Network`s. + // + // `total_size` won't be calculated in the response unless it has been + // included in a response field mask. The response field mask can be provided + // to the method by using the URL parameter `$fields` or `fields`, or by using + // the HTTP/gRPC header `X-Goog-FieldMask`. + // + // For more information, see + // https://developers.google.com/ad-manager/api/beta/field-masks + int32 total_size = 3; } diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/order_messages.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/order_messages.proto index 88b9115f2020..5e8620ced13d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/order_messages.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/order_messages.proto @@ -61,10 +61,12 @@ message Order { (google.api.resource_reference) = { type: "admanager.googleapis.com/User" } ]; - // Optional. The resource names of Contacts from the advertiser of this Order. - // Format: "networks/{network_code}/contacts/{contact_id}" + // Optional. Unordered list. The resource names of Contacts from the + // advertiser of this Order. Format: + // "networks/{network_code}/contacts/{contact_id}" repeated string advertiser_contacts = 5 [ (google.api.field_behavior) = OPTIONAL, + (google.api.field_behavior) = UNORDERED_LIST, (google.api.resource_reference) = { type: "admanager.googleapis.com/Contact" } diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_definition.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_definition.proto index 5e8640ff5f4c..eaf42bde804d 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_definition.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_definition.proto @@ -100,6 +100,10 @@ message ReportDefinition { // preceding the calendar week the report is run. LAST_WEEK = 7; + // The entire previous calendar week, Sunday to Saturday (inclusive), + // preceding the calendar week the report is run. + LAST_WEEK_STARTING_SUNDAY = 39; + // The entire previous calendar month preceding the calendar month the // report is run. LAST_MONTH = 8; @@ -124,6 +128,9 @@ message ReportDefinition { // The 90 days preceding the day the report is run. LAST_90_DAYS = 14; + // The 93 days preceding the day the report is run. + LAST_93_DAYS = 38; + // The 180 days preceding the day the report is run. LAST_180_DAYS = 15; @@ -392,6 +399,12 @@ message ReportDefinition { // Privacy and messaging. PRIVACY_AND_MESSAGING = 6; + // Gross revenue. + REVENUE_VERIFICATION = 7; + + // Partner finance. + PARTNER_FINANCE = 8; + // Ad speed. AD_SPEED = 13; } @@ -439,7 +452,7 @@ message ReportDefinition { // Data format: `ENUM` ADVERTISER_CREDIT_STATUS = 475; - // Advertiser credit status locallized name + // Advertiser credit status localized name // // // @@ -544,7 +557,7 @@ message ReportDefinition { // Data format: `ENUM` ADVERTISER_STATUS = 471; - // Advertiser status locallized name + // Advertiser status localized name // // // @@ -568,7 +581,7 @@ message ReportDefinition { // Data format: `ENUM` ADVERTISER_TYPE = 473; - // Advertiser type locallized name + // Advertiser type localized name // // // @@ -599,7 +612,8 @@ message ReportDefinition { // Corresponds to "Ad Exchange product value" in the Ad Manager UI (when // showing API fields). // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `ENUM` ADX_PRODUCT = 499; @@ -611,7 +625,8 @@ message ReportDefinition { // // Corresponds to "Ad Exchange product" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `STRING` ADX_PRODUCT_NAME = 500; @@ -664,6 +679,17 @@ message ReportDefinition { // Data format: `STRING` AD_LOCATION_NAME = 391; + // Multi-size inventory in an ad request. + // + // + // + // Corresponds to "Ad request sizes" in the Ad Manager UI. + // + // Compatible with the following report types: + // + // Data format: `STRING_LIST` + AD_REQUEST_SIZES = 541; + // The domain of the ad technology provider associated with the bid. // // @@ -1492,6 +1518,28 @@ message ReportDefinition { // Data format: `STRING` AGE_BRACKET_NAME = 582; + // Property ID in Google Analytics + // + // + // + // Corresponds to "Analytics property ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `IDENTIFIER` + ANALYTICS_PROPERTY_ID = 733; + + // Property name in Google Analytics + // + // + // + // Corresponds to "Analytics property" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + ANALYTICS_PROPERTY_NAME = 767; + // Enum value for App Tracking Transparency consent status. // // @@ -1549,6 +1597,50 @@ message ReportDefinition { // Data format: `IDENTIFIER` AUCTION_PACKAGE_DEAL_ID = 571; + // Name of billable audience segment. + // + // + // + // Corresponds to "Audience segment (billable)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + AUDIENCE_SEGMENT_BILLABLE = 594; + + // ID of the data provider for the audience segment. + // + // + // + // Corresponds to "Audience segment data provider ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `IDENTIFIER` + AUDIENCE_SEGMENT_DATA_PROVIDER_ID = 613; + + // Name of the data provider for the audience segment. + // + // + // + // Corresponds to "Audience segment data provider" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + AUDIENCE_SEGMENT_DATA_PROVIDER_NAME = 614; + + // ID of billable audience segment. + // + // + // + // Corresponds to "Audience segment ID (billable)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `IDENTIFIER` + AUDIENCE_SEGMENT_ID_BILLABLE = 595; + // ID of targeted audience segment, including all first-party and // third-party segments that matched the user on the winning line item. // @@ -1573,6 +1665,172 @@ message ReportDefinition { // Data format: `STRING` AUDIENCE_SEGMENT_TARGETED = 585; + // Number of AdID identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) AdID size" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_AD_ID_USER_SIZE = 605; + + // Number of Amazon Fire identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) Amazon Fire size" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_AMAZON_FIRE_USER_SIZE = 606; + + // Number of Android TV identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) Android TV size" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_ANDROID_TV_USER_SIZE = 607; + + // Number of Apple TV identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) Apple TV size" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_APPLE_TV_USER_SIZE = 608; + + // Number of IDFA identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) IDFA size" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_IDFA_USER_SIZE = 609; + + // Number of mobile web identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) mobile web size" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_MOBILE_WEB_USER_SIZE = 610; + + // Number of PlayStation identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) PlayStation size" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_PLAYSTATION_USER_SIZE = 611; + + // Number of PPID identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) PPID size" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_PPID_USER_SIZE = 612; + + // Number of Roku identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) Roku size" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_ROKU_USER_SIZE = 615; + + // Number of Samsung TV identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) Samsung TV size" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_SAMSUNG_TV_USER_SIZE = 616; + + // Number of identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) size" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_SIZE = 618; + + // Status of the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) status value" in the Ad + // Manager UI (when showing API fields). + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `ENUM` + AUDIENCE_SEGMENT_TARGETED_STATUS = 628; + + // Name of the status of the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) status" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + AUDIENCE_SEGMENT_TARGETED_STATUS_NAME = 617; + + // Number of Xbox identifiers in the audience segment. + // + // + // + // Corresponds to "Audience segment (targeted) Xbox size" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AUDIENCE_SEGMENT_TARGETED_XBOX_USER_SIZE = 619; + // Enum value of Auto refreshed traffic. // // @@ -1602,7 +1860,8 @@ message ReportDefinition { // // Corresponds to "Bidder encrypted ID" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `STRING` BIDDER_ENCRYPTED_ID = 493; @@ -1613,7 +1872,8 @@ message ReportDefinition { // // Corresponds to "Bidder" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `STRING` BIDDER_NAME = 494; @@ -1901,6 +2161,50 @@ message ReportDefinition { // Data format: `STRING` CLASSIFIED_BRAND_NAME = 244; + // ID of the video content bundle served. + // + // + // + // Corresponds to "Content bundle ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `IDENTIFIER` + CONTENT_BUNDLE_ID = 460; + + // Name of the video content bundle served. + // + // + // + // Corresponds to "Content bundle" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + CONTENT_BUNDLE_NAME = 461; + + // ID of the video content metadata namespace served. + // + // + // + // Corresponds to "CMS metadata key ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `IDENTIFIER` + CONTENT_CMS_METADATA_KV_NAMESPACE_ID = 462; + + // Name of the video content metadata namespace served. + // + // + // + // Corresponds to "CMS metadata key" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + CONTENT_CMS_METADATA_KV_NAMESPACE_NAME = 463; + // The display name of the CMS content. // // @@ -2107,7 +2411,7 @@ message ReportDefinition { // Data format: `STRING` CREATIVE_POLICIES_FILTERING_NAME = 712; - // Creative Protections filtering (Publisher Blocks Enforcement). + // Creative Protections filtering. // // // @@ -2167,7 +2471,7 @@ message ReportDefinition { // Data format: `ENUM` CREATIVE_TECHNOLOGY = 148; - // Creative technology locallized name + // Creative technology localized name // // // @@ -2345,7 +2649,7 @@ message ReportDefinition { // Corresponds to "Date" in the Ad Manager UI. // // Compatible with the following report types: `HISTORICAL`, `REACH`, - // `PRIVACY_AND_MESSAGING`, `AD_SPEED` + // `PRIVACY_AND_MESSAGING`, `REVENUE_VERIFICATION`, `AD_SPEED` // // Data format: `DATE` DATE = 3; @@ -2439,7 +2743,7 @@ message ReportDefinition { // API fields). // // Compatible with the following report types: `HISTORICAL`, `REACH`, - // `AD_SPEED` + // `REVENUE_VERIFICATION`, `AD_SPEED` // // Data format: `ENUM` DEMAND_CHANNEL = 9; @@ -2451,7 +2755,7 @@ message ReportDefinition { // Corresponds to "Demand channel" in the Ad Manager UI. // // Compatible with the following report types: `HISTORICAL`, `REACH`, - // `AD_SPEED` + // `REVENUE_VERIFICATION`, `AD_SPEED` // // Data format: `STRING` DEMAND_CHANNEL_NAME = 10; @@ -2595,7 +2899,7 @@ message ReportDefinition { // Compatible with the following report types: `HISTORICAL` // // Data format: `STRING` - DEVICE_NAME = 225; + DEVICE_NAME = 225 [deprecated = true]; // The ID of DSP Seat // @@ -3161,6 +3465,17 @@ message ReportDefinition { // Data format: `STRING` KEY_VALUES_NAME = 215; + // The custom criteria key-values specified in ad requests. + // + // + // + // Corresponds to "Key-values" in the Ad Manager UI. + // + // Compatible with the following report types: + // + // Data format: `STRING_LIST` + KEY_VALUES_SET = 713; + // The agency of the order associated with the line item. // // @@ -3183,7 +3498,7 @@ message ReportDefinition { // Data format: `BOOLEAN` LINE_ITEM_ARCHIVED = 188; - // Line item comanion delivery option ENUM value. + // Line item companion delivery option ENUM value. // // // @@ -3195,7 +3510,7 @@ message ReportDefinition { // Data format: `ENUM` LINE_ITEM_COMPANION_DELIVERY_OPTION = 204; - // Localized line item comanion delivery option name. + // Localized line item companion delivery option name. // // // @@ -3597,7 +3912,7 @@ message ReportDefinition { // Data format: `MONEY` LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98; - // Whether a Line item is eligible for opitimization. + // Whether a Line item is eligible for optimization. // // // @@ -4095,7 +4410,8 @@ message ReportDefinition { // Corresponds to "Rendering SDK value" in the Ad Manager UI (when showing // API fields). // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `ENUM` MOBILE_RENDERING_SDK = 646; @@ -4106,7 +4422,8 @@ message ReportDefinition { // // Corresponds to "Rendering SDK" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `STRING` MOBILE_RENDERING_SDK_NAME = 647; @@ -4151,7 +4468,7 @@ message ReportDefinition { // Corresponds to "Month and year" in the Ad Manager UI. // // Compatible with the following report types: `HISTORICAL`, `REACH`, - // `PRIVACY_AND_MESSAGING` + // `PRIVACY_AND_MESSAGING`, `REVENUE_VERIFICATION`, `PARTNER_FINANCE` // // Data format: `INTEGER` MONTH_YEAR = 6; @@ -4646,27 +4963,75 @@ message ReportDefinition { // Data format: `STRING` PAGE_TITLE_AND_SCREEN_NAME = 513; - // Placement ID + // The ID of a partner management assignment. // // // - // Corresponds to "Placement ID" in the Ad Manager UI. + // Corresponds to "Partner management assignment ID" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL`, `REACH` + // Compatible with the following report types: `HISTORICAL`, + // `PARTNER_FINANCE` // - // Data format: `IDENTIFIER` - PLACEMENT_ID = 113; + // Data format: `INTEGER` + PARTNER_MANAGEMENT_ASSIGNMENT_ID = 657; - // The full list of placement IDs associated with the ad unit. + // The name of a partner management assignment. // // // - // Corresponds to "Placement ID (all)" in the Ad Manager UI. + // Corresponds to "Partner management assignment" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL`, `REACH` + // Compatible with the following report types: `HISTORICAL`, + // `PARTNER_FINANCE` // - // Data format: `IDENTIFIER_LIST` - PLACEMENT_ID_ALL = 144; + // Data format: `STRING` + PARTNER_MANAGEMENT_ASSIGNMENT_NAME = 658; + + // The ID of a partner in a partner management assignment. + // + // + // + // Corresponds to "Partner management partner ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL`, + // `PARTNER_FINANCE` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_PARTNER_ID = 655; + + // The name of a partner in a partner management assignment. + // + // + // + // Corresponds to "Partner management partner" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL`, + // `PARTNER_FINANCE` + // + // Data format: `STRING` + PARTNER_MANAGEMENT_PARTNER_NAME = 656; + + // Placement ID + // + // + // + // Corresponds to "Placement ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL`, `REACH` + // + // Data format: `IDENTIFIER` + PLACEMENT_ID = 113; + + // The full list of placement IDs associated with the ad unit. + // + // + // + // Corresponds to "Placement ID (all)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL`, `REACH` + // + // Data format: `IDENTIFIER_LIST` + PLACEMENT_ID_ALL = 144; // Placement name // @@ -4860,7 +5225,8 @@ message ReportDefinition { // Corresponds to "Programmatic channel value" in the Ad Manager UI (when // showing API fields). // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, + // `REVENUE_VERIFICATION` // // Data format: `ENUM` PROGRAMMATIC_CHANNEL = 13; @@ -4872,7 +5238,8 @@ message ReportDefinition { // // Corresponds to "Programmatic channel" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL`, `REACH` + // Compatible with the following report types: `HISTORICAL`, `REACH`, + // `REVENUE_VERIFICATION` // // Data format: `STRING` PROGRAMMATIC_CHANNEL_NAME = 14; @@ -5165,7 +5532,7 @@ message ReportDefinition { // Data format: `ENUM` REQUEST_TYPE = 146; - // Request type locallized name + // Request type localized name // // // @@ -5176,6 +5543,17 @@ message ReportDefinition { // Data format: `STRING` REQUEST_TYPE_NAME = 147; + // Revenue Verification bidder-provided ID. + // + // + // + // Corresponds to "Revenue verification ID" in the Ad Manager UI. + // + // Compatible with the following report types: `REVENUE_VERIFICATION` + // + // Data format: `IDENTIFIER` + REVENUE_VERIFICATION_ID = 645; + // Indicates if a request was eligible for server-side unwrapping. // // @@ -5397,6 +5775,29 @@ message ReportDefinition { // Data format: `IDENTIFIER` URL_ID = 507; + // The choice made in a user message. + // + // + // + // Corresponds to "User choice value" in the Ad Manager UI (when showing API + // fields). + // + // Compatible with the following report types: `PRIVACY_AND_MESSAGING` + // + // Data format: `ENUM` + USER_MESSAGES_CHOICE = 702; + + // Localized name of the choice made in a user message. + // + // + // + // Corresponds to "User choice" in the Ad Manager UI. + // + // Compatible with the following report types: `PRIVACY_AND_MESSAGING` + // + // Data format: `STRING` + USER_MESSAGES_CHOICE_NAME = 703; + // Enum value for the entitlement source. // // @@ -5639,6 +6040,73 @@ message ReportDefinition { // Data format: `STRING` VIDEO_FALLBACK_POSITION = 530; + // The duration of the ad break in seconds for a live stream event. + // + // + // + // Corresponds to "Ad break duration (seconds)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_DURATION = 547; + + // The ID of the ad break in a live stream event. + // + // + // + // Corresponds to "Live stream ad break ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_ID = 548; + + // The name of the ad break in a live stream event. + // + // + // + // Corresponds to "Live stream ad break" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_NAME = 549; + + // The time of the ad break in a live stream event in the format of + // YYYY-MM-DD HH:MM:SS+Timezone. + // + // + // + // Corresponds to "Ad break time" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `TIMESTAMP` + VIDEO_LIVE_STREAM_EVENT_AD_BREAK_TIME = 550; + + // The ID of the live stream event. + // + // + // + // Corresponds to "Live stream ID" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_LIVE_STREAM_EVENT_ID = 551; + + // The name of the live stream event. + // + // + // + // Corresponds to "Live stream" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + VIDEO_LIVE_STREAM_EVENT_NAME = 552; + // The performance of the video ad inventory broken out by source. // // @@ -5754,6 +6222,17 @@ message ReportDefinition { // Data format: `STRING` VIDEO_STITCHER_TYPE_NAME = 753; + // Web property code + // + // + // + // Corresponds to "Web property code" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `STRING` + WEB_PROPERTY_CODE = 730; + // Breaks down reporting data by week of the year. // // @@ -5847,7 +6326,7 @@ message ReportDefinition { // Data format: `ENUM` YOUTUBE_AD_TYPE = 399; - // YouTube instream Ad Type locallized name. + // YouTube instream Ad Type localized name. // // // @@ -7694,7 +8173,7 @@ message ReportDefinition { // The ratio of matched ad requests served by the Ad Exchange that // resulted in users clicking on an ad. The clickthrough rate (CTR) is // updated nightly. Ad Exchange Matched Request CTR is calculated as: - // (Ad Exchange clicks / Ad Exchange Macthed Ad Requests). + // (Ad Exchange clicks / Ad Exchange Matched Ad Requests). // // // @@ -8263,6 +8742,32 @@ message ReportDefinition { // Data format: `INTEGER` AD_SERVER_INACTIVE_BEGIN_TO_RENDER_IMPRESSIONS = 338; + // Total number of ad server VAST errors discounting errors generated from + // video fallback ads. + // + // + // + // Corresponds to "Ad Server opportunities from errors" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AD_SERVER_OPPORTUNITIES_FROM_ERRORS = 461; + + // Total number of ad server impressions discounting video fallback + // impressions. + // + // + // + // Corresponds to "Ad Server opportunities from impressions" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + AD_SERVER_OPPORTUNITIES_FROM_IMPRESSIONS = 462; + // Ratio of clicks delivered by the Google Ad Manager server in relation to // the total clicks delivered. // @@ -8584,7 +9089,7 @@ message ReportDefinition { // // // - // Corresponds to "Header bidding trafficking ad requests with no bids" in + // Corresponds to "Ad requests with no header bidding trafficking bids" in // the Ad Manager UI. // // Compatible with the following report types: @@ -8623,7 +9128,7 @@ message ReportDefinition { // // // - // Corresponds to "Header bidding trafficking ad requests with bids" in the + // Corresponds to "Ad requests with header bidding trafficking bids" in the // Ad Manager UI. // // Compatible with the following report types: @@ -8647,7 +9152,8 @@ message ReportDefinition { // // // - // Corresponds to "Creative not retrieved" in the Ad Manager UI. + // Corresponds to "Line items with no creative retrieved" in the Ad Manager + // UI. // // Compatible with the following report types: // @@ -8683,7 +9189,7 @@ message ReportDefinition { // // // - // Corresponds to "Not selected to compete" in the Ad Manager UI. + // Corresponds to "Line items not selected to compete" in the Ad Manager UI. // // Compatible with the following report types: // @@ -8758,8 +9264,8 @@ message ReportDefinition { // // // - // Corresponds to "Mediation requests with no partners" in the Ad Manager - // UI. + // Corresponds to "Ad requests with no targeted mediation partners" in the + // Ad Manager UI. // // Compatible with the following report types: // @@ -9099,7 +9605,8 @@ message ReportDefinition { // // // - // Corresponds to "Total ad requests (ATN)" in the Ad Manager UI. + // Corresponds to "Total ad requests (Ads traffic navigator)" in the Ad + // Manager UI. // // Compatible with the following report types: // @@ -9151,6 +9658,17 @@ message ReportDefinition { // Data format: `INTEGER` ATN_YIELD_GROUP_MEDIATION_PASSBACKS = 390; + // Cost of the audience segment. + // + // + // + // Corresponds to "Audience segment cost" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `MONEY` + AUDIENCE_SEGMENT_COST = 558; + // eCPM averaged across the Google Ad Manager server, AdSense, // and Ad Exchange. // @@ -9170,7 +9688,7 @@ message ReportDefinition { // // Corresponds to "Total average eCPM w/o CPD" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, `AD_SPEED` // // Data format: `MONEY` AVERAGE_ECPM_WITHOUT_CPD = 5; @@ -9282,7 +9800,7 @@ message ReportDefinition { // // Corresponds to "Total clicks" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, `AD_SPEED` // // Data format: `INTEGER` CLICKS = 2; @@ -9395,7 +9913,7 @@ message ReportDefinition { // // Corresponds to "Total CTR" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, `AD_SPEED` // // Data format: `PERCENT` CTR = 3; @@ -9859,7 +10377,7 @@ message ReportDefinition { // // Corresponds to "Total impressions" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, `AD_SPEED` // // Data format: `INTEGER` IMPRESSIONS = 1; @@ -9980,6 +10498,176 @@ message ReportDefinition { // Data format: `INTEGER` OVERDELIVERED_IMPRESSIONS = 432; + // The gross revenue for partner finance reports. + // + // + // + // Corresponds to "Gross revenue" in the Ad Manager UI. + // + // Compatible with the following report types: `PARTNER_FINANCE` + // + // Data format: `MONEY` + PARTNER_FINANCE_GROSS_REVENUE = 648; + + // Monthly host eCPM for partner finance reports + // + // + // + // Corresponds to "Host eCPM" in the Ad Manager UI. + // + // Compatible with the following report types: `PARTNER_FINANCE` + // + // Data format: `MONEY` + PARTNER_FINANCE_HOST_ECPM = 649; + + // The host impressions for partner finance reports. + // + // + // + // Corresponds to "Host impressions" in the Ad Manager UI. + // + // Compatible with the following report types: `PARTNER_FINANCE` + // + // Data format: `INTEGER` + PARTNER_FINANCE_HOST_IMPRESSIONS = 650; + + // Monthly host revenue for partner finance reports + // + // + // + // Corresponds to "Host revenue" in the Ad Manager UI. + // + // Compatible with the following report types: `PARTNER_FINANCE` + // + // Data format: `MONEY` + PARTNER_FINANCE_HOST_REVENUE = 651; + + // Monthly partner eCPM for partner finance reports + // + // + // + // Corresponds to "Partner eCPM" in the Ad Manager UI. + // + // Compatible with the following report types: `PARTNER_FINANCE` + // + // Data format: `MONEY` + PARTNER_FINANCE_PARTNER_ECPM = 652; + + // Monthly partner revenue for partner finance reports + // + // + // + // Corresponds to "Partner revenue" in the Ad Manager UI. + // + // Compatible with the following report types: `PARTNER_FINANCE` + // + // Data format: `MONEY` + PARTNER_FINANCE_PARTNER_REVENUE = 653; + + // The gross revenue in the partner management. + // + // + // + // Corresponds to "Partner management gross revenue" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `MONEY` + PARTNER_MANAGEMENT_GROSS_REVENUE = 533; + + // The host clicks in the partner management. + // + // + // + // Corresponds to "Partner management host clicks" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_HOST_CLICKS = 534; + + // The host CTR in the partner management. + // + // + // + // Corresponds to "Partner management host CTR" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `PERCENT` + PARTNER_MANAGEMENT_HOST_CTR = 535; + + // The host impressions in the partner management. + // + // + // + // Corresponds to "Partner management host impressions" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_HOST_IMPRESSIONS = 536; + + // The partner clicks in the partner management. + // + // + // + // Corresponds to "Partner management partner clicks" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_PARTNER_CLICKS = 537; + + // The partner CTR in the partner management. + // + // + // + // Corresponds to "Partner management partner CTR" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `PERCENT` + PARTNER_MANAGEMENT_PARTNER_CTR = 538; + + // The partner impressions in the partner management. + // + // + // + // Corresponds to "Partner management partner impressions" in the Ad Manager + // UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_PARTNER_IMPRESSIONS = 539; + + // The total content views in the partner management. + // + // + // + // Corresponds to "Partner management total monetizable content views" in + // the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_TOTAL_CONTENT_VIEWS = 540; + + // The unfilled impressions in the partner management. + // + // + // + // Corresponds to "Partner management unfilled impressions" in the Ad + // Manager UI. + // + // Compatible with the following report types: `HISTORICAL`, + // `PARTNER_FINANCE` + // + // Data format: `INTEGER` + PARTNER_MANAGEMENT_UNFILLED_IMPRESSIONS = 541; + // The number of filled pod requests (filled by partner or Google) in // partner sales. // @@ -10170,7 +10858,7 @@ message ReportDefinition { // // Corresponds to "Total revenue" in the Ad Manager UI. // - // Compatible with the following report types: `HISTORICAL` + // Compatible with the following report types: `HISTORICAL`, `AD_SPEED` // // Data format: `MONEY` REVENUE = 36; @@ -10189,7 +10877,63 @@ message ReportDefinition { // Data format: `MONEY` REVENUE_PAID_THROUGH_MCM_AUTOPAYMENT = 214; - // Total amount of revenue (excluding CPD) based on the number of units + // The total CPD net revenue for Revenue Verification reporting. + // + // + // + // Corresponds to "Total CPD revenue" in the Ad Manager UI. + // + // Compatible with the following report types: `REVENUE_VERIFICATION` + // + // Data format: `MONEY` + REVENUE_VERIFICATION_CPD_REVENUE = 560; + + // The total CPD gross revenue for Revenue Verification reporting. + // + // + // + // Corresponds to "Total CPD revenue (gross)" in the Ad Manager UI. + // + // Compatible with the following report types: `REVENUE_VERIFICATION` + // + // Data format: `MONEY` + REVENUE_VERIFICATION_GROSS_CPD_REVENUE = 559; + + // The total gross revenue (excluding CPD) for Revenue Verification + // reporting. + // + // + // + // Corresponds to "Total CPM and CPC revenue (gross)" in the Ad Manager UI. + // + // Compatible with the following report types: `REVENUE_VERIFICATION` + // + // Data format: `MONEY` + REVENUE_VERIFICATION_GROSS_REVENUE_WITHOUT_CPD = 561; + + // The total impressions for Revenue Verification reporting. + // + // + // + // Corresponds to "Total impressions" in the Ad Manager UI. + // + // Compatible with the following report types: `REVENUE_VERIFICATION` + // + // Data format: `INTEGER` + REVENUE_VERIFICATION_IMPRESSIONS = 564; + + // The total net revenue (excluding CPD) for Revenue Verification reporting. + // + // + // + // Corresponds to "Total CPM and CPC revenue" in the Ad Manager UI. + // + // Compatible with the following report types: `REVENUE_VERIFICATION` + // + // Data format: `MONEY` + REVENUE_VERIFICATION_REVENUE_WITHOUT_CPD = 567; + + // Total revenue (excluding CPD) based on the number of units // served by the Google Ad Manager server, AdSense, Ad Exchange, and // third-party Mediation networks. // @@ -10926,17 +11670,6 @@ message ReportDefinition { // Data format: `INTEGER` USER_MESSAGES_ALLOW_ADS_PAGEVIEWS = 489; - // Number of times a US state regulations message was shown to users. - // - // - // - // Corresponds to "US states messages shown" in the Ad Manager UI. - // - // Compatible with the following report types: `PRIVACY_AND_MESSAGING` - // - // Data format: `INTEGER` - USER_MESSAGES_CCPA_MESSAGES_SHOWN = 490; - // Number of iOS ATT alerts that were triggered by an IDFA message (IDFA // messages can be IDFA explainers or GDPR messages). // @@ -11101,6 +11834,28 @@ message ReportDefinition { // Data format: `PERCENT` USER_MESSAGES_UPTC_PERSONALIZATION_OPT_OUT_RATIO = 502; + // Number of times a US state regulations message was shown to users. + // + // + // + // Corresponds to "US states messages shown" in the Ad Manager UI. + // + // Compatible with the following report types: `PRIVACY_AND_MESSAGING` + // + // Data format: `INTEGER` + USER_MESSAGES_US_STATES_MESSAGES_SHOWN = 490; + + // Number of times users selected the opt-out option in a US states message. + // + // + // + // Corresponds to "US states opt-out selections" in the Ad Manager UI. + // + // Compatible with the following report types: `PRIVACY_AND_MESSAGING` + // + // Data format: `INTEGER` + USER_MESSAGES_US_STATES_OPT_OUT_SELECTIONS = 586; + // The number of errors of type 100 in reporting. // // @@ -11995,6 +12750,120 @@ message ReportDefinition { // Data format: `INTEGER` VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141; + // The total number of breaks completed or fatal errors for the last ad in + // the pod. + // + // + // + // Corresponds to "Break end" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_END = 279; + + // The total number of breaks starts or errors for the first ad in a pod + // that users made it to. + // + // + // + // Corresponds to "Break start" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_BREAK_START = 280; + + // The number of video ad opportunities reached by a user (rounded down, or + // capped based on your max ads setting, whichever is less). + // + // + // + // Corresponds to "Capped opportunities (adbreak)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_CAPPED_OPPORTUNITIES_ADBREAK = 281; + + // The total number of seconds available to be filled. + // + // + // + // Corresponds to "Total duration (adbreak)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_DURATION_ADBREAK = 283; + + // The total number of seconds filled. + // + // + // + // Corresponds to "Matched duration (adbreak)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_DURATION_ADBREAK = 285; + + // The total matched opportunities in video true opportunities reporting. + // + // + // + // Corresponds to "Matched opportunities (adbreak)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_MATCHED_OPPORTUNITIES_ADBREAK = 287; + + // The number of video ad opportunities reached by a user (rounded down). + // + // + // + // Corresponds to "Viewed opportunities (adbreak)" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_OPPORTUNITIES_TOTAL_VIEWED_OPPORTUNITIES_ADBREAK = 289; + + // The number of TrueView ad impressions viewed. + // + // + // + // Corresponds to "True views" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `INTEGER` + VIDEO_TRUE_VIEWS = 392; + + // Measures the percentage of skips. + // + // + // + // Corresponds to "True views skip rate" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `PERCENT` + VIDEO_TRUE_VIEW_SKIP_RATE = 393; + + // The view-through rate is the percentage of views divided by number of + // impressions + // + // + // + // Corresponds to "True views view-through rate" in the Ad Manager UI. + // + // Compatible with the following report types: `HISTORICAL` + // + // Data format: `PERCENT` + VIDEO_TRUE_VIEW_VIEW_THROUGH_RATE = 394; + // Number of times that the publisher specified a video ad played // automatically. // diff --git a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_messages.proto b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_messages.proto index 76f1cd167e65..9560974d84eb 100644 --- a/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_messages.proto +++ b/java-admanager/proto-ad-manager-v1/src/main/proto/google/ads/admanager/v1/report_messages.proto @@ -44,6 +44,8 @@ message Report { // The visibility of a report. enum Visibility { + option allow_alias = true; + // Default value. Reports with hidden visibility won't appear in the Ad // Manager UI. HIDDEN = 0; @@ -53,8 +55,11 @@ message Report { DRAFT = 1; // Reports with saved visibility will appear in the Ad Manager UI by - // default. - SAVED = 2; + // default. Alias for VISIBLE and will be replaced in the future. + SAVED = 2 [deprecated = true]; + + // Reports with this visibility will appear in the Ad Manager UI. + VISIBLE = 2; } // Identifier. The resource name of the report. diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetCredentialsProvider.java index 720f27be07bc..fa82fefd84b1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetEndpoint.java index d248cf0c64fa..60956b7356ab 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/AsyncCreateAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/AsyncCreateAdBreak.java index 8c0cbb39b19b..ea1b68c35b56 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/AsyncCreateAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/AsyncCreateAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreak.java index 272edee761d5..dad4b30045f1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakLivestreameventnameAdbreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakLivestreameventnameAdbreak.java index 8e847aa0ec46..ce0fde181cea 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakLivestreameventnameAdbreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakLivestreameventnameAdbreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakStringAdbreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakStringAdbreak.java index 69d62546b4bf..5d7bb8ccd8e2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakStringAdbreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/createadbreak/SyncCreateAdBreakStringAdbreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/AsyncDeleteAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/AsyncDeleteAdBreak.java index 9edb0da252ed..122b3f6fd5fb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/AsyncDeleteAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/AsyncDeleteAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreak.java index 41fd7df59b49..7ff10e2da7fd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakAdbreakname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakAdbreakname.java index 4a1f04bd10c6..39a00e1b9ec4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakAdbreakname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakAdbreakname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakString.java index fbf023234635..511056e75a57 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/deleteadbreak/SyncDeleteAdBreakString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/AsyncGetAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/AsyncGetAdBreak.java index 662222052d34..21569c7be00f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/AsyncGetAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/AsyncGetAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreak.java index d6f3628805ce..0b23c532c8b4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakAdbreakname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakAdbreakname.java index 6fb90ebf5f13..6b1b00d19526 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakAdbreakname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakAdbreakname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakString.java index de72b7834a19..06aa401c4737 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/getadbreak/SyncGetAdBreakString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaks.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaks.java index d604f687edb8..16f35527dc91 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaks.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaksPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaksPaged.java index d7902d0d2f5a..b13c5f681fee 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaksPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/AsyncListAdBreaksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaks.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaks.java index bd065eee75a5..dac6822ebf6b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaks.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksLivestreameventname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksLivestreameventname.java index 0b63b380eb83..4f03a3c95103 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksLivestreameventname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksLivestreameventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksString.java index df96f4fcc7f4..5da9f58fd7b8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/listadbreaks/SyncListAdBreaksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/AsyncUpdateAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/AsyncUpdateAdBreak.java index aba96c323d15..133d1e518aaa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/AsyncUpdateAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/AsyncUpdateAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreak.java index 610e0d6387f6..f51adb3cfd98 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreakAdbreakFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreakAdbreakFieldmask.java index 696aeeb89cb1..a451e5b8c854 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreakAdbreakFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservice/updateadbreak/SyncUpdateAdBreakAdbreakFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservicesettings/getadbreak/SyncGetAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservicesettings/getadbreak/SyncGetAdBreak.java index 6fd4afd800bd..7fb2da925d66 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservicesettings/getadbreak/SyncGetAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adbreakservicesettings/getadbreak/SyncGetAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAds.java index 52a04811a036..bbf108efc279 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAdsLRO.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAdsLRO.java index 0461805caed2..297901ee9bae 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAdsLRO.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/AsyncBatchAllowAdReviewCenterAdsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java index d95f6b4f0a2c..03b613a9eeed 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsString.java index 613317aff47a..86d9e3157c72 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsWebpropertyname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsWebpropertyname.java index ff0e22e7a592..e850c18c995e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsWebpropertyname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAdsWebpropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAds.java index 63f48bc9ec4b..ba5cac1a0d32 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAdsLRO.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAdsLRO.java index 6c1eb5350918..72f7541877ec 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAdsLRO.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/AsyncBatchBlockAdReviewCenterAdsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAds.java index 1217821da18d..2da4ff7d250c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsString.java index e0c9d4bbe6fa..842d94bb7ade 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsWebpropertyname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsWebpropertyname.java index 5ef7412d96fc..d3f105d64da6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsWebpropertyname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/batchblockadreviewcenterads/SyncBatchBlockAdReviewCenterAdsWebpropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetCredentialsProvider.java index 2578c72e14de..6a0513517832 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetEndpoint.java index 839e11f90618..636187d0d5de 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAds.java index b927d8bc8363..6210a3b0a0ff 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAdsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAdsPaged.java index 70dc954f1b01..d76b64d9475e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAdsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/AsyncSearchAdReviewCenterAdsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java index dfe5d05d87dd..8487f6719bcc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsString.java index 8d70767cdc23..460cdafc37d6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsWebpropertyname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsWebpropertyname.java index a71e5c7d2477..621af2abdcfa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsWebpropertyname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservice/searchadreviewcenterads/SyncSearchAdReviewCenterAdsWebpropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java index 67ea9cdfaf60..856bf9b10eb5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java index 1aef3b87b5a4..a37050c215ce 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adreviewcenteradservicesettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/AsyncBatchActivateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/AsyncBatchActivateAdUnits.java new file mode 100644 index 000000000000..4adb4f07a737 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/AsyncBatchActivateAdUnits.java @@ -0,0 +1,52 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchActivateAdUnits_async] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchActivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchActivateAdUnits { + + public static void main(String[] args) throws Exception { + asyncBatchActivateAdUnits(); + } + + public static void asyncBatchActivateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchActivateAdUnitsRequest request = + BatchActivateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + ApiFuture future = + adUnitServiceClient.batchActivateAdUnitsCallable().futureCall(request); + // Do something. + BatchActivateAdUnitsResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchActivateAdUnits_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnits.java new file mode 100644 index 000000000000..dcf7d9319d8b --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnits.java @@ -0,0 +1,48 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchActivateAdUnits_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchActivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchActivateAdUnits { + + public static void main(String[] args) throws Exception { + syncBatchActivateAdUnits(); + } + + public static void syncBatchActivateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchActivateAdUnitsRequest request = + BatchActivateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + BatchActivateAdUnitsResponse response = adUnitServiceClient.batchActivateAdUnits(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchActivateAdUnits_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnitsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnitsNetworknameListstring.java new file mode 100644 index 000000000000..2d238c97a94f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnitsNetworknameListstring.java @@ -0,0 +1,46 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchActivateAdUnits_NetworknameListstring_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchActivateAdUnitsNetworknameListstring { + + public static void main(String[] args) throws Exception { + syncBatchActivateAdUnitsNetworknameListstring(); + } + + public static void syncBatchActivateAdUnitsNetworknameListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + BatchActivateAdUnitsResponse response = + adUnitServiceClient.batchActivateAdUnits(parent, names); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchActivateAdUnits_NetworknameListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnitsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnitsStringListstring.java new file mode 100644 index 000000000000..72761891906f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchactivateadunits/SyncBatchActivateAdUnitsStringListstring.java @@ -0,0 +1,46 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchActivateAdUnits_StringListstring_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchActivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchActivateAdUnitsStringListstring { + + public static void main(String[] args) throws Exception { + syncBatchActivateAdUnitsStringListstring(); + } + + public static void syncBatchActivateAdUnitsStringListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List names = new ArrayList<>(); + BatchActivateAdUnitsResponse response = + adUnitServiceClient.batchActivateAdUnits(parent, names); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchActivateAdUnits_StringListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/AsyncBatchArchiveAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/AsyncBatchArchiveAdUnits.java new file mode 100644 index 000000000000..b964b5e2af5f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/AsyncBatchArchiveAdUnits.java @@ -0,0 +1,52 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_async] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchArchiveAdUnits { + + public static void main(String[] args) throws Exception { + asyncBatchArchiveAdUnits(); + } + + public static void asyncBatchArchiveAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchArchiveAdUnitsRequest request = + BatchArchiveAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + ApiFuture future = + adUnitServiceClient.batchArchiveAdUnitsCallable().futureCall(request); + // Do something. + BatchArchiveAdUnitsResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnits.java new file mode 100644 index 000000000000..eee9b201ebd4 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnits.java @@ -0,0 +1,48 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsRequest; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchArchiveAdUnits { + + public static void main(String[] args) throws Exception { + syncBatchArchiveAdUnits(); + } + + public static void syncBatchArchiveAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchArchiveAdUnitsRequest request = + BatchArchiveAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + BatchArchiveAdUnitsResponse response = adUnitServiceClient.batchArchiveAdUnits(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnitsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnitsNetworknameListstring.java new file mode 100644 index 000000000000..9e5b8afea0a4 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnitsNetworknameListstring.java @@ -0,0 +1,45 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_NetworknameListstring_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchArchiveAdUnitsNetworknameListstring { + + public static void main(String[] args) throws Exception { + syncBatchArchiveAdUnitsNetworknameListstring(); + } + + public static void syncBatchArchiveAdUnitsNetworknameListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + BatchArchiveAdUnitsResponse response = adUnitServiceClient.batchArchiveAdUnits(parent, names); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_NetworknameListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnitsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnitsStringListstring.java new file mode 100644 index 000000000000..3c9b2ea41edf --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batcharchiveadunits/SyncBatchArchiveAdUnitsStringListstring.java @@ -0,0 +1,45 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_StringListstring_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchArchiveAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchArchiveAdUnitsStringListstring { + + public static void main(String[] args) throws Exception { + syncBatchArchiveAdUnitsStringListstring(); + } + + public static void syncBatchArchiveAdUnitsStringListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List names = new ArrayList<>(); + BatchArchiveAdUnitsResponse response = adUnitServiceClient.batchArchiveAdUnits(parent, names); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchArchiveAdUnits_StringListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/AsyncBatchCreateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/AsyncBatchCreateAdUnits.java new file mode 100644 index 000000000000..5ee248ef7779 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/AsyncBatchCreateAdUnits.java @@ -0,0 +1,53 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchCreateAdUnits_async] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchCreateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchCreateAdUnits { + + public static void main(String[] args) throws Exception { + asyncBatchCreateAdUnits(); + } + + public static void asyncBatchCreateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchCreateAdUnitsRequest request = + BatchCreateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + ApiFuture future = + adUnitServiceClient.batchCreateAdUnitsCallable().futureCall(request); + // Do something. + BatchCreateAdUnitsResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchCreateAdUnits_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnits.java new file mode 100644 index 000000000000..6f121df147b3 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnits.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchCreateAdUnits_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchCreateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchCreateAdUnits { + + public static void main(String[] args) throws Exception { + syncBatchCreateAdUnits(); + } + + public static void syncBatchCreateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchCreateAdUnitsRequest request = + BatchCreateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + BatchCreateAdUnitsResponse response = adUnitServiceClient.batchCreateAdUnits(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchCreateAdUnits_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnitsNetworknameListcreateadunitrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnitsNetworknameListcreateadunitrequest.java new file mode 100644 index 000000000000..23a5dc07771e --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnitsNetworknameListcreateadunitrequest.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchCreateAdUnits_NetworknameListcreateadunitrequest_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchCreateAdUnitsNetworknameListcreateadunitrequest { + + public static void main(String[] args) throws Exception { + syncBatchCreateAdUnitsNetworknameListcreateadunitrequest(); + } + + public static void syncBatchCreateAdUnitsNetworknameListcreateadunitrequest() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + BatchCreateAdUnitsResponse response = + adUnitServiceClient.batchCreateAdUnits(parent, requests); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchCreateAdUnits_NetworknameListcreateadunitrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnitsStringListcreateadunitrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnitsStringListcreateadunitrequest.java new file mode 100644 index 000000000000..d22b7fc75884 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchcreateadunits/SyncBatchCreateAdUnitsStringListcreateadunitrequest.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchCreateAdUnits_StringListcreateadunitrequest_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchCreateAdUnitsResponse; +import com.google.ads.admanager.v1.CreateAdUnitRequest; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchCreateAdUnitsStringListcreateadunitrequest { + + public static void main(String[] args) throws Exception { + syncBatchCreateAdUnitsStringListcreateadunitrequest(); + } + + public static void syncBatchCreateAdUnitsStringListcreateadunitrequest() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List requests = new ArrayList<>(); + BatchCreateAdUnitsResponse response = + adUnitServiceClient.batchCreateAdUnits(parent, requests); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchCreateAdUnits_StringListcreateadunitrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/AsyncBatchDeactivateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/AsyncBatchDeactivateAdUnits.java new file mode 100644 index 000000000000..29c62da5cdfc --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/AsyncBatchDeactivateAdUnits.java @@ -0,0 +1,52 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_async] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchDeactivateAdUnits { + + public static void main(String[] args) throws Exception { + asyncBatchDeactivateAdUnits(); + } + + public static void asyncBatchDeactivateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchDeactivateAdUnitsRequest request = + BatchDeactivateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + ApiFuture future = + adUnitServiceClient.batchDeactivateAdUnitsCallable().futureCall(request); + // Do something. + BatchDeactivateAdUnitsResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnits.java new file mode 100644 index 000000000000..70dbe5f5b109 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnits.java @@ -0,0 +1,48 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchDeactivateAdUnits { + + public static void main(String[] args) throws Exception { + syncBatchDeactivateAdUnits(); + } + + public static void syncBatchDeactivateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchDeactivateAdUnitsRequest request = + BatchDeactivateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + BatchDeactivateAdUnitsResponse response = adUnitServiceClient.batchDeactivateAdUnits(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnitsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnitsNetworknameListstring.java new file mode 100644 index 000000000000..09571cb38679 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnitsNetworknameListstring.java @@ -0,0 +1,46 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_NetworknameListstring_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchDeactivateAdUnitsNetworknameListstring { + + public static void main(String[] args) throws Exception { + syncBatchDeactivateAdUnitsNetworknameListstring(); + } + + public static void syncBatchDeactivateAdUnitsNetworknameListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + BatchDeactivateAdUnitsResponse response = + adUnitServiceClient.batchDeactivateAdUnits(parent, names); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_NetworknameListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnitsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnitsStringListstring.java new file mode 100644 index 000000000000..d3d89a993f71 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchdeactivateadunits/SyncBatchDeactivateAdUnitsStringListstring.java @@ -0,0 +1,46 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_StringListstring_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchDeactivateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchDeactivateAdUnitsStringListstring { + + public static void main(String[] args) throws Exception { + syncBatchDeactivateAdUnitsStringListstring(); + } + + public static void syncBatchDeactivateAdUnitsStringListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List names = new ArrayList<>(); + BatchDeactivateAdUnitsResponse response = + adUnitServiceClient.batchDeactivateAdUnits(parent, names); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchDeactivateAdUnits_StringListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/AsyncBatchUpdateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/AsyncBatchUpdateAdUnits.java new file mode 100644 index 000000000000..0726d7c46e01 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/AsyncBatchUpdateAdUnits.java @@ -0,0 +1,53 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_async] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchUpdateAdUnits { + + public static void main(String[] args) throws Exception { + asyncBatchUpdateAdUnits(); + } + + public static void asyncBatchUpdateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchUpdateAdUnitsRequest request = + BatchUpdateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + ApiFuture future = + adUnitServiceClient.batchUpdateAdUnitsCallable().futureCall(request); + // Do something. + BatchUpdateAdUnitsResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnits.java new file mode 100644 index 000000000000..a4e53f03993b --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnits.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsRequest; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; +import java.util.ArrayList; + +public class SyncBatchUpdateAdUnits { + + public static void main(String[] args) throws Exception { + syncBatchUpdateAdUnits(); + } + + public static void syncBatchUpdateAdUnits() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + BatchUpdateAdUnitsRequest request = + BatchUpdateAdUnitsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + BatchUpdateAdUnitsResponse response = adUnitServiceClient.batchUpdateAdUnits(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnitsNetworknameListupdateadunitrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnitsNetworknameListupdateadunitrequest.java new file mode 100644 index 000000000000..993da6b88674 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnitsNetworknameListupdateadunitrequest.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_NetworknameListupdateadunitrequest_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchUpdateAdUnitsNetworknameListupdateadunitrequest { + + public static void main(String[] args) throws Exception { + syncBatchUpdateAdUnitsNetworknameListupdateadunitrequest(); + } + + public static void syncBatchUpdateAdUnitsNetworknameListupdateadunitrequest() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + BatchUpdateAdUnitsResponse response = + adUnitServiceClient.batchUpdateAdUnits(parent, requests); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_NetworknameListupdateadunitrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnitsStringListupdateadunitrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnitsStringListupdateadunitrequest.java new file mode 100644 index 000000000000..f50912bfe3be --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/batchupdateadunits/SyncBatchUpdateAdUnitsStringListupdateadunitrequest.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_StringListupdateadunitrequest_sync] +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.BatchUpdateAdUnitsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchUpdateAdUnitsStringListupdateadunitrequest { + + public static void main(String[] args) throws Exception { + syncBatchUpdateAdUnitsStringListupdateadunitrequest(); + } + + public static void syncBatchUpdateAdUnitsStringListupdateadunitrequest() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List requests = new ArrayList<>(); + BatchUpdateAdUnitsResponse response = + adUnitServiceClient.batchUpdateAdUnits(parent, requests); + } + } +} +// [END admanager_v1_generated_AdUnitService_BatchUpdateAdUnits_StringListupdateadunitrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetCredentialsProvider.java index 33368c415d70..7ac7f7d10eb7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetEndpoint.java index 2c54b3e980ba..c458b317a9c2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/AsyncCreateAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/AsyncCreateAdUnit.java new file mode 100644 index 000000000000..33708864653e --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/AsyncCreateAdUnit.java @@ -0,0 +1,50 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_CreateAdUnit_async] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.CreateAdUnitRequest; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; + +public class AsyncCreateAdUnit { + + public static void main(String[] args) throws Exception { + asyncCreateAdUnit(); + } + + public static void asyncCreateAdUnit() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + CreateAdUnitRequest request = + CreateAdUnitRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setAdUnit(AdUnit.newBuilder().build()) + .build(); + ApiFuture future = adUnitServiceClient.createAdUnitCallable().futureCall(request); + // Do something. + AdUnit response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_CreateAdUnit_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnit.java new file mode 100644 index 000000000000..0ed769df2d27 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnit.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_CreateAdUnit_sync] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.CreateAdUnitRequest; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncCreateAdUnit { + + public static void main(String[] args) throws Exception { + syncCreateAdUnit(); + } + + public static void syncCreateAdUnit() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + CreateAdUnitRequest request = + CreateAdUnitRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setAdUnit(AdUnit.newBuilder().build()) + .build(); + AdUnit response = adUnitServiceClient.createAdUnit(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_CreateAdUnit_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnitNetworknameAdunit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnitNetworknameAdunit.java new file mode 100644 index 000000000000..dbdeb6f6092d --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnitNetworknameAdunit.java @@ -0,0 +1,43 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_CreateAdUnit_NetworknameAdunit_sync] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncCreateAdUnitNetworknameAdunit { + + public static void main(String[] args) throws Exception { + syncCreateAdUnitNetworknameAdunit(); + } + + public static void syncCreateAdUnitNetworknameAdunit() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + AdUnit adUnit = AdUnit.newBuilder().build(); + AdUnit response = adUnitServiceClient.createAdUnit(parent, adUnit); + } + } +} +// [END admanager_v1_generated_AdUnitService_CreateAdUnit_NetworknameAdunit_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnitStringAdunit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnitStringAdunit.java new file mode 100644 index 000000000000..2a4e76b19ab7 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/createadunit/SyncCreateAdUnitStringAdunit.java @@ -0,0 +1,43 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_CreateAdUnit_StringAdunit_sync] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncCreateAdUnitStringAdunit { + + public static void main(String[] args) throws Exception { + syncCreateAdUnitStringAdunit(); + } + + public static void syncCreateAdUnitStringAdunit() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + AdUnit adUnit = AdUnit.newBuilder().build(); + AdUnit response = adUnitServiceClient.createAdUnit(parent, adUnit); + } + } +} +// [END admanager_v1_generated_AdUnitService_CreateAdUnit_StringAdunit_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/AsyncGetAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/AsyncGetAdUnit.java index 0f2a8707e405..6595805dc0aa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/AsyncGetAdUnit.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/AsyncGetAdUnit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnit.java index 9becd6478a1d..82d4339e675a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnit.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitAdunitname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitAdunitname.java index d615363c71b9..b4f946cabfd6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitAdunitname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitAdunitname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitString.java index f5b725f82d57..fa1770e8d40d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/getadunit/SyncGetAdUnitString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnits.java index c3d8b57b18c3..46a8f0a383d2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnits.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnits.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnitsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnitsPaged.java index af88c263bbbf..6ef2fe1d6221 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnitsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/AsyncListAdUnitsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnits.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnits.java index 6ba71b4564ba..637afa66a99d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnits.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnits.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsNetworkname.java index 6b7dc6bf14c0..bd8eb8321d55 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsString.java index e2a10f0fbd16..5f4b90451ce0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunits/SyncListAdUnitsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizes.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizes.java index c9d4bda55a3d..eada7f724ec1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizes.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizesPaged.java index 2c7236c8e560..b89008fae1c1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/AsyncListAdUnitSizesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizes.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizes.java index cde9c4b83c5a..c6126bcfd670 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizes.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesNetworkname.java index dc5690f46194..e92e8fc89a10 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesString.java index dd7cf409463f..6fc1a2d52518 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/listadunitsizes/SyncListAdUnitSizesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/AsyncUpdateAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/AsyncUpdateAdUnit.java new file mode 100644 index 000000000000..89bc6bff972f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/AsyncUpdateAdUnit.java @@ -0,0 +1,50 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_UpdateAdUnit_async] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; +import com.google.api.core.ApiFuture; +import com.google.protobuf.FieldMask; + +public class AsyncUpdateAdUnit { + + public static void main(String[] args) throws Exception { + asyncUpdateAdUnit(); + } + + public static void asyncUpdateAdUnit() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + UpdateAdUnitRequest request = + UpdateAdUnitRequest.newBuilder() + .setAdUnit(AdUnit.newBuilder().build()) + .setUpdateMask(FieldMask.newBuilder().build()) + .build(); + ApiFuture future = adUnitServiceClient.updateAdUnitCallable().futureCall(request); + // Do something. + AdUnit response = future.get(); + } + } +} +// [END admanager_v1_generated_AdUnitService_UpdateAdUnit_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/SyncUpdateAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/SyncUpdateAdUnit.java new file mode 100644 index 000000000000..685376781730 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/SyncUpdateAdUnit.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_UpdateAdUnit_sync] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.ads.admanager.v1.UpdateAdUnitRequest; +import com.google.protobuf.FieldMask; + +public class SyncUpdateAdUnit { + + public static void main(String[] args) throws Exception { + syncUpdateAdUnit(); + } + + public static void syncUpdateAdUnit() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + UpdateAdUnitRequest request = + UpdateAdUnitRequest.newBuilder() + .setAdUnit(AdUnit.newBuilder().build()) + .setUpdateMask(FieldMask.newBuilder().build()) + .build(); + AdUnit response = adUnitServiceClient.updateAdUnit(request); + } + } +} +// [END admanager_v1_generated_AdUnitService_UpdateAdUnit_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/SyncUpdateAdUnitAdunitFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/SyncUpdateAdUnitAdunitFieldmask.java new file mode 100644 index 000000000000..83a862e29437 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservice/updateadunit/SyncUpdateAdUnitAdunitFieldmask.java @@ -0,0 +1,43 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_AdUnitService_UpdateAdUnit_AdunitFieldmask_sync] +import com.google.ads.admanager.v1.AdUnit; +import com.google.ads.admanager.v1.AdUnitServiceClient; +import com.google.protobuf.FieldMask; + +public class SyncUpdateAdUnitAdunitFieldmask { + + public static void main(String[] args) throws Exception { + syncUpdateAdUnitAdunitFieldmask(); + } + + public static void syncUpdateAdUnitAdunitFieldmask() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (AdUnitServiceClient adUnitServiceClient = AdUnitServiceClient.create()) { + AdUnit adUnit = AdUnit.newBuilder().build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + AdUnit response = adUnitServiceClient.updateAdUnit(adUnit, updateMask); + } + } +} +// [END admanager_v1_generated_AdUnitService_UpdateAdUnit_AdunitFieldmask_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservicesettings/getadunit/SyncGetAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservicesettings/getadunit/SyncGetAdUnit.java index e48a881c500a..7f32082de07a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservicesettings/getadunit/SyncGetAdUnit.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/adunitservicesettings/getadunit/SyncGetAdUnit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetCredentialsProvider.java index 361f8b90252f..a2be51aadc81 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetEndpoint.java index c178fe73341c..79eb08f8ffdf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/AsyncGetApplication.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/AsyncGetApplication.java index 8a4e3ef98bef..902481119cf1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/AsyncGetApplication.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/AsyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplication.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplication.java index d850eba47112..1c4e714a9df3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplication.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationApplicationname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationApplicationname.java index 8b15aa7d2cae..0d93928697ce 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationApplicationname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationApplicationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationString.java index d521abb4adee..126f299c6c98 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/getapplication/SyncGetApplicationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplications.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplications.java index d589e3c1729e..b4832357e5c7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplications.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplicationsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplicationsPaged.java index 7bb180f6129f..fa8a0553428c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplicationsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/AsyncListApplicationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplications.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplications.java index 588ac41bc783..c8adf870c882 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplications.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsNetworkname.java index d6f551065f41..a55d6254dc1a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsString.java index ae30f4458828..bfd53dd3b97c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservice/listapplications/SyncListApplicationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservicesettings/getapplication/SyncGetApplication.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservicesettings/getapplication/SyncGetApplication.java index 1918b01ffcc8..8e69f3e2a6ca 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservicesettings/getapplication/SyncGetApplication.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/applicationservicesettings/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetCredentialsProvider.java index b1c4692f89d3..003be42b7bbc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetEndpoint.java index 4617f2a9ba01..88016d4dea3d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/AsyncGetAudienceSegment.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/AsyncGetAudienceSegment.java index 553915265587..a9fd347a8d26 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/AsyncGetAudienceSegment.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/AsyncGetAudienceSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegment.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegment.java index e825db5e925f..0baa7dd07e26 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegment.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentAudiencesegmentname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentAudiencesegmentname.java index 018784b2be03..c43b1baf016f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentAudiencesegmentname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentAudiencesegmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentString.java index 84a941a12921..88f72e9d1d0d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/getaudiencesegment/SyncGetAudienceSegmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegments.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegments.java index 6f713b66c507..e13ee0b972ef 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegments.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegmentsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegmentsPaged.java index 1cdedcb9970c..d4486d02a097 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegmentsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/AsyncListAudienceSegmentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegments.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegments.java index ba3d6671e852..3eb8b2f987a8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegments.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsNetworkname.java index adf0478b0740..69ea3e6ba6fa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsString.java index 9933bdac343e..927c0af184db 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservice/listaudiencesegments/SyncListAudienceSegmentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservicesettings/getaudiencesegment/SyncGetAudienceSegment.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservicesettings/getaudiencesegment/SyncGetAudienceSegment.java index 1a8d3b7ccfbf..a1db5eb87f6d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservicesettings/getaudiencesegment/SyncGetAudienceSegment.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/audiencesegmentservicesettings/getaudiencesegment/SyncGetAudienceSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetCredentialsProvider.java index 7098c7ba528c..c85842650a08 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetEndpoint.java index 77e07d861613..04b84c88cc85 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/AsyncGetBandwidthGroup.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/AsyncGetBandwidthGroup.java index c13a22416c8f..414855a701d5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/AsyncGetBandwidthGroup.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/AsyncGetBandwidthGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroup.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroup.java index a4ed550cd2ba..89d486a9020d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroup.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupBandwidthgroupname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupBandwidthgroupname.java index 601bf553c1ab..b3242ee7dc36 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupBandwidthgroupname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupBandwidthgroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupString.java index c9970dbd9882..7449a866934f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/getbandwidthgroup/SyncGetBandwidthGroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroups.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroups.java index 3355d0187f90..582782d414c2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroups.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroupsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroupsPaged.java index a9b368f76071..7cf7f2e7e7c9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroupsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/AsyncListBandwidthGroupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroups.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroups.java index dc330dcac81d..d1c2295fedbb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroups.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsNetworkname.java index ba13ec0e6062..ecdf52922f48 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsString.java index 66ee13f9b62f..4336f5ea9b99 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservice/listbandwidthgroups/SyncListBandwidthGroupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservicesettings/getbandwidthgroup/SyncGetBandwidthGroup.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservicesettings/getbandwidthgroup/SyncGetBandwidthGroup.java index f0788f653425..d3ad4dbde224 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservicesettings/getbandwidthgroup/SyncGetBandwidthGroup.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/bandwidthgroupservicesettings/getbandwidthgroup/SyncGetBandwidthGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetCredentialsProvider.java index 62a17980ddf9..0c3863b748c9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetEndpoint.java index 6680dc67b20e..7f7f0f588408 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/AsyncGetBrowserLanguage.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/AsyncGetBrowserLanguage.java index c9a09f031724..fac0ac30a091 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/AsyncGetBrowserLanguage.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/AsyncGetBrowserLanguage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguage.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguage.java index 278152521b4a..dce4ed346bdd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguage.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageBrowserlanguagename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageBrowserlanguagename.java index 6ae49d85094c..9d71754ccc46 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageBrowserlanguagename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageBrowserlanguagename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageString.java index a87236b9b172..6c94c26ddaf4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/getbrowserlanguage/SyncGetBrowserLanguageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguages.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguages.java index bfa05099cdb6..dce09ab41f27 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguages.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguagesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguagesPaged.java index 364177ab3065..5692b9b82db9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguagesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/AsyncListBrowserLanguagesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguages.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguages.java index 7a60a09246be..08c0599e0790 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguages.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesNetworkname.java index 356d772f5b52..ef7e8c79458f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesString.java index 88a0a46de8d3..701ede35c080 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservice/listbrowserlanguages/SyncListBrowserLanguagesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservicesettings/getbrowserlanguage/SyncGetBrowserLanguage.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservicesettings/getbrowserlanguage/SyncGetBrowserLanguage.java index fcffc1a31b74..63674b156cbc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservicesettings/getbrowserlanguage/SyncGetBrowserLanguage.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserlanguageservicesettings/getbrowserlanguage/SyncGetBrowserLanguage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetCredentialsProvider.java index 4d85cb495e95..63a7705761c0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetEndpoint.java index 5942296cc1cb..521a0daaf860 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/AsyncGetBrowser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/AsyncGetBrowser.java index 9b8680ead34f..3cfb9b2f093d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/AsyncGetBrowser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/AsyncGetBrowser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowser.java index aa94beeaaca2..7a62d10b321f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserBrowsername.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserBrowsername.java index 42500a9bfe02..a01d7898825e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserBrowsername.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserBrowsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserString.java index 1f1cc678cfa6..60054e6fe990 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/getbrowser/SyncGetBrowserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsers.java index 7080446ea18b..5d3b48bc11b6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsersPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsersPaged.java index 65a5927ffae7..c4410d855002 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsersPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/AsyncListBrowsersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsers.java index 48efdd81b182..7e5344c65a9e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersNetworkname.java index c40a03f1d8f9..0cd5d45800b0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersString.java index dc37edbec2f5..3fd814724295 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservice/listbrowsers/SyncListBrowsersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservicesettings/getbrowser/SyncGetBrowser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservicesettings/getbrowser/SyncGetBrowser.java index a7d777ce2897..981076b35f49 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservicesettings/getbrowser/SyncGetBrowser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/browserservicesettings/getbrowser/SyncGetBrowser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetCredentialsProvider.java index 1b21008b4148..1683d04e0133 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetEndpoint.java index f3417759c2a2..770bf8e9a422 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/AsyncGetCmsMetadataKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/AsyncGetCmsMetadataKey.java index 24168463abbc..2d3fbed9baf0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/AsyncGetCmsMetadataKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/AsyncGetCmsMetadataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKey.java index 810852e4cbb6..aab82913eb7e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyCmsmetadatakeyname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyCmsmetadatakeyname.java index 1a81e4728f6f..0872bdc57942 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyCmsmetadatakeyname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyCmsmetadatakeyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyString.java index ff8c50162a06..835ec22dcca2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/getcmsmetadatakey/SyncGetCmsMetadataKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeys.java index 9761338a2309..39e385f8589b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeys.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeysPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeysPaged.java index d16221d5e21d..2adad46b8d04 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeysPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/AsyncListCmsMetadataKeysPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeys.java index ff4bf0a252f8..14f590447520 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeys.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysNetworkname.java index 831d52980ac1..79580ac80c3e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysString.java index bb41f5c4252b..ab8f6e505df3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservice/listcmsmetadatakeys/SyncListCmsMetadataKeysString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservicesettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservicesettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java index 13dfd946ae7c..3adba7937849 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservicesettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatakeyservicesettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetCredentialsProvider.java index ddf015fab177..1ce3a55b92d7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetEndpoint.java index 8d74d9e14b3d..e9d9d6f668cd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/AsyncGetCmsMetadataValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/AsyncGetCmsMetadataValue.java index 222c2ca938e0..57e9468c1f60 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/AsyncGetCmsMetadataValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/AsyncGetCmsMetadataValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValue.java index 7b8c1932da79..71919d907e02 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueCmsmetadatavaluename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueCmsmetadatavaluename.java index 767d2cfcd301..c715596e108f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueCmsmetadatavaluename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueCmsmetadatavaluename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueString.java index 99caa793ffa8..f1d38062cf76 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/getcmsmetadatavalue/SyncGetCmsMetadataValueString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValues.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValues.java index 1d579be20b30..e9ac227d13e5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValues.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValuesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValuesPaged.java index 3594ac18ce6e..9db187f9825b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValuesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/AsyncListCmsMetadataValuesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValues.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValues.java index 45c2413ec9d8..5ffb55a17419 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValues.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesNetworkname.java index d9ebdb1ba88c..4d0df291a699 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesString.java index 6517a7462243..ced16ee61fef 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservice/listcmsmetadatavalues/SyncListCmsMetadataValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservicesettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservicesettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java index 599c64254c52..a0232e202fcc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservicesettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/cmsmetadatavalueservicesettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetCredentialsProvider.java index caaa79087cd0..69f2025738ce 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetEndpoint.java index 183e56db87c2..93b34ba61332 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/AsyncGetCompany.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/AsyncGetCompany.java index 705389d70df6..d13b779a404f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/AsyncGetCompany.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/AsyncGetCompany.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompany.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompany.java index be90a46c1e33..3e7a5eb04e27 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompany.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompany.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyCompanyname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyCompanyname.java index bec3743d5b46..055e70d35ce0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyCompanyname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyCompanyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyString.java index fbb5ed569747..78dacbd31b01 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/getcompany/SyncGetCompanyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompanies.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompanies.java index 9824b2ee95d4..5f6877d6b442 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompanies.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompanies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompaniesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompaniesPaged.java index 722b9642250d..67660d624f0d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompaniesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/AsyncListCompaniesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompanies.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompanies.java index c37686b8299c..ff17137a3936 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompanies.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompanies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesNetworkname.java index c512088a7d88..44fac45c28c6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesString.java index e0d64d71e3b8..b718b9316f12 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservice/listcompanies/SyncListCompaniesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservicesettings/getcompany/SyncGetCompany.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservicesettings/getcompany/SyncGetCompany.java index 561e4a8f9ecc..810cd4b2c077 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservicesettings/getcompany/SyncGetCompany.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/companyservicesettings/getcompany/SyncGetCompany.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/AsyncBatchCreateContacts.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/AsyncBatchCreateContacts.java index 0b23bc17eb26..673fb52b7a59 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/AsyncBatchCreateContacts.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/AsyncBatchCreateContacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContacts.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContacts.java index 99ebcda87bc4..ba671c5751d0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContacts.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsNetworknameListcreatecontactrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsNetworknameListcreatecontactrequest.java index 4212fdf1abc0..cd1280ec4cb3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsNetworknameListcreatecontactrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsNetworknameListcreatecontactrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsStringListcreatecontactrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsStringListcreatecontactrequest.java index 7e8eac3e8690..012a21d76ba7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsStringListcreatecontactrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchcreatecontacts/SyncBatchCreateContactsStringListcreatecontactrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/AsyncBatchUpdateContacts.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/AsyncBatchUpdateContacts.java index 9d63f727de92..ba2eee5b42c3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/AsyncBatchUpdateContacts.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/AsyncBatchUpdateContacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContacts.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContacts.java index ccd683df1455..c30fef9a8ac8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContacts.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsNetworknameListupdatecontactrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsNetworknameListupdatecontactrequest.java index f89e64e18735..4e6015b2baf8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsNetworknameListupdatecontactrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsNetworknameListupdatecontactrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsStringListupdatecontactrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsStringListupdatecontactrequest.java index 5e06d776bb78..f146c1c44c57 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsStringListupdatecontactrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/batchupdatecontacts/SyncBatchUpdateContactsStringListupdatecontactrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetCredentialsProvider.java index 6af32ba486d3..d3522f398c22 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetEndpoint.java index f460a70fff8b..e8822e72eb86 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/AsyncCreateContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/AsyncCreateContact.java index 2e03aff66de0..5177685172d2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/AsyncCreateContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/AsyncCreateContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContact.java index abaa16248c28..53f35285b120 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactNetworknameContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactNetworknameContact.java index 8f9c7bbbfa00..206106e40f00 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactNetworknameContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactNetworknameContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactStringContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactStringContact.java index 2b455f65ebaf..a3fda3ee6d7c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactStringContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/createcontact/SyncCreateContactStringContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/AsyncGetContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/AsyncGetContact.java index 3811ee6ccac6..ee77fc3815cb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/AsyncGetContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/AsyncGetContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContact.java index b911440d32ef..9a5bef91d503 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactContactname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactContactname.java index f0fb69d23c25..d599e4c0b3b8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactContactname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactContactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactString.java index abc742cfa0ba..0f413b024eb4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/getcontact/SyncGetContactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContacts.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContacts.java index 328c8aea5b2c..fdd5c881b91b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContacts.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContactsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContactsPaged.java index 0671cbb6ff2c..0e39b14069b1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContactsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/AsyncListContactsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContacts.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContacts.java index 7394ae0059f1..69e43293296c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContacts.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsNetworkname.java index 1d42f2f9bdf8..a3523ded72c2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsString.java index dae599ed4f5d..38a40819680b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/listcontacts/SyncListContactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/AsyncUpdateContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/AsyncUpdateContact.java index 074412f04e76..ced2f3c9ea24 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/AsyncUpdateContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/AsyncUpdateContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContact.java index 9f10085c8ef4..0f838d9e9046 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContactContactFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContactContactFieldmask.java index 039056b23891..2cf0a2fec570 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContactContactFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservice/updatecontact/SyncUpdateContactContactFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservicesettings/getcontact/SyncGetContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservicesettings/getcontact/SyncGetContact.java index 22f33919cb7b..f6385902a5cc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservicesettings/getcontact/SyncGetContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contactservicesettings/getcontact/SyncGetContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetCredentialsProvider.java index 2fb912d7142d..f97e2ac230f9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetEndpoint.java index 5cf84ed23dce..e2f4192ec981 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/AsyncGetContentBundle.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/AsyncGetContentBundle.java index 23d3feaafd8d..ca70dc8b1c89 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/AsyncGetContentBundle.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/AsyncGetContentBundle.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundle.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundle.java index addf70ea3ad7..8b99dc4aa1fc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundle.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundle.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleContentbundlename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleContentbundlename.java index 7a8e4a78306e..bf4fab8ecb7a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleContentbundlename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleContentbundlename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleString.java index 54112d505e98..5fe1ae7a4079 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/getcontentbundle/SyncGetContentBundleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundles.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundles.java index 07c8222dee92..abbed1221d59 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundles.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundlesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundlesPaged.java index b8736b952724..d5e8f069016a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundlesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/AsyncListContentBundlesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundles.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundles.java index c22841531153..4a71c0597a47 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundles.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesNetworkname.java index 115579c1ad53..73fe3cdf7491 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesString.java index a6e9a6d02171..12a21dc929e0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservice/listcontentbundles/SyncListContentBundlesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservicesettings/getcontentbundle/SyncGetContentBundle.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservicesettings/getcontentbundle/SyncGetContentBundle.java index e00befabf68b..c990d1518479 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservicesettings/getcontentbundle/SyncGetContentBundle.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentbundleservicesettings/getcontentbundle/SyncGetContentBundle.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetCredentialsProvider.java index 4f48b07f19c7..6ab12191e14b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetEndpoint.java index 31dfc0942e10..6c939b09a6a5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/AsyncGetContentLabel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/AsyncGetContentLabel.java index 209749f99d31..1ee0d261ccf5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/AsyncGetContentLabel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/AsyncGetContentLabel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabel.java index be8dec1fae8c..fb14dc33b44b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelContentlabelname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelContentlabelname.java index 3e9859a61620..c122a94525ca 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelContentlabelname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelContentlabelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelString.java index b594aece85c7..a1fb183aefeb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/getcontentlabel/SyncGetContentLabelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabels.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabels.java index e1e9d8200e30..a116179a1ce7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabels.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabelsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabelsPaged.java index 4cd348d0592b..3d6be5e9b3a1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabelsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/AsyncListContentLabelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabels.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabels.java index 8b386a3c155f..286269812145 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabels.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsNetworkname.java index 371ac98c0307..ac00be3c306b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsString.java index e1a034671151..95e2bf61b4e0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservice/listcontentlabels/SyncListContentLabelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservicesettings/getcontentlabel/SyncGetContentLabel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservicesettings/getcontentlabel/SyncGetContentLabel.java index 682037af85a5..8cb184abe599 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservicesettings/getcontentlabel/SyncGetContentLabel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentlabelservicesettings/getcontentlabel/SyncGetContentLabel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetCredentialsProvider.java index e5ebe6fed876..167bf22dfdd6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetEndpoint.java index 5881da20034a..57fa95b121d3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/AsyncGetContent.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/AsyncGetContent.java index 9e3f3def2ced..4bb93d32c7e8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/AsyncGetContent.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/AsyncGetContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContent.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContent.java index 57501d3c99b7..1c42e05b06f4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContent.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentContentname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentContentname.java index 45c5cd42ede5..dfcce3172a75 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentContentname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentContentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentString.java index 137026cecc1f..27246c70a344 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/getcontent/SyncGetContentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContent.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContent.java index 6e7e091fa73c..c7e7b2778880 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContent.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContentPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContentPaged.java index c03b0f24bf90..a067d34eaa3f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContentPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/AsyncListContentPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContent.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContent.java index 9f9c9cc5e1f0..5a1762e685bd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContent.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentNetworkname.java index ffe0b76e7ad3..10d50b87fc9e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentString.java index f152c8f72e1a..9372aed3d926 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservice/listcontent/SyncListContentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservicesettings/getcontent/SyncGetContent.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservicesettings/getcontent/SyncGetContent.java index 530580663026..bd72b11a2f88 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservicesettings/getcontent/SyncGetContent.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/contentservicesettings/getcontent/SyncGetContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetCredentialsProvider.java index dd49eb62880a..4738d0bdf32c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetEndpoint.java index fd236e42037a..277427859ebb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/AsyncGetCreativeTemplate.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/AsyncGetCreativeTemplate.java index 88ae14c7eecb..14a95722393d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/AsyncGetCreativeTemplate.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/AsyncGetCreativeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplate.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplate.java index ac918c6125fc..703657c25e47 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplate.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateCreativetemplatename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateCreativetemplatename.java index 84491f90d098..47f8a0626281 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateCreativetemplatename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateCreativetemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateString.java index fa01ce9ecf17..95d83c652f7c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/getcreativetemplate/SyncGetCreativeTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplates.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplates.java index 2c472866b21f..ef17adc802e9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplates.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplatesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplatesPaged.java index 62dc25979e8a..e99d78ea3bd9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplatesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/AsyncListCreativeTemplatesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplates.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplates.java index 540b62754cdc..3ac1d6b00709 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplates.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesNetworkname.java index 9973e6728884..e88ade6a0646 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesString.java index 2fafbab563ac..76753dbdfa0d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservice/listcreativetemplates/SyncListCreativeTemplatesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservicesettings/getcreativetemplate/SyncGetCreativeTemplate.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservicesettings/getcreativetemplate/SyncGetCreativeTemplate.java index 32160243fa7d..60ad09135bc7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservicesettings/getcreativetemplate/SyncGetCreativeTemplate.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/creativetemplateservicesettings/getcreativetemplate/SyncGetCreativeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/AsyncBatchActivateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/AsyncBatchActivateCustomFields.java index e20d3c172d98..a20cbf1719c3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/AsyncBatchActivateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/AsyncBatchActivateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFields.java index d0267c9f0d6a..d7723e5a7841 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsNetworknameListstring.java index 5bb3b279cfc4..1c62307fa01b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsStringListstring.java index 5e5b092bba39..00f3f83c7ecf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchactivatecustomfields/SyncBatchActivateCustomFieldsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/AsyncBatchCreateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/AsyncBatchCreateCustomFields.java index 9e073cf485bb..bbedb821ddad 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/AsyncBatchCreateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/AsyncBatchCreateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFields.java index f0e73f20b97c..419ee00238cc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsNetworknameListcreatecustomfieldrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsNetworknameListcreatecustomfieldrequest.java index 07e39e355339..db7f7b892963 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsNetworknameListcreatecustomfieldrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsNetworknameListcreatecustomfieldrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsStringListcreatecustomfieldrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsStringListcreatecustomfieldrequest.java index fea97bd37e93..2a4487a06e62 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsStringListcreatecustomfieldrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchcreatecustomfields/SyncBatchCreateCustomFieldsStringListcreatecustomfieldrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/AsyncBatchDeactivateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/AsyncBatchDeactivateCustomFields.java index 1cdd5b365148..9e68130836d9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/AsyncBatchDeactivateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/AsyncBatchDeactivateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFields.java index 55b5307f59da..8d835deabff7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsNetworknameListstring.java index 128d8a6fbad6..8f986d5e975c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsStringListstring.java index 9ac92a34987c..02c142fdf390 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchdeactivatecustomfields/SyncBatchDeactivateCustomFieldsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/AsyncBatchUpdateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/AsyncBatchUpdateCustomFields.java index b8acafcc0b37..3c8d5c33679b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/AsyncBatchUpdateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/AsyncBatchUpdateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFields.java index df410d200a43..6b021b5f5bb6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsNetworknameListupdatecustomfieldrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsNetworknameListupdatecustomfieldrequest.java index ab0f3fadd22f..3643b7830269 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsNetworknameListupdatecustomfieldrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsNetworknameListupdatecustomfieldrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsStringListupdatecustomfieldrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsStringListupdatecustomfieldrequest.java index 001cbc66a8bb..ad56e873737c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsStringListupdatecustomfieldrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/batchupdatecustomfields/SyncBatchUpdateCustomFieldsStringListupdatecustomfieldrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetCredentialsProvider.java index 3c8746de1858..ae15b1e18981 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetEndpoint.java index b432988a5e30..b659aa1abb88 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/AsyncCreateCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/AsyncCreateCustomField.java index fb1bf8b975cc..81d9e5580b11 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/AsyncCreateCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/AsyncCreateCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomField.java index a363358dc3f8..d62c14746674 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldNetworknameCustomfield.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldNetworknameCustomfield.java index 3a258ded9692..05cc476e725b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldNetworknameCustomfield.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldNetworknameCustomfield.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldStringCustomfield.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldStringCustomfield.java index 3cc35285c7b9..bcbaf06f0425 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldStringCustomfield.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/createcustomfield/SyncCreateCustomFieldStringCustomfield.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/AsyncGetCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/AsyncGetCustomField.java index 73a7cdbd9ff7..734eda1a5765 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/AsyncGetCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/AsyncGetCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomField.java index b144d0ee7812..56246dda7a37 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldCustomfieldname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldCustomfieldname.java index 98a8c5f99567..a741ff16a71c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldCustomfieldname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldCustomfieldname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldString.java index 8c3ed1040c60..3ee8a2ee82f7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/getcustomfield/SyncGetCustomFieldString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFields.java index 666b60490c12..b3b3ee897bde 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFieldsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFieldsPaged.java index 52a617d44ee3..000c9730361b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFieldsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/AsyncListCustomFieldsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFields.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFields.java index 851f71fe6272..66b0b34ef9fc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFields.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFields.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsNetworkname.java index 70a0b59adc4a..4b5726100263 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsString.java index 9d718314bbc0..960f235c61b0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/listcustomfields/SyncListCustomFieldsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/AsyncUpdateCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/AsyncUpdateCustomField.java index a89228a5004b..40e469801b01 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/AsyncUpdateCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/AsyncUpdateCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomField.java index e195c6055dbf..0643d3dda9b0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomFieldCustomfieldFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomFieldCustomfieldFieldmask.java index dc49c25ea0c2..4044f6fa6b52 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomFieldCustomfieldFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservice/updatecustomfield/SyncUpdateCustomFieldCustomfieldFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservicesettings/getcustomfield/SyncGetCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservicesettings/getcustomfield/SyncGetCustomField.java index a210ea9215ab..5b2dcf777208 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservicesettings/getcustomfield/SyncGetCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customfieldservicesettings/getcustomfield/SyncGetCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/AsyncBatchActivateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/AsyncBatchActivateCustomTargetingKeys.java new file mode 100644 index 000000000000..d93cf8c5d204 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/AsyncBatchActivateCustomTargetingKeys.java @@ -0,0 +1,55 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_async] +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchActivateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + asyncBatchActivateCustomTargetingKeys(); + } + + public static void asyncBatchActivateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchActivateCustomTargetingKeysRequest request = + BatchActivateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + ApiFuture future = + customTargetingKeyServiceClient + .batchActivateCustomTargetingKeysCallable() + .futureCall(request); + // Do something. + BatchActivateCustomTargetingKeysResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeys.java new file mode 100644 index 000000000000..2041f2cd50b6 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeys.java @@ -0,0 +1,50 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_sync] +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchActivateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + syncBatchActivateCustomTargetingKeys(); + } + + public static void syncBatchActivateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchActivateCustomTargetingKeysRequest request = + BatchActivateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + BatchActivateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchActivateCustomTargetingKeys(request); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeysNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeysNetworknameListstring.java new file mode 100644 index 000000000000..a280c2eb2feb --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeysNetworknameListstring.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_NetworknameListstring_sync] +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchActivateCustomTargetingKeysNetworknameListstring { + + public static void main(String[] args) throws Exception { + syncBatchActivateCustomTargetingKeysNetworknameListstring(); + } + + public static void syncBatchActivateCustomTargetingKeysNetworknameListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + BatchActivateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchActivateCustomTargetingKeys(parent, names); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_NetworknameListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeysStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeysStringListstring.java new file mode 100644 index 000000000000..ce4bdf588dc8 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchactivatecustomtargetingkeys/SyncBatchActivateCustomTargetingKeysStringListstring.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_StringListstring_sync] +import com.google.ads.admanager.v1.BatchActivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchActivateCustomTargetingKeysStringListstring { + + public static void main(String[] args) throws Exception { + syncBatchActivateCustomTargetingKeysStringListstring(); + } + + public static void syncBatchActivateCustomTargetingKeysStringListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List names = new ArrayList<>(); + BatchActivateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchActivateCustomTargetingKeys(parent, names); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchActivateCustomTargetingKeys_StringListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/AsyncBatchCreateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/AsyncBatchCreateCustomTargetingKeys.java new file mode 100644 index 000000000000..2cbb28a6154f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/AsyncBatchCreateCustomTargetingKeys.java @@ -0,0 +1,56 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_async] +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchCreateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + asyncBatchCreateCustomTargetingKeys(); + } + + public static void asyncBatchCreateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchCreateCustomTargetingKeysRequest request = + BatchCreateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + ApiFuture future = + customTargetingKeyServiceClient + .batchCreateCustomTargetingKeysCallable() + .futureCall(request); + // Do something. + BatchCreateCustomTargetingKeysResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeys.java new file mode 100644 index 000000000000..2a642b6b0c99 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeys.java @@ -0,0 +1,51 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_sync] +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchCreateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + syncBatchCreateCustomTargetingKeys(); + } + + public static void syncBatchCreateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchCreateCustomTargetingKeysRequest request = + BatchCreateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + BatchCreateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchCreateCustomTargetingKeys(request); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeysNetworknameListcreatecustomtargetingkeyrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeysNetworknameListcreatecustomtargetingkeyrequest.java new file mode 100644 index 000000000000..ca48a3312b6f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeysNetworknameListcreatecustomtargetingkeyrequest.java @@ -0,0 +1,50 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_NetworknameListcreatecustomtargetingkeyrequest_sync] +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchCreateCustomTargetingKeysNetworknameListcreatecustomtargetingkeyrequest { + + public static void main(String[] args) throws Exception { + syncBatchCreateCustomTargetingKeysNetworknameListcreatecustomtargetingkeyrequest(); + } + + public static void + syncBatchCreateCustomTargetingKeysNetworknameListcreatecustomtargetingkeyrequest() + throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + BatchCreateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchCreateCustomTargetingKeys(parent, requests); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_NetworknameListcreatecustomtargetingkeyrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeysStringListcreatecustomtargetingkeyrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeysStringListcreatecustomtargetingkeyrequest.java new file mode 100644 index 000000000000..4727819eb50d --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchcreatecustomtargetingkeys/SyncBatchCreateCustomTargetingKeysStringListcreatecustomtargetingkeyrequest.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_StringListcreatecustomtargetingkeyrequest_sync] +import com.google.ads.admanager.v1.BatchCreateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchCreateCustomTargetingKeysStringListcreatecustomtargetingkeyrequest { + + public static void main(String[] args) throws Exception { + syncBatchCreateCustomTargetingKeysStringListcreatecustomtargetingkeyrequest(); + } + + public static void syncBatchCreateCustomTargetingKeysStringListcreatecustomtargetingkeyrequest() + throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List requests = new ArrayList<>(); + BatchCreateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchCreateCustomTargetingKeys(parent, requests); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchCreateCustomTargetingKeys_StringListcreatecustomtargetingkeyrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/AsyncBatchDeactivateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/AsyncBatchDeactivateCustomTargetingKeys.java new file mode 100644 index 000000000000..56e013de28af --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/AsyncBatchDeactivateCustomTargetingKeys.java @@ -0,0 +1,55 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_async] +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchDeactivateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + asyncBatchDeactivateCustomTargetingKeys(); + } + + public static void asyncBatchDeactivateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchDeactivateCustomTargetingKeysRequest request = + BatchDeactivateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + ApiFuture future = + customTargetingKeyServiceClient + .batchDeactivateCustomTargetingKeysCallable() + .futureCall(request); + // Do something. + BatchDeactivateCustomTargetingKeysResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeys.java new file mode 100644 index 000000000000..c0e2d4698b9d --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeys.java @@ -0,0 +1,50 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_sync] +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; + +public class SyncBatchDeactivateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + syncBatchDeactivateCustomTargetingKeys(); + } + + public static void syncBatchDeactivateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchDeactivateCustomTargetingKeysRequest request = + BatchDeactivateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllNames(new ArrayList()) + .build(); + BatchDeactivateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchDeactivateCustomTargetingKeys(request); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeysNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeysNetworknameListstring.java new file mode 100644 index 000000000000..e50c8e1fde88 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeysNetworknameListstring.java @@ -0,0 +1,48 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_NetworknameListstring_sync] +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchDeactivateCustomTargetingKeysNetworknameListstring { + + public static void main(String[] args) throws Exception { + syncBatchDeactivateCustomTargetingKeysNetworknameListstring(); + } + + public static void syncBatchDeactivateCustomTargetingKeysNetworknameListstring() + throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List names = new ArrayList<>(); + BatchDeactivateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchDeactivateCustomTargetingKeys(parent, names); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_NetworknameListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeysStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeysStringListstring.java new file mode 100644 index 000000000000..ecbe85f1b726 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchdeactivatecustomtargetingkeys/SyncBatchDeactivateCustomTargetingKeysStringListstring.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_StringListstring_sync] +import com.google.ads.admanager.v1.BatchDeactivateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchDeactivateCustomTargetingKeysStringListstring { + + public static void main(String[] args) throws Exception { + syncBatchDeactivateCustomTargetingKeysStringListstring(); + } + + public static void syncBatchDeactivateCustomTargetingKeysStringListstring() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List names = new ArrayList<>(); + BatchDeactivateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchDeactivateCustomTargetingKeys(parent, names); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchDeactivateCustomTargetingKeys_StringListstring_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/AsyncBatchUpdateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/AsyncBatchUpdateCustomTargetingKeys.java new file mode 100644 index 000000000000..d2b8d22724c7 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/AsyncBatchUpdateCustomTargetingKeys.java @@ -0,0 +1,56 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_async] +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; +import com.google.api.core.ApiFuture; +import java.util.ArrayList; + +public class AsyncBatchUpdateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + asyncBatchUpdateCustomTargetingKeys(); + } + + public static void asyncBatchUpdateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchUpdateCustomTargetingKeysRequest request = + BatchUpdateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + ApiFuture future = + customTargetingKeyServiceClient + .batchUpdateCustomTargetingKeysCallable() + .futureCall(request); + // Do something. + BatchUpdateCustomTargetingKeysResponse response = future.get(); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeys.java new file mode 100644 index 000000000000..5b72234ce7af --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeys.java @@ -0,0 +1,51 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_sync] +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysRequest; +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; +import java.util.ArrayList; + +public class SyncBatchUpdateCustomTargetingKeys { + + public static void main(String[] args) throws Exception { + syncBatchUpdateCustomTargetingKeys(); + } + + public static void syncBatchUpdateCustomTargetingKeys() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + BatchUpdateCustomTargetingKeysRequest request = + BatchUpdateCustomTargetingKeysRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .addAllRequests(new ArrayList()) + .build(); + BatchUpdateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchUpdateCustomTargetingKeys(request); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeysNetworknameListupdatecustomtargetingkeyrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeysNetworknameListupdatecustomtargetingkeyrequest.java new file mode 100644 index 000000000000..d27af275c9a5 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeysNetworknameListupdatecustomtargetingkeyrequest.java @@ -0,0 +1,50 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_NetworknameListupdatecustomtargetingkeyrequest_sync] +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchUpdateCustomTargetingKeysNetworknameListupdatecustomtargetingkeyrequest { + + public static void main(String[] args) throws Exception { + syncBatchUpdateCustomTargetingKeysNetworknameListupdatecustomtargetingkeyrequest(); + } + + public static void + syncBatchUpdateCustomTargetingKeysNetworknameListupdatecustomtargetingkeyrequest() + throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + List requests = new ArrayList<>(); + BatchUpdateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchUpdateCustomTargetingKeys(parent, requests); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_NetworknameListupdatecustomtargetingkeyrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeysStringListupdatecustomtargetingkeyrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeysStringListupdatecustomtargetingkeyrequest.java new file mode 100644 index 000000000000..0c47be9d00b6 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/batchupdatecustomtargetingkeys/SyncBatchUpdateCustomTargetingKeysStringListupdatecustomtargetingkeyrequest.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_StringListupdatecustomtargetingkeyrequest_sync] +import com.google.ads.admanager.v1.BatchUpdateCustomTargetingKeysResponse; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; +import java.util.ArrayList; +import java.util.List; + +public class SyncBatchUpdateCustomTargetingKeysStringListupdatecustomtargetingkeyrequest { + + public static void main(String[] args) throws Exception { + syncBatchUpdateCustomTargetingKeysStringListupdatecustomtargetingkeyrequest(); + } + + public static void syncBatchUpdateCustomTargetingKeysStringListupdatecustomtargetingkeyrequest() + throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + List requests = new ArrayList<>(); + BatchUpdateCustomTargetingKeysResponse response = + customTargetingKeyServiceClient.batchUpdateCustomTargetingKeys(parent, requests); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_BatchUpdateCustomTargetingKeys_StringListupdatecustomtargetingkeyrequest_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetCredentialsProvider.java index e2836e8118cc..91d738537084 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetEndpoint.java index bac3d4a2b728..4bac4e7687d7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/AsyncCreateCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/AsyncCreateCustomTargetingKey.java new file mode 100644 index 000000000000..1ec3ef106393 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/AsyncCreateCustomTargetingKey.java @@ -0,0 +1,52 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_async] +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; + +public class AsyncCreateCustomTargetingKey { + + public static void main(String[] args) throws Exception { + asyncCreateCustomTargetingKey(); + } + + public static void asyncCreateCustomTargetingKey() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + CreateCustomTargetingKeyRequest request = + CreateCustomTargetingKeyRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setCustomTargetingKey(CustomTargetingKey.newBuilder().build()) + .build(); + ApiFuture future = + customTargetingKeyServiceClient.createCustomTargetingKeyCallable().futureCall(request); + // Do something. + CustomTargetingKey response = future.get(); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKey.java new file mode 100644 index 000000000000..a4e26aa03433 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKey.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_sync] +import com.google.ads.admanager.v1.CreateCustomTargetingKeyRequest; +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncCreateCustomTargetingKey { + + public static void main(String[] args) throws Exception { + syncCreateCustomTargetingKey(); + } + + public static void syncCreateCustomTargetingKey() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + CreateCustomTargetingKeyRequest request = + CreateCustomTargetingKeyRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setCustomTargetingKey(CustomTargetingKey.newBuilder().build()) + .build(); + CustomTargetingKey response = + customTargetingKeyServiceClient.createCustomTargetingKey(request); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKeyNetworknameCustomtargetingkey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKeyNetworknameCustomtargetingkey.java new file mode 100644 index 000000000000..49e87f8e75b5 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKeyNetworknameCustomtargetingkey.java @@ -0,0 +1,45 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_NetworknameCustomtargetingkey_sync] +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncCreateCustomTargetingKeyNetworknameCustomtargetingkey { + + public static void main(String[] args) throws Exception { + syncCreateCustomTargetingKeyNetworknameCustomtargetingkey(); + } + + public static void syncCreateCustomTargetingKeyNetworknameCustomtargetingkey() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + CustomTargetingKey response = + customTargetingKeyServiceClient.createCustomTargetingKey(parent, customTargetingKey); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_NetworknameCustomtargetingkey_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKeyStringCustomtargetingkey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKeyStringCustomtargetingkey.java new file mode 100644 index 000000000000..897d4a93dd4a --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/createcustomtargetingkey/SyncCreateCustomTargetingKeyStringCustomtargetingkey.java @@ -0,0 +1,45 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_StringCustomtargetingkey_sync] +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncCreateCustomTargetingKeyStringCustomtargetingkey { + + public static void main(String[] args) throws Exception { + syncCreateCustomTargetingKeyStringCustomtargetingkey(); + } + + public static void syncCreateCustomTargetingKeyStringCustomtargetingkey() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + CustomTargetingKey response = + customTargetingKeyServiceClient.createCustomTargetingKey(parent, customTargetingKey); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_CreateCustomTargetingKey_StringCustomtargetingkey_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/AsyncGetCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/AsyncGetCustomTargetingKey.java index 29fae75bb601..d42c6a5e391f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/AsyncGetCustomTargetingKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/AsyncGetCustomTargetingKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKey.java index 16834cf0db23..eee04ee18f6b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyCustomtargetingkeyname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyCustomtargetingkeyname.java index 3c7135ba7059..1458bd84c1fd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyCustomtargetingkeyname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyCustomtargetingkeyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyString.java index d50b1e3e4b69..6c20d8226889 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/getcustomtargetingkey/SyncGetCustomTargetingKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeys.java index 23070781fc10..b394a52db6d4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeys.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeysPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeysPaged.java index 750f5d6b9dfb..54aee23e459e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeysPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/AsyncListCustomTargetingKeysPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeys.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeys.java index 9a6ec1f14680..0467ef2ab6fb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeys.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysNetworkname.java index e82b277c5731..6f7ec8e5bbbd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysString.java index ef5e797fcd5c..0b701683cf1c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/listcustomtargetingkeys/SyncListCustomTargetingKeysString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/AsyncUpdateCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/AsyncUpdateCustomTargetingKey.java new file mode 100644 index 000000000000..c8b642e0085e --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/AsyncUpdateCustomTargetingKey.java @@ -0,0 +1,52 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_UpdateCustomTargetingKey_async] +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; +import com.google.api.core.ApiFuture; +import com.google.protobuf.FieldMask; + +public class AsyncUpdateCustomTargetingKey { + + public static void main(String[] args) throws Exception { + asyncUpdateCustomTargetingKey(); + } + + public static void asyncUpdateCustomTargetingKey() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + UpdateCustomTargetingKeyRequest request = + UpdateCustomTargetingKeyRequest.newBuilder() + .setCustomTargetingKey(CustomTargetingKey.newBuilder().build()) + .setUpdateMask(FieldMask.newBuilder().build()) + .build(); + ApiFuture future = + customTargetingKeyServiceClient.updateCustomTargetingKeyCallable().futureCall(request); + // Do something. + CustomTargetingKey response = future.get(); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_UpdateCustomTargetingKey_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/SyncUpdateCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/SyncUpdateCustomTargetingKey.java new file mode 100644 index 000000000000..e98ff597fcb7 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/SyncUpdateCustomTargetingKey.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_UpdateCustomTargetingKey_sync] +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.ads.admanager.v1.UpdateCustomTargetingKeyRequest; +import com.google.protobuf.FieldMask; + +public class SyncUpdateCustomTargetingKey { + + public static void main(String[] args) throws Exception { + syncUpdateCustomTargetingKey(); + } + + public static void syncUpdateCustomTargetingKey() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + UpdateCustomTargetingKeyRequest request = + UpdateCustomTargetingKeyRequest.newBuilder() + .setCustomTargetingKey(CustomTargetingKey.newBuilder().build()) + .setUpdateMask(FieldMask.newBuilder().build()) + .build(); + CustomTargetingKey response = + customTargetingKeyServiceClient.updateCustomTargetingKey(request); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_UpdateCustomTargetingKey_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/SyncUpdateCustomTargetingKeyCustomtargetingkeyFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/SyncUpdateCustomTargetingKeyCustomtargetingkeyFieldmask.java new file mode 100644 index 000000000000..4c5d9937c5db --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservice/updatecustomtargetingkey/SyncUpdateCustomTargetingKeyCustomtargetingkeyFieldmask.java @@ -0,0 +1,45 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_CustomTargetingKeyService_UpdateCustomTargetingKey_CustomtargetingkeyFieldmask_sync] +import com.google.ads.admanager.v1.CustomTargetingKey; +import com.google.ads.admanager.v1.CustomTargetingKeyServiceClient; +import com.google.protobuf.FieldMask; + +public class SyncUpdateCustomTargetingKeyCustomtargetingkeyFieldmask { + + public static void main(String[] args) throws Exception { + syncUpdateCustomTargetingKeyCustomtargetingkeyFieldmask(); + } + + public static void syncUpdateCustomTargetingKeyCustomtargetingkeyFieldmask() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (CustomTargetingKeyServiceClient customTargetingKeyServiceClient = + CustomTargetingKeyServiceClient.create()) { + CustomTargetingKey customTargetingKey = CustomTargetingKey.newBuilder().build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + CustomTargetingKey response = + customTargetingKeyServiceClient.updateCustomTargetingKey(customTargetingKey, updateMask); + } + } +} +// [END admanager_v1_generated_CustomTargetingKeyService_UpdateCustomTargetingKey_CustomtargetingkeyFieldmask_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservicesettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservicesettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java index 6c921577c48a..b1307a35bad0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservicesettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingkeyservicesettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetCredentialsProvider.java index 99d08ab56b9e..ae64e38d914d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetEndpoint.java index d0316e1c0664..84302bca40c3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/AsyncGetCustomTargetingValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/AsyncGetCustomTargetingValue.java index 3a1549f887c6..ac71ddade886 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/AsyncGetCustomTargetingValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/AsyncGetCustomTargetingValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValue.java index cab66298853c..47f5fe9b82dd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueCustomtargetingvaluename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueCustomtargetingvaluename.java index 210e86069058..167aa4b524a7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueCustomtargetingvaluename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueCustomtargetingvaluename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueString.java index 94a84c733096..4f70e4987019 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/getcustomtargetingvalue/SyncGetCustomTargetingValueString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValues.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValues.java index 06a2b18aa4f2..5dd13eaad536 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValues.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValuesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValuesPaged.java index 8e5d62e4d5fa..50e562d39bc4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValuesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/AsyncListCustomTargetingValuesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValues.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValues.java index d6890420a4fa..e3def98daa53 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValues.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesNetworkname.java index 677a4950362a..4bc2548c0fb4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesString.java index 2b8ffd2c551c..4c4c654f25bd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservice/listcustomtargetingvalues/SyncListCustomTargetingValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservicesettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservicesettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java index e53fa180d271..c5d9f9b983a9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservicesettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/customtargetingvalueservicesettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetCredentialsProvider.java index 79ecdcd00fe1..91c68cb040e2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetEndpoint.java index b96db8db9732..f0faf9492ec2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/AsyncGetDeviceCapability.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/AsyncGetDeviceCapability.java index d4ca0ac72766..52c0e6c5c81f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/AsyncGetDeviceCapability.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/AsyncGetDeviceCapability.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapability.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapability.java index b8ac1edae276..5f3517041af4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapability.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapability.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityDevicecapabilityname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityDevicecapabilityname.java index e4ea207a1376..ebc84f8a1fcb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityDevicecapabilityname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityDevicecapabilityname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityString.java index 72d0e69984a2..d3f185e7545c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/getdevicecapability/SyncGetDeviceCapabilityString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilities.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilities.java index 46367375e8c7..307af92685dd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilities.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilities.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilitiesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilitiesPaged.java index 7812a4e0a5e7..ba397dd418f6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilitiesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/AsyncListDeviceCapabilitiesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilities.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilities.java index 8d1d0edd6e4a..bb5e133bbbb8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilities.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilities.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesNetworkname.java index 48cb4b116a57..01b4fc7304b9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesString.java index 051d47d0f5f2..c3ac1c5d9845 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservice/listdevicecapabilities/SyncListDeviceCapabilitiesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservicesettings/getdevicecapability/SyncGetDeviceCapability.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservicesettings/getdevicecapability/SyncGetDeviceCapability.java index 0fca72d4d903..487fba75f52d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservicesettings/getdevicecapability/SyncGetDeviceCapability.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecapabilityservicesettings/getdevicecapability/SyncGetDeviceCapability.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetCredentialsProvider.java index 0f3adad0ee4e..655b292f56d4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetEndpoint.java index 413f127005b3..a040848c86cc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/AsyncGetDeviceCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/AsyncGetDeviceCategory.java index 5011e243b160..8d24aea32c0a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/AsyncGetDeviceCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/AsyncGetDeviceCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategory.java index 0989f72ad3a2..e933d49cf99b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryDevicecategoryname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryDevicecategoryname.java index 2c668a3f7367..48809c63f0fc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryDevicecategoryname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryDevicecategoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryString.java index 98db7c443e44..76c3d99c8b9a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/getdevicecategory/SyncGetDeviceCategoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategories.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategories.java index b97108906378..b67e693449d5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategories.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategoriesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategoriesPaged.java index 679c9205a05c..90da79ee6789 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategoriesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/AsyncListDeviceCategoriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategories.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategories.java index 71fdf448eaa5..b008610809fd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategories.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesNetworkname.java index 0dcb10edb61d..edd1913359ee 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesString.java index 5f8891ae1ac5..a48663a8e673 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservice/listdevicecategories/SyncListDeviceCategoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservicesettings/getdevicecategory/SyncGetDeviceCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservicesettings/getdevicecategory/SyncGetDeviceCategory.java index 47496c96683f..3d2f04b37e83 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservicesettings/getdevicecategory/SyncGetDeviceCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicecategoryservicesettings/getdevicecategory/SyncGetDeviceCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetCredentialsProvider.java index dd228f2facd5..d12952bf1a1b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetEndpoint.java index 13bb19923f8d..91b407cdf362 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/AsyncGetDeviceManufacturer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/AsyncGetDeviceManufacturer.java index 86c887a04c4d..de9897b4da1d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/AsyncGetDeviceManufacturer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/AsyncGetDeviceManufacturer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturer.java index 5713a9301f23..f93e9e914321 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerDevicemanufacturername.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerDevicemanufacturername.java index ab7c64e64190..25b9f4104da4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerDevicemanufacturername.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerDevicemanufacturername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerString.java index 5c1ef0ab95e6..dc218c57a53a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/getdevicemanufacturer/SyncGetDeviceManufacturerString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturers.java index d134a624cd1a..24c3b07eef73 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturersPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturersPaged.java index 83213d01dc45..1d15a377a1dd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturersPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/AsyncListDeviceManufacturersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturers.java index 78977c4a9cf9..8f69e8b15eb7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersNetworkname.java index 87e99c7e65af..a648fb19d8f0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersString.java index 2b7b9651ab3b..ec3ea41e416e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservice/listdevicemanufacturers/SyncListDeviceManufacturersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservicesettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservicesettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java index 74d6988ea21e..d5ccddb5007c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservicesettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/devicemanufacturerservicesettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/AsyncBatchCreateEntitySignalsMappings.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/AsyncBatchCreateEntitySignalsMappings.java index 3ebc2f201ffa..9b771b37c201 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/AsyncBatchCreateEntitySignalsMappings.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/AsyncBatchCreateEntitySignalsMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappings.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappings.java index aa377fadb453..22f220a99055 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappings.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsNetworknameListcreateentitysignalsmappingrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsNetworknameListcreateentitysignalsmappingrequest.java index e4a301e66be0..a727ca93649e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsNetworknameListcreateentitysignalsmappingrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsNetworknameListcreateentitysignalsmappingrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsStringListcreateentitysignalsmappingrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsStringListcreateentitysignalsmappingrequest.java index 97a029f7ef85..18caf5f2a089 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsStringListcreateentitysignalsmappingrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchcreateentitysignalsmappings/SyncBatchCreateEntitySignalsMappingsStringListcreateentitysignalsmappingrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/AsyncBatchUpdateEntitySignalsMappings.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/AsyncBatchUpdateEntitySignalsMappings.java index 9c515b868948..86fdabc4c208 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/AsyncBatchUpdateEntitySignalsMappings.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/AsyncBatchUpdateEntitySignalsMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappings.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappings.java index 7da66416f640..d20d54654704 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappings.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsNetworknameListupdateentitysignalsmappingrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsNetworknameListupdateentitysignalsmappingrequest.java index ed8c0bda344e..172c1c930e61 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsNetworknameListupdateentitysignalsmappingrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsNetworknameListupdateentitysignalsmappingrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsStringListupdateentitysignalsmappingrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsStringListupdateentitysignalsmappingrequest.java index 6db12a750a63..3d233e7b303f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsStringListupdateentitysignalsmappingrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/batchupdateentitysignalsmappings/SyncBatchUpdateEntitySignalsMappingsStringListupdateentitysignalsmappingrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetCredentialsProvider.java index def133cda790..4d23274591a5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetEndpoint.java index feee64cb2a6f..5a4870e5247e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/AsyncCreateEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/AsyncCreateEntitySignalsMapping.java index c92b00ae8eb6..fe2fae190475 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/AsyncCreateEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/AsyncCreateEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMapping.java index f088f03cc017..4ad5e3382551 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingNetworknameEntitysignalsmapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingNetworknameEntitysignalsmapping.java index 6365b900ac7a..c0370c1b41fc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingNetworknameEntitysignalsmapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingNetworknameEntitysignalsmapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingStringEntitysignalsmapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingStringEntitysignalsmapping.java index 2fdddd94ed67..a57309b6f373 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingStringEntitysignalsmapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/createentitysignalsmapping/SyncCreateEntitySignalsMappingStringEntitysignalsmapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/AsyncGetEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/AsyncGetEntitySignalsMapping.java index e7b8cdef9c58..1f461fc04b81 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/AsyncGetEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/AsyncGetEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMapping.java index be4a50a0b8a7..7c0c1d118404 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingEntitysignalsmappingname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingEntitysignalsmappingname.java index 398e3dce0cd9..73b83b348696 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingEntitysignalsmappingname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingEntitysignalsmappingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingString.java index c30866cc196c..8b457c85b99c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/getentitysignalsmapping/SyncGetEntitySignalsMappingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappings.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappings.java index 8c5de7277bf8..020158d4d822 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappings.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappingsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappingsPaged.java index 30e36a7b56f4..738cf82deeba 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappingsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/AsyncListEntitySignalsMappingsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappings.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappings.java index d9b406478213..0e62eae547e5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappings.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsNetworkname.java index 02c897f0267e..3098a4ab1880 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsString.java index cba88103fce6..de9f7743b798 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/listentitysignalsmappings/SyncListEntitySignalsMappingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/AsyncUpdateEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/AsyncUpdateEntitySignalsMapping.java index 6dba9d24d883..68f7e2599aeb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/AsyncUpdateEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/AsyncUpdateEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMapping.java index f1506c767fe0..feb16ba74bda 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMappingEntitysignalsmappingFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMappingEntitysignalsmappingFieldmask.java index b0c5a0b71bfe..ced66a5e440e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMappingEntitysignalsmappingFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservice/updateentitysignalsmapping/SyncUpdateEntitySignalsMappingEntitysignalsmappingFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservicesettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservicesettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java index ad4cf5dd4186..3af32dee6af9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservicesettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/entitysignalsmappingservicesettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetCredentialsProvider.java index f5123df3f8d0..2c1d7a1cdd9f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetEndpoint.java index e30f00b64801..1f559e21498e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/AsyncGetGeoTarget.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/AsyncGetGeoTarget.java index fd113d99fac1..18fc83037332 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/AsyncGetGeoTarget.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/AsyncGetGeoTarget.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTarget.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTarget.java index 985fbb81c900..90d462606bbc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTarget.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTarget.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetGeotargetname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetGeotargetname.java index 1f750e8e6190..ae3bb28bc742 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetGeotargetname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetGeotargetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetString.java index c335992bff02..24ca9d749123 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/getgeotarget/SyncGetGeoTargetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargets.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargets.java index 204c00035a18..40080b31528f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargets.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargetsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargetsPaged.java index ea4215677f49..66ef46560bed 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargetsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/AsyncListGeoTargetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargets.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargets.java index 2efc671ba9c0..cab27425dfbc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargets.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsNetworkname.java index 110a713cad04..844ca4758054 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsString.java index 105c56248ab0..ea21e641a665 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservice/listgeotargets/SyncListGeoTargetsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservicesettings/getgeotarget/SyncGetGeoTarget.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservicesettings/getgeotarget/SyncGetGeoTarget.java index 881d2120f5e0..72e410f93ae8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservicesettings/getgeotarget/SyncGetGeoTarget.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/geotargetservicesettings/getgeotarget/SyncGetGeoTarget.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/create/SyncCreateSetCredentialsProvider.java new file mode 100644 index 000000000000..3cf443dde17c --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/create/SyncCreateSetCredentialsProvider.java @@ -0,0 +1,45 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_Create_SetCredentialsProvider_sync] +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.LineItemServiceSettings; +import com.google.ads.admanager.v1.myCredentials; +import com.google.api.gax.core.FixedCredentialsProvider; + +public class SyncCreateSetCredentialsProvider { + + public static void main(String[] args) throws Exception { + syncCreateSetCredentialsProvider(); + } + + public static void syncCreateSetCredentialsProvider() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + LineItemServiceSettings lineItemServiceSettings = + LineItemServiceSettings.newBuilder() + .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials)) + .build(); + LineItemServiceClient lineItemServiceClient = + LineItemServiceClient.create(lineItemServiceSettings); + } +} +// [END admanager_v1_generated_LineItemService_Create_SetCredentialsProvider_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/create/SyncCreateSetEndpoint.java new file mode 100644 index 000000000000..a2688695261e --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/create/SyncCreateSetEndpoint.java @@ -0,0 +1,42 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_Create_SetEndpoint_sync] +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.LineItemServiceSettings; +import com.google.ads.admanager.v1.myEndpoint; + +public class SyncCreateSetEndpoint { + + public static void main(String[] args) throws Exception { + syncCreateSetEndpoint(); + } + + public static void syncCreateSetEndpoint() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + LineItemServiceSettings lineItemServiceSettings = + LineItemServiceSettings.newBuilder().setEndpoint(myEndpoint).build(); + LineItemServiceClient lineItemServiceClient = + LineItemServiceClient.create(lineItemServiceSettings); + } +} +// [END admanager_v1_generated_LineItemService_Create_SetEndpoint_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/AsyncGetLineItem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/AsyncGetLineItem.java new file mode 100644 index 000000000000..77aafbc179ce --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/AsyncGetLineItem.java @@ -0,0 +1,49 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_GetLineItem_async] +import com.google.ads.admanager.v1.GetLineItemRequest; +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemName; +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.api.core.ApiFuture; + +public class AsyncGetLineItem { + + public static void main(String[] args) throws Exception { + asyncGetLineItem(); + } + + public static void asyncGetLineItem() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + GetLineItemRequest request = + GetLineItemRequest.newBuilder() + .setName(LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString()) + .build(); + ApiFuture future = lineItemServiceClient.getLineItemCallable().futureCall(request); + // Do something. + LineItem response = future.get(); + } + } +} +// [END admanager_v1_generated_LineItemService_GetLineItem_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItem.java new file mode 100644 index 000000000000..f82aa5114b5f --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItem.java @@ -0,0 +1,46 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_GetLineItem_sync] +import com.google.ads.admanager.v1.GetLineItemRequest; +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemName; +import com.google.ads.admanager.v1.LineItemServiceClient; + +public class SyncGetLineItem { + + public static void main(String[] args) throws Exception { + syncGetLineItem(); + } + + public static void syncGetLineItem() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + GetLineItemRequest request = + GetLineItemRequest.newBuilder() + .setName(LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString()) + .build(); + LineItem response = lineItemServiceClient.getLineItem(request); + } + } +} +// [END admanager_v1_generated_LineItemService_GetLineItem_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItemLineitemname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItemLineitemname.java new file mode 100644 index 000000000000..2e82092c6032 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItemLineitemname.java @@ -0,0 +1,42 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_GetLineItem_Lineitemname_sync] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemName; +import com.google.ads.admanager.v1.LineItemServiceClient; + +public class SyncGetLineItemLineitemname { + + public static void main(String[] args) throws Exception { + syncGetLineItemLineitemname(); + } + + public static void syncGetLineItemLineitemname() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + LineItemName name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]"); + LineItem response = lineItemServiceClient.getLineItem(name); + } + } +} +// [END admanager_v1_generated_LineItemService_GetLineItem_Lineitemname_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItemString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItemString.java new file mode 100644 index 000000000000..bd5960ea4320 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/getlineitem/SyncGetLineItemString.java @@ -0,0 +1,42 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_GetLineItem_String_sync] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemName; +import com.google.ads.admanager.v1.LineItemServiceClient; + +public class SyncGetLineItemString { + + public static void main(String[] args) throws Exception { + syncGetLineItemString(); + } + + public static void syncGetLineItemString() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + String name = LineItemName.of("[NETWORK_CODE]", "[LINE_ITEM]").toString(); + LineItem response = lineItemServiceClient.getLineItem(name); + } + } +} +// [END admanager_v1_generated_LineItemService_GetLineItem_String_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/AsyncListLineItems.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/AsyncListLineItems.java new file mode 100644 index 000000000000..cc3417f053e1 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/AsyncListLineItems.java @@ -0,0 +1,57 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_ListLineItems_async] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.ListLineItemsRequest; +import com.google.ads.admanager.v1.NetworkName; +import com.google.api.core.ApiFuture; + +public class AsyncListLineItems { + + public static void main(String[] args) throws Exception { + asyncListLineItems(); + } + + public static void asyncListLineItems() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + ListLineItemsRequest request = + ListLineItemsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setFilter("filter-1274492040") + .setOrderBy("orderBy-1207110587") + .setSkip(3532159) + .build(); + ApiFuture future = + lineItemServiceClient.listLineItemsPagedCallable().futureCall(request); + // Do something. + for (LineItem element : future.get().iterateAll()) { + // doThingsWith(element); + } + } + } +} +// [END admanager_v1_generated_LineItemService_ListLineItems_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/AsyncListLineItemsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/AsyncListLineItemsPaged.java new file mode 100644 index 000000000000..cc273fb16503 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/AsyncListLineItemsPaged.java @@ -0,0 +1,65 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_ListLineItems_Paged_async] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.ListLineItemsRequest; +import com.google.ads.admanager.v1.ListLineItemsResponse; +import com.google.ads.admanager.v1.NetworkName; +import com.google.common.base.Strings; + +public class AsyncListLineItemsPaged { + + public static void main(String[] args) throws Exception { + asyncListLineItemsPaged(); + } + + public static void asyncListLineItemsPaged() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + ListLineItemsRequest request = + ListLineItemsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setFilter("filter-1274492040") + .setOrderBy("orderBy-1207110587") + .setSkip(3532159) + .build(); + while (true) { + ListLineItemsResponse response = + lineItemServiceClient.listLineItemsCallable().call(request); + for (LineItem element : response.getLineItemsList()) { + // doThingsWith(element); + } + String nextPageToken = response.getNextPageToken(); + if (!Strings.isNullOrEmpty(nextPageToken)) { + request = request.toBuilder().setPageToken(nextPageToken).build(); + } else { + break; + } + } + } + } +} +// [END admanager_v1_generated_LineItemService_ListLineItems_Paged_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItems.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItems.java new file mode 100644 index 000000000000..fb2dced4b003 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItems.java @@ -0,0 +1,53 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_ListLineItems_sync] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.ListLineItemsRequest; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncListLineItems { + + public static void main(String[] args) throws Exception { + syncListLineItems(); + } + + public static void syncListLineItems() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + ListLineItemsRequest request = + ListLineItemsRequest.newBuilder() + .setParent(NetworkName.of("[NETWORK_CODE]").toString()) + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setFilter("filter-1274492040") + .setOrderBy("orderBy-1207110587") + .setSkip(3532159) + .build(); + for (LineItem element : lineItemServiceClient.listLineItems(request).iterateAll()) { + // doThingsWith(element); + } + } + } +} +// [END admanager_v1_generated_LineItemService_ListLineItems_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItemsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItemsNetworkname.java new file mode 100644 index 000000000000..21c98175ff7d --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItemsNetworkname.java @@ -0,0 +1,44 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_ListLineItems_Networkname_sync] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncListLineItemsNetworkname { + + public static void main(String[] args) throws Exception { + syncListLineItemsNetworkname(); + } + + public static void syncListLineItemsNetworkname() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + NetworkName parent = NetworkName.of("[NETWORK_CODE]"); + for (LineItem element : lineItemServiceClient.listLineItems(parent).iterateAll()) { + // doThingsWith(element); + } + } + } +} +// [END admanager_v1_generated_LineItemService_ListLineItems_Networkname_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItemsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItemsString.java new file mode 100644 index 000000000000..8768c82d875c --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservice/listlineitems/SyncListLineItemsString.java @@ -0,0 +1,44 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemService_ListLineItems_String_sync] +import com.google.ads.admanager.v1.LineItem; +import com.google.ads.admanager.v1.LineItemServiceClient; +import com.google.ads.admanager.v1.NetworkName; + +public class SyncListLineItemsString { + + public static void main(String[] args) throws Exception { + syncListLineItemsString(); + } + + public static void syncListLineItemsString() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (LineItemServiceClient lineItemServiceClient = LineItemServiceClient.create()) { + String parent = NetworkName.of("[NETWORK_CODE]").toString(); + for (LineItem element : lineItemServiceClient.listLineItems(parent).iterateAll()) { + // doThingsWith(element); + } + } + } +} +// [END admanager_v1_generated_LineItemService_ListLineItems_String_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservicesettings/getlineitem/SyncGetLineItem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservicesettings/getlineitem/SyncGetLineItem.java new file mode 100644 index 000000000000..fca0422de999 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/lineitemservicesettings/getlineitem/SyncGetLineItem.java @@ -0,0 +1,56 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_LineItemServiceSettings_GetLineItem_sync] +import com.google.ads.admanager.v1.LineItemServiceSettings; +import java.time.Duration; + +public class SyncGetLineItem { + + public static void main(String[] args) throws Exception { + syncGetLineItem(); + } + + public static void syncGetLineItem() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + LineItemServiceSettings.Builder lineItemServiceSettingsBuilder = + LineItemServiceSettings.newBuilder(); + lineItemServiceSettingsBuilder + .getLineItemSettings() + .setRetrySettings( + lineItemServiceSettingsBuilder + .getLineItemSettings() + .getRetrySettings() + .toBuilder() + .setInitialRetryDelayDuration(Duration.ofSeconds(1)) + .setInitialRpcTimeoutDuration(Duration.ofSeconds(5)) + .setMaxAttempts(5) + .setMaxRetryDelayDuration(Duration.ofSeconds(30)) + .setMaxRpcTimeoutDuration(Duration.ofSeconds(60)) + .setRetryDelayMultiplier(1.3) + .setRpcTimeoutMultiplier(1.5) + .setTotalTimeoutDuration(Duration.ofSeconds(300)) + .build()); + LineItemServiceSettings lineItemServiceSettings = lineItemServiceSettingsBuilder.build(); + } +} +// [END admanager_v1_generated_LineItemServiceSettings_GetLineItem_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetCredentialsProvider.java index b17ea1455e58..29fe3b794ab2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetEndpoint.java index a7aa345a2c01..38720ffffb2e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/AsyncGetMobileCarrier.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/AsyncGetMobileCarrier.java index e74d451d519f..2724b8fa50cc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/AsyncGetMobileCarrier.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/AsyncGetMobileCarrier.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrier.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrier.java index fbafcf528829..34697a029d2d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrier.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrier.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierMobilecarriername.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierMobilecarriername.java index 430fe8fda9d4..db8ce511484f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierMobilecarriername.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierMobilecarriername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierString.java index 5c7512bcf68d..ab0aff3faff5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/getmobilecarrier/SyncGetMobileCarrierString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriers.java index 1299caa1df41..c702b3fe2972 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriersPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriersPaged.java index 4099d97e31db..ab9d2dd6eba7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriersPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/AsyncListMobileCarriersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriers.java index c8e8d921bf6d..cea8a1d67af7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersNetworkname.java index acc80f77796c..8a7c0ba19068 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersString.java index 07f013024a8a..a396fcfb92a0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservice/listmobilecarriers/SyncListMobileCarriersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservicesettings/getmobilecarrier/SyncGetMobileCarrier.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservicesettings/getmobilecarrier/SyncGetMobileCarrier.java index 54eb4f3a0d20..cc7f36076e2e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservicesettings/getmobilecarrier/SyncGetMobileCarrier.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobilecarrierservicesettings/getmobilecarrier/SyncGetMobileCarrier.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetCredentialsProvider.java index 82bc001d09cc..93bbf7133e9f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetEndpoint.java index 69a68b604da0..71e358d848d6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/AsyncGetMobileDevice.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/AsyncGetMobileDevice.java index 97f95524b897..4f506505a152 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/AsyncGetMobileDevice.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/AsyncGetMobileDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDevice.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDevice.java index 0e1be7e46105..a19e9ab7cef3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDevice.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceMobiledevicename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceMobiledevicename.java index 74618fe1b1f4..7c092b182935 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceMobiledevicename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceMobiledevicename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceString.java index ff61a2e3b8c5..57dbc012a1f3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/getmobiledevice/SyncGetMobileDeviceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevices.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevices.java index ab5ce62cdbc0..38deaa95d6fb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevices.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevicesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevicesPaged.java index f80ae4c68e9c..a99f78af52a1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevicesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/AsyncListMobileDevicesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevices.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevices.java index ee548957e1ab..6f7359b335e3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevices.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesNetworkname.java index 822aba6bcd70..2cbfe3779b77 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesString.java index 2c1a84945a7d..3f0376a04562 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservice/listmobiledevices/SyncListMobileDevicesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservicesettings/getmobiledevice/SyncGetMobileDevice.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservicesettings/getmobiledevice/SyncGetMobileDevice.java index 8d7729f75e2e..d0409da28236 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservicesettings/getmobiledevice/SyncGetMobileDevice.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledeviceservicesettings/getmobiledevice/SyncGetMobileDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetCredentialsProvider.java index 3fdf7d750e4d..243e5a523b72 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetEndpoint.java index 66e2d9e52cf0..d32586bb4243 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/AsyncGetMobileDeviceSubmodel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/AsyncGetMobileDeviceSubmodel.java index 31ee802c0ed4..b3c7a266164b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/AsyncGetMobileDeviceSubmodel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/AsyncGetMobileDeviceSubmodel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java index 4596e4f131bf..50b1e96e5875 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelMobiledevicesubmodelname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelMobiledevicesubmodelname.java index 8c3566df1ce1..e9b5c38113da 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelMobiledevicesubmodelname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelMobiledevicesubmodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelString.java index 432b1e79d9ad..af3b2a1fcd75 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodels.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodels.java index 1900a1eb641f..778ac8d61327 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodels.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodelsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodelsPaged.java index 6f6c19f6663d..8dee1b63bc0a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodelsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/AsyncListMobileDeviceSubmodelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodels.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodels.java index a9e9416c1e0b..897a6ed8c213 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodels.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsNetworkname.java index 600b2fd070a8..6a4cb54a8021 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsString.java index 9cca11a60b14..80440a3c57a7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservice/listmobiledevicesubmodels/SyncListMobileDeviceSubmodelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservicesettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservicesettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java index f6f6337f6923..183e75db66bd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservicesettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/mobiledevicesubmodelservicesettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetCredentialsProvider.java index 9878960341cf..c5e1ac092ba7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetEndpoint.java index 8208fa846c74..5512fa2c26be 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/AsyncGetNetwork.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/AsyncGetNetwork.java index c55721d67802..ec89ae82441b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/AsyncGetNetwork.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/AsyncGetNetwork.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetwork.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetwork.java index 3e6950c2bdde..4478c08770d9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetwork.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetwork.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkNetworkname.java index b0eda6972faa..79ed3cca5a80 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkString.java index e1d7dcf5844e..dc4ae72e76b1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/getnetwork/SyncGetNetworkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworks.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworks.java index ea4509c28bda..597d88137e48 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworks.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ // [START admanager_v1_generated_NetworkService_ListNetworks_async] import com.google.ads.admanager.v1.ListNetworksRequest; -import com.google.ads.admanager.v1.ListNetworksResponse; +import com.google.ads.admanager.v1.Network; import com.google.ads.admanager.v1.NetworkServiceClient; import com.google.api.core.ApiFuture; @@ -35,11 +35,18 @@ public static void asyncListNetworks() throws Exception { // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (NetworkServiceClient networkServiceClient = NetworkServiceClient.create()) { - ListNetworksRequest request = ListNetworksRequest.newBuilder().build(); - ApiFuture future = - networkServiceClient.listNetworksCallable().futureCall(request); + ListNetworksRequest request = + ListNetworksRequest.newBuilder() + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setSkip(3532159) + .build(); + ApiFuture future = + networkServiceClient.listNetworksPagedCallable().futureCall(request); // Do something. - ListNetworksResponse response = future.get(); + for (Network element : future.get().iterateAll()) { + // doThingsWith(element); + } } } } diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworksPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworksPaged.java new file mode 100644 index 000000000000..d6fed3dc9910 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/AsyncListNetworksPaged.java @@ -0,0 +1,60 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.samples; + +// [START admanager_v1_generated_NetworkService_ListNetworks_Paged_async] +import com.google.ads.admanager.v1.ListNetworksRequest; +import com.google.ads.admanager.v1.ListNetworksResponse; +import com.google.ads.admanager.v1.Network; +import com.google.ads.admanager.v1.NetworkServiceClient; +import com.google.common.base.Strings; + +public class AsyncListNetworksPaged { + + public static void main(String[] args) throws Exception { + asyncListNetworksPaged(); + } + + public static void asyncListNetworksPaged() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (NetworkServiceClient networkServiceClient = NetworkServiceClient.create()) { + ListNetworksRequest request = + ListNetworksRequest.newBuilder() + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setSkip(3532159) + .build(); + while (true) { + ListNetworksResponse response = networkServiceClient.listNetworksCallable().call(request); + for (Network element : response.getNetworksList()) { + // doThingsWith(element); + } + String nextPageToken = response.getNextPageToken(); + if (!Strings.isNullOrEmpty(nextPageToken)) { + request = request.toBuilder().setPageToken(nextPageToken).build(); + } else { + break; + } + } + } + } +} +// [END admanager_v1_generated_NetworkService_ListNetworks_Paged_async] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/SyncListNetworks.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/SyncListNetworks.java index 18d838f22a8e..7df7fff048f9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/SyncListNetworks.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservice/listnetworks/SyncListNetworks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ // [START admanager_v1_generated_NetworkService_ListNetworks_sync] import com.google.ads.admanager.v1.ListNetworksRequest; -import com.google.ads.admanager.v1.ListNetworksResponse; +import com.google.ads.admanager.v1.Network; import com.google.ads.admanager.v1.NetworkServiceClient; public class SyncListNetworks { @@ -34,8 +34,15 @@ public static void syncListNetworks() throws Exception { // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (NetworkServiceClient networkServiceClient = NetworkServiceClient.create()) { - ListNetworksRequest request = ListNetworksRequest.newBuilder().build(); - ListNetworksResponse response = networkServiceClient.listNetworks(request); + ListNetworksRequest request = + ListNetworksRequest.newBuilder() + .setPageSize(883849137) + .setPageToken("pageToken873572522") + .setSkip(3532159) + .build(); + for (Network element : networkServiceClient.listNetworks(request).iterateAll()) { + // doThingsWith(element); + } } } } diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservicesettings/getnetwork/SyncGetNetwork.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservicesettings/getnetwork/SyncGetNetwork.java index 9dfdebb3ad20..ea9f1912609e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservicesettings/getnetwork/SyncGetNetwork.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/networkservicesettings/getnetwork/SyncGetNetwork.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetCredentialsProvider.java index 12d2b6e9468a..c077e58aa33b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetEndpoint.java index 64a06be29cdf..ad39d6981d92 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/AsyncGetOperatingSystem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/AsyncGetOperatingSystem.java index cee1e52ea49c..35e027297d96 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/AsyncGetOperatingSystem.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/AsyncGetOperatingSystem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystem.java index 82281eac3c3c..929e0da368c2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystem.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemOperatingsystemname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemOperatingsystemname.java index 8b80cc8de819..bd752c2b7262 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemOperatingsystemname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemOperatingsystemname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemString.java index 7ce00828833d..2e6b5d7b04b9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/getoperatingsystem/SyncGetOperatingSystemString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystems.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystems.java index e7e608e8514e..632b7e47f887 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystems.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystemsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystemsPaged.java index 2f0e8193919f..97c42b4efa54 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystemsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/AsyncListOperatingSystemsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystems.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystems.java index 57f7033e3e05..29576af36f29 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystems.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsNetworkname.java index 391693be6b43..b09f7f1246d7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsString.java index 7209e1095ba6..4d882e48d91a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservice/listoperatingsystems/SyncListOperatingSystemsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservicesettings/getoperatingsystem/SyncGetOperatingSystem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservicesettings/getoperatingsystem/SyncGetOperatingSystem.java index 97d88358f2f9..6cfa4edbc07c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservicesettings/getoperatingsystem/SyncGetOperatingSystem.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemservicesettings/getoperatingsystem/SyncGetOperatingSystem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetCredentialsProvider.java index 76dcacba8077..b727395b81fd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetEndpoint.java index de6ceb317c57..9bc698df7e4d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/AsyncGetOperatingSystemVersion.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/AsyncGetOperatingSystemVersion.java index f1d8f6b8e29f..1d7b101ae713 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/AsyncGetOperatingSystemVersion.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/AsyncGetOperatingSystemVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersion.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersion.java index 9618becb83bf..e9a1b6d68b82 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersion.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionOperatingsystemversionname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionOperatingsystemversionname.java index 02096620cd11..932045ba02bd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionOperatingsystemversionname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionOperatingsystemversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionString.java index 4a35d03f0856..241ad15d151b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/getoperatingsystemversion/SyncGetOperatingSystemVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersions.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersions.java index faa3be9e94de..436c644c7381 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersions.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersionsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersionsPaged.java index 3404d96989e3..0a8c10d58548 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersionsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/AsyncListOperatingSystemVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersions.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersions.java index c46eefac1be6..c21bafdd0f65 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersions.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsNetworkname.java index 1f8a95e0813b..9e8e8191a8b8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsString.java index 7cccf96b42bc..6df95d6d594c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservice/listoperatingsystemversions/SyncListOperatingSystemVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservicesettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservicesettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java index 32f2e8092e8b..c5b2b016ae30 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservicesettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/operatingsystemversionservicesettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetCredentialsProvider.java index 98646f059fdb..9e64c97086e3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetEndpoint.java index 29c474b7792a..553f69d0ccfe 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/AsyncGetOrder.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/AsyncGetOrder.java index 14ab7c64363c..cee66b104de1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/AsyncGetOrder.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/AsyncGetOrder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrder.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrder.java index 2ae1850023a8..47335434e23a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrder.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderOrdername.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderOrdername.java index 290ebfe9314a..5a1a688f49ea 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderOrdername.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderOrdername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderString.java index 6aa01d211a65..fb43820d5628 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/getorder/SyncGetOrderString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrders.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrders.java index 411d2fdda65d..d97cd5ca03e2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrders.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrders.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrdersPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrdersPaged.java index 9ba85cd8fed6..03057a54f9a2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrdersPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/AsyncListOrdersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrders.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrders.java index b8a5f0735dc8..2eaa1f56187e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrders.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrders.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersNetworkname.java index 4d626f76a7cb..105638500cd6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersString.java index 8d3c10c506d9..634dad7c78ed 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservice/listorders/SyncListOrdersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservicesettings/getorder/SyncGetOrder.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservicesettings/getorder/SyncGetOrder.java index 0182a3f33009..2f805ee6ea42 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservicesettings/getorder/SyncGetOrder.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/orderservicesettings/getorder/SyncGetOrder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/AsyncBatchActivatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/AsyncBatchActivatePlacements.java index a392fc4601ba..d9413c6079fc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/AsyncBatchActivatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/AsyncBatchActivatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacements.java index f293a64db626..5507cc0120d1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsNetworknameListstring.java index cd297bb33c12..aa2b527b652f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsStringListstring.java index 1c5ddd23e100..2f5753652cd0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchactivateplacements/SyncBatchActivatePlacementsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/AsyncBatchArchivePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/AsyncBatchArchivePlacements.java index 1679f79c6379..87bec5482e09 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/AsyncBatchArchivePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/AsyncBatchArchivePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacements.java index 5a9eb0ffe53e..9ca70a09ea12 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsNetworknameListstring.java index dcc24612bc4c..57c0ea73b762 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsStringListstring.java index bcbdd550f020..7fccb7367062 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batcharchiveplacements/SyncBatchArchivePlacementsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/AsyncBatchCreatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/AsyncBatchCreatePlacements.java index 377b6a5063b0..80348d078477 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/AsyncBatchCreatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/AsyncBatchCreatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacements.java index beb173918070..ceb355d4eeeb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsNetworknameListcreateplacementrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsNetworknameListcreateplacementrequest.java index cc43b3e7286c..d0ca31329d04 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsNetworknameListcreateplacementrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsNetworknameListcreateplacementrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsStringListcreateplacementrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsStringListcreateplacementrequest.java index 0d735d282ecd..a4031d572c4e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsStringListcreateplacementrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchcreateplacements/SyncBatchCreatePlacementsStringListcreateplacementrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/AsyncBatchDeactivatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/AsyncBatchDeactivatePlacements.java index 4f52f396df30..f6c9b2f5553a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/AsyncBatchDeactivatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/AsyncBatchDeactivatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacements.java index 9914d7a9e909..3f9fc5d91fe2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsNetworknameListstring.java index e2f6f6378222..e22cdd327593 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsStringListstring.java index 4d846c04b4b9..d4257325f3ea 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchdeactivateplacements/SyncBatchDeactivatePlacementsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/AsyncBatchUpdatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/AsyncBatchUpdatePlacements.java index 047da8ff63cc..aae211d91a23 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/AsyncBatchUpdatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/AsyncBatchUpdatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacements.java index 7668fb08dad4..6cba33cc1d4f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsNetworknameListupdateplacementrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsNetworknameListupdateplacementrequest.java index fec07a259b22..b4d655969cd3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsNetworknameListupdateplacementrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsNetworknameListupdateplacementrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsStringListupdateplacementrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsStringListupdateplacementrequest.java index 0b5519d0f654..a7e405947346 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsStringListupdateplacementrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/batchupdateplacements/SyncBatchUpdatePlacementsStringListupdateplacementrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetCredentialsProvider.java index a8accd94b88b..10cb6cd854a9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetEndpoint.java index 748da6b87e1b..eb38af5879e9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/AsyncCreatePlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/AsyncCreatePlacement.java index ea8709249f3a..b51a550c3fce 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/AsyncCreatePlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/AsyncCreatePlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacement.java index 6aabf846c601..216dc585b344 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementNetworknamePlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementNetworknamePlacement.java index 836b793f13b5..bc14d5b0d52a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementNetworknamePlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementNetworknamePlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementStringPlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementStringPlacement.java index a8913cf5089c..88f41cf1e0db 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementStringPlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/createplacement/SyncCreatePlacementStringPlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/AsyncGetPlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/AsyncGetPlacement.java index ad8e686218a1..e3e6de7fbd23 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/AsyncGetPlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/AsyncGetPlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacement.java index 21c5042787a5..0f634cd42d81 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementPlacementname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementPlacementname.java index 1afa024c46c2..b92b10d372a2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementPlacementname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementPlacementname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementString.java index 9b664e43af6a..f8122a397a3f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/getplacement/SyncGetPlacementString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacements.java index 9e64271e558c..f0f0527444e0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacementsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacementsPaged.java index d576db82ac69..837b14097427 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacementsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/AsyncListPlacementsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacements.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacements.java index b91aa5df9083..b2467153c638 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacements.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacements.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsNetworkname.java index d2ca0a27694f..ab9da20ea364 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsString.java index f4f2935a85d5..8081adc5fe27 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/listplacements/SyncListPlacementsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/AsyncUpdatePlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/AsyncUpdatePlacement.java index 3315aaf4f782..7567371da903 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/AsyncUpdatePlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/AsyncUpdatePlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacement.java index 91b0ecbfc444..68f2d36dd84f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacementPlacementFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacementPlacementFieldmask.java index 816c7f359420..db34508e0b53 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacementPlacementFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservice/updateplacement/SyncUpdatePlacementPlacementFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservicesettings/getplacement/SyncGetPlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservicesettings/getplacement/SyncGetPlacement.java index 953e216a77ff..1d9e1ba2d80b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservicesettings/getplacement/SyncGetPlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/placementservicesettings/getplacement/SyncGetPlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetCredentialsProvider.java index 9b5325e2c7ba..66ab93f4dfef 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetEndpoint.java index 75df03d84263..1079bd14ae28 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/AsyncCreatePrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/AsyncCreatePrivateAuctionDeal.java index 2984f14865bd..afbcd80928ef 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/AsyncCreatePrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/AsyncCreatePrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDeal.java index cee3b491a3ef..e12e583640af 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealNetworknamePrivateauctiondeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealNetworknamePrivateauctiondeal.java index 30681c10cb90..380cbb494b4a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealNetworknamePrivateauctiondeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealNetworknamePrivateauctiondeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealStringPrivateauctiondeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealStringPrivateauctiondeal.java index c87a97f3212a..1030afa666a0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealStringPrivateauctiondeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/createprivateauctiondeal/SyncCreatePrivateAuctionDealStringPrivateauctiondeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/AsyncGetPrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/AsyncGetPrivateAuctionDeal.java index 8595d6b39092..34fc72844ccf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/AsyncGetPrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/AsyncGetPrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java index 067dd7a14292..34ba3c7bd720 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealPrivateauctiondealname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealPrivateauctiondealname.java index 12045b1c1395..47d69e451e14 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealPrivateauctiondealname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealPrivateauctiondealname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealString.java index 5082bf91fedf..351fdd3472dd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/getprivateauctiondeal/SyncGetPrivateAuctionDealString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDeals.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDeals.java index e1b6f4193740..2c4e3d3105c5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDeals.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDeals.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDealsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDealsPaged.java index 5d441189b2a9..e98eff2e4721 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDealsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/AsyncListPrivateAuctionDealsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDeals.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDeals.java index 9df7725830d8..6c9f241637b2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDeals.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDeals.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsNetworkname.java index 703f09fc8721..12517729fafd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsString.java index 2c0a8805ec6f..44c457a9c38a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/listprivateauctiondeals/SyncListPrivateAuctionDealsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/AsyncUpdatePrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/AsyncUpdatePrivateAuctionDeal.java index 4abe000a7614..e352b7ad3941 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/AsyncUpdatePrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/AsyncUpdatePrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDeal.java index 9967fb79ac45..9cc19b0890c4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDealPrivateauctiondealFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDealPrivateauctiondealFieldmask.java index 38cdde494457..7ddc96ca4886 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDealPrivateauctiondealFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservice/updateprivateauctiondeal/SyncUpdatePrivateAuctionDealPrivateauctiondealFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservicesettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservicesettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java index 4e6508b6632f..49dcf9b9e974 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservicesettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctiondealservicesettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetCredentialsProvider.java index 98d6917fa2e4..a5b0a8576365 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetEndpoint.java index 627139153916..a915912a2040 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/AsyncCreatePrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/AsyncCreatePrivateAuction.java index 7841481fc7f8..8114ea82d6db 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/AsyncCreatePrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/AsyncCreatePrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuction.java index aa625b22539f..9bcfc21f07eb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionNetworknamePrivateauction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionNetworknamePrivateauction.java index 83d3e22b960d..c001925c3e44 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionNetworknamePrivateauction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionNetworknamePrivateauction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionStringPrivateauction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionStringPrivateauction.java index 4e4c81f3ad12..9059c63e9e97 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionStringPrivateauction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/createprivateauction/SyncCreatePrivateAuctionStringPrivateauction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/AsyncGetPrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/AsyncGetPrivateAuction.java index 4a8172adad7b..bcc7cc090e7f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/AsyncGetPrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/AsyncGetPrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuction.java index acfe28dd5412..5c745a277b41 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionPrivateauctionname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionPrivateauctionname.java index 92f1deb4d9bb..a7818de56e26 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionPrivateauctionname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionPrivateauctionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionString.java index 23a08cd1c0fe..cb34969df10c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/getprivateauction/SyncGetPrivateAuctionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctions.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctions.java index 648540cd491b..bfe2825027de 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctions.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctionsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctionsPaged.java index fdd1d1b34c5f..34779a1f0302 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctionsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/AsyncListPrivateAuctionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctions.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctions.java index 7950d719a7a8..d858d5bf5b1e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctions.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsNetworkname.java index 2a01eb041023..5b4174101a98 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsString.java index 5754284f0f94..9edd14a591f9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/listprivateauctions/SyncListPrivateAuctionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/AsyncUpdatePrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/AsyncUpdatePrivateAuction.java index 9087e7712842..f9d47045f997 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/AsyncUpdatePrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/AsyncUpdatePrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuction.java index 55f899a890af..d6c5a024cfd3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuctionPrivateauctionFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuctionPrivateauctionFieldmask.java index 0a1b401da584..63bfe1110a7f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuctionPrivateauctionFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservice/updateprivateauction/SyncUpdatePrivateAuctionPrivateauctionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservicesettings/getprivateauction/SyncGetPrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservicesettings/getprivateauction/SyncGetPrivateAuction.java index 8686cc230032..1f6f4272e322 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservicesettings/getprivateauction/SyncGetPrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/privateauctionservicesettings/getprivateauction/SyncGetPrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetCredentialsProvider.java index 33699f2a514a..0357be063470 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetEndpoint.java index a4f4067e780b..4f811be8efde 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/AsyncGetProgrammaticBuyer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/AsyncGetProgrammaticBuyer.java index 435a845b1efe..f52b46e1d893 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/AsyncGetProgrammaticBuyer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/AsyncGetProgrammaticBuyer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java index 9cc86d6a8324..900d66423c38 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerProgrammaticbuyername.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerProgrammaticbuyername.java index 00b512fd2a87..2e14819fca85 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerProgrammaticbuyername.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerProgrammaticbuyername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerString.java index 97941e78b53f..7133151e60af 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/getprogrammaticbuyer/SyncGetProgrammaticBuyerString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyers.java index b6213a146512..ed68fd4fbcfa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyersPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyersPaged.java index 40a6afc2fe05..0188ef5ce864 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyersPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/AsyncListProgrammaticBuyersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyers.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyers.java index 70fbd70cc08e..9a102ddce8fa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyers.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersNetworkname.java index 021fecf7d835..aeedaddda450 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersString.java index 3832867e4522..ce7863ead37f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservice/listprogrammaticbuyers/SyncListProgrammaticBuyersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservicesettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservicesettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java index bfc11eb7e237..944b31b39305 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservicesettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/programmaticbuyerservicesettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetCredentialsProvider.java index 8fa07f988bf9..a31c740af4ed 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetEndpoint.java index 8950063c7a27..0706388f70fe 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/AsyncCreateReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/AsyncCreateReport.java index 22c385666e35..c4f145f769b8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/AsyncCreateReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/AsyncCreateReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReport.java index 7939f8b239d0..531038011412 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportNetworknameReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportNetworknameReport.java index 48fa84f42855..cff9ba528d6b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportNetworknameReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportNetworknameReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportStringReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportStringReport.java index 854298545bcf..1730f05edcad 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportStringReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/createreport/SyncCreateReportStringReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRows.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRows.java index 26fe75e7b2a8..a94385c52e4a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRows.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRowsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRowsPaged.java index 3123cad074bd..bb81807be3b8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRowsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/AsyncFetchReportResultRowsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRows.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRows.java index d554dfbcc224..91a20d23c7b0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRows.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRowsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRowsString.java index 73875178425d..268253c1a292 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRowsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/fetchreportresultrows/SyncFetchReportResultRowsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/AsyncGetReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/AsyncGetReport.java index 274043c66117..0396f31b3b88 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/AsyncGetReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/AsyncGetReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReport.java index 4de2e8668ec3..9e8b404bca68 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportReportname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportReportname.java index 2428139463aa..3860484b6528 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportReportname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportReportname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportString.java index 677373d8e1c2..882736ebbc65 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/getreport/SyncGetReportString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReports.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReports.java index e33c06a8e478..3f8303ab0e59 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReports.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReportsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReportsPaged.java index 3588e84d2d08..ccaf6b76d497 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReportsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/AsyncListReportsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReports.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReports.java index d6431b6c3e56..9a208c804e33 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReports.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsNetworkname.java index 10ffdc13f854..e460f6d3eda2 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsString.java index cec3e4c4480c..cdabd9701f0e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/listreports/SyncListReportsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReport.java index 0dc121bae22d..0bbca2334251 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReportLRO.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReportLRO.java index 6eeb01fca4c5..1b7ca86917a1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReportLRO.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/AsyncRunReportLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReport.java index 89f5dc8f4420..a98dc34b5743 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportReportname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportReportname.java index 7175350c5b56..7b03d4c5853f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportReportname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportReportname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportString.java index 77e12d190edc..72f825ce3cfc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/runreport/SyncRunReportString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/AsyncUpdateReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/AsyncUpdateReport.java index 07ffd9c0a92f..425b83ecba01 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/AsyncUpdateReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/AsyncUpdateReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReport.java index 82805c8e0cf2..e5f6e78370b9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReportReportFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReportReportFieldmask.java index cb16bdad3f6c..717af84abb8f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReportReportFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservice/updatereport/SyncUpdateReportReportFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/getreport/SyncGetReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/getreport/SyncGetReport.java index 1307c93abcd0..1b990c0abf3f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/getreport/SyncGetReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/getreport/SyncGetReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/runreport/SyncRunReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/runreport/SyncRunReport.java index 4156ef44680b..d8a96f3d8ccc 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/runreport/SyncRunReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/reportservicesettings/runreport/SyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetCredentialsProvider.java index 7466f0a3889e..19637ee8681d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetEndpoint.java index 014f8cfa03b7..dfcd17ff6e67 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/AsyncGetRole.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/AsyncGetRole.java index 98d010c1a01d..c297e2223cf0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/AsyncGetRole.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/AsyncGetRole.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRole.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRole.java index 38972515cca6..fd70570a08b5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRole.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRole.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleRolename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleRolename.java index e1c3362158b7..35d93ead142b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleRolename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleRolename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleString.java index a2afc9e0f339..467353122c8f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/getrole/SyncGetRoleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRoles.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRoles.java index f8d0d09611c4..bffb2012ca8b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRoles.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRoles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRolesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRolesPaged.java index 575c27bebf57..a98979a503d7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRolesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/AsyncListRolesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRoles.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRoles.java index 58970c4ed701..9276153e8a43 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRoles.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRoles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesNetworkname.java index 3bd3ea5e207e..0f749f8aa472 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesString.java index c28441b9e383..74a25c8008c3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservice/listroles/SyncListRolesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservicesettings/getrole/SyncGetRole.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservicesettings/getrole/SyncGetRole.java index bdca6cecf62c..af4e792c73df 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservicesettings/getrole/SyncGetRole.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/roleservicesettings/getrole/SyncGetRole.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/AsyncBatchCreateSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/AsyncBatchCreateSites.java index afdb21a01534..4b971e3d783d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/AsyncBatchCreateSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/AsyncBatchCreateSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSites.java index 35bddf62450e..cd0c43b01a02 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesNetworknameListcreatesiterequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesNetworknameListcreatesiterequest.java index be449c5d5715..5a31c574f027 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesNetworknameListcreatesiterequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesNetworknameListcreatesiterequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesStringListcreatesiterequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesStringListcreatesiterequest.java index 96246f798e5c..32e686d57a14 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesStringListcreatesiterequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchcreatesites/SyncBatchCreateSitesStringListcreatesiterequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/AsyncBatchDeactivateSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/AsyncBatchDeactivateSites.java index 6d5fe6316e7f..ab8357e45bda 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/AsyncBatchDeactivateSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/AsyncBatchDeactivateSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSites.java index 5efa5f0c551e..eda8e4a66964 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesNetworknameListstring.java index e795243084f1..91126fde690e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesStringListstring.java index 8720c8f1acee..22e87b8cd901 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchdeactivatesites/SyncBatchDeactivateSitesStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/AsyncBatchSubmitSitesForApproval.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/AsyncBatchSubmitSitesForApproval.java index ef60733b9a96..320e357b58e7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/AsyncBatchSubmitSitesForApproval.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/AsyncBatchSubmitSitesForApproval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApproval.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApproval.java index 301f0bfc2f55..7fb06ab27da1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApproval.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApproval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalNetworknameListstring.java index 6c604735f29e..f0c3deb8bb92 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalStringListstring.java index da16e278bbf2..3f9663fb1c05 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchsubmitsitesforapproval/SyncBatchSubmitSitesForApprovalStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/AsyncBatchUpdateSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/AsyncBatchUpdateSites.java index 53c7990a192f..41ed819ae058 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/AsyncBatchUpdateSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/AsyncBatchUpdateSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSites.java index 451491bfcd8e..ce4b448615f3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesNetworknameListupdatesiterequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesNetworknameListupdatesiterequest.java index 53c9955edb79..16671a5c8f75 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesNetworknameListupdatesiterequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesNetworknameListupdatesiterequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesStringListupdatesiterequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesStringListupdatesiterequest.java index 75d9bd8125a6..8a4186fb94b0 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesStringListupdatesiterequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/batchupdatesites/SyncBatchUpdateSitesStringListupdatesiterequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetCredentialsProvider.java index 59aeb2ebfb80..a61fa4066c7e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetEndpoint.java index 3cdf4bc7f87f..5056f5f56a48 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/AsyncCreateSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/AsyncCreateSite.java index c2e21babed1c..a2715c345d89 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/AsyncCreateSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/AsyncCreateSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSite.java index 3fa4b508c12a..75d55331687b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteNetworknameSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteNetworknameSite.java index f9f63204f08f..7f8665f7eccf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteNetworknameSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteNetworknameSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteStringSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteStringSite.java index 513583a27b4e..4f0e2597a4cf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteStringSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/createsite/SyncCreateSiteStringSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/AsyncGetSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/AsyncGetSite.java index 5f24131a4dc8..b40054a64e2e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/AsyncGetSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/AsyncGetSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSite.java index a4bfc951f2d0..d6ffb064d05d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteSitename.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteSitename.java index a19b6c08ed23..6d03e7dc34a9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteSitename.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteSitename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteString.java index b60a705f5869..9b68b3defbd3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/getsite/SyncGetSiteString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSites.java index eda6fc89bed3..f40311473e76 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSitesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSitesPaged.java index b6e20f85f42a..5013e529bd02 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSitesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/AsyncListSitesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSites.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSites.java index f27048a4d950..b6af195d2b04 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSites.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSites.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesNetworkname.java index cbde2e22b867..8a0ae7d6e9a3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesString.java index 42ee886dff8a..c6a41fd0146f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/listsites/SyncListSitesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/AsyncUpdateSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/AsyncUpdateSite.java index a86ed387e5c7..ba20b4c386a1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/AsyncUpdateSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/AsyncUpdateSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSite.java index 90506d94f308..d2f46b80b1ac 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSiteSiteFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSiteSiteFieldmask.java index 187d2e13a0cb..9c7e9fb20f01 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSiteSiteFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservice/updatesite/SyncUpdateSiteSiteFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservicesettings/getsite/SyncGetSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservicesettings/getsite/SyncGetSite.java index e227205a3db0..8a1cf8d4dc67 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservicesettings/getsite/SyncGetSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/siteservicesettings/getsite/SyncGetSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adbreakservicestubsettings/getadbreak/SyncGetAdBreak.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adbreakservicestubsettings/getadbreak/SyncGetAdBreak.java index eae6f24fb878..b49475e01659 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adbreakservicestubsettings/getadbreak/SyncGetAdBreak.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adbreakservicestubsettings/getadbreak/SyncGetAdBreak.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java index df645095d81a..29eccd203cda 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/batchallowadreviewcenterads/SyncBatchAllowAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java index c28b7e3659e7..6cf337014b61 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adreviewcenteradservicestubsettings/searchadreviewcenterads/SyncSearchAdReviewCenterAds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adunitservicestubsettings/getadunit/SyncGetAdUnit.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adunitservicestubsettings/getadunit/SyncGetAdUnit.java index 5cc7d99836b9..004de8435a9c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adunitservicestubsettings/getadunit/SyncGetAdUnit.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/adunitservicestubsettings/getadunit/SyncGetAdUnit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/applicationservicestubsettings/getapplication/SyncGetApplication.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/applicationservicestubsettings/getapplication/SyncGetApplication.java index cb9e33e6c095..c56d3e2d176e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/applicationservicestubsettings/getapplication/SyncGetApplication.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/applicationservicestubsettings/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/audiencesegmentservicestubsettings/getaudiencesegment/SyncGetAudienceSegment.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/audiencesegmentservicestubsettings/getaudiencesegment/SyncGetAudienceSegment.java index 092da3940585..58e5f401f657 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/audiencesegmentservicestubsettings/getaudiencesegment/SyncGetAudienceSegment.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/audiencesegmentservicestubsettings/getaudiencesegment/SyncGetAudienceSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/bandwidthgroupservicestubsettings/getbandwidthgroup/SyncGetBandwidthGroup.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/bandwidthgroupservicestubsettings/getbandwidthgroup/SyncGetBandwidthGroup.java index c00dc27bf5d3..3711287365ff 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/bandwidthgroupservicestubsettings/getbandwidthgroup/SyncGetBandwidthGroup.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/bandwidthgroupservicestubsettings/getbandwidthgroup/SyncGetBandwidthGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserlanguageservicestubsettings/getbrowserlanguage/SyncGetBrowserLanguage.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserlanguageservicestubsettings/getbrowserlanguage/SyncGetBrowserLanguage.java index ae1962ac827c..86ee69237691 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserlanguageservicestubsettings/getbrowserlanguage/SyncGetBrowserLanguage.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserlanguageservicestubsettings/getbrowserlanguage/SyncGetBrowserLanguage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserservicestubsettings/getbrowser/SyncGetBrowser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserservicestubsettings/getbrowser/SyncGetBrowser.java index 96252a8dc7b0..b94242f3012c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserservicestubsettings/getbrowser/SyncGetBrowser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/browserservicestubsettings/getbrowser/SyncGetBrowser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatakeyservicestubsettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatakeyservicestubsettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java index ae9116f10ba0..b87dfe0f4928 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatakeyservicestubsettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatakeyservicestubsettings/getcmsmetadatakey/SyncGetCmsMetadataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatavalueservicestubsettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatavalueservicestubsettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java index ae2889c8a8f4..a3953ebf4e77 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatavalueservicestubsettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/cmsmetadatavalueservicestubsettings/getcmsmetadatavalue/SyncGetCmsMetadataValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/companyservicestubsettings/getcompany/SyncGetCompany.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/companyservicestubsettings/getcompany/SyncGetCompany.java index 31b48d93a706..0a0bd19ade81 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/companyservicestubsettings/getcompany/SyncGetCompany.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/companyservicestubsettings/getcompany/SyncGetCompany.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contactservicestubsettings/getcontact/SyncGetContact.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contactservicestubsettings/getcontact/SyncGetContact.java index dcf378969a70..1449a2534964 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contactservicestubsettings/getcontact/SyncGetContact.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contactservicestubsettings/getcontact/SyncGetContact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentbundleservicestubsettings/getcontentbundle/SyncGetContentBundle.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentbundleservicestubsettings/getcontentbundle/SyncGetContentBundle.java index 6d76483461a5..8d26b3d802c4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentbundleservicestubsettings/getcontentbundle/SyncGetContentBundle.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentbundleservicestubsettings/getcontentbundle/SyncGetContentBundle.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentlabelservicestubsettings/getcontentlabel/SyncGetContentLabel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentlabelservicestubsettings/getcontentlabel/SyncGetContentLabel.java index d9858c58ddef..8a695b421622 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentlabelservicestubsettings/getcontentlabel/SyncGetContentLabel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentlabelservicestubsettings/getcontentlabel/SyncGetContentLabel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentservicestubsettings/getcontent/SyncGetContent.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentservicestubsettings/getcontent/SyncGetContent.java index 51c8a4b6b28e..94aaad0a60e5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentservicestubsettings/getcontent/SyncGetContent.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/contentservicestubsettings/getcontent/SyncGetContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/creativetemplateservicestubsettings/getcreativetemplate/SyncGetCreativeTemplate.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/creativetemplateservicestubsettings/getcreativetemplate/SyncGetCreativeTemplate.java index f2697bfdfc87..78787d8fafb6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/creativetemplateservicestubsettings/getcreativetemplate/SyncGetCreativeTemplate.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/creativetemplateservicestubsettings/getcreativetemplate/SyncGetCreativeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customfieldservicestubsettings/getcustomfield/SyncGetCustomField.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customfieldservicestubsettings/getcustomfield/SyncGetCustomField.java index 30c894206d43..50d7a27d8f01 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customfieldservicestubsettings/getcustomfield/SyncGetCustomField.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customfieldservicestubsettings/getcustomfield/SyncGetCustomField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingkeyservicestubsettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingkeyservicestubsettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java index dd1a901c7012..c73a9de78da4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingkeyservicestubsettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingkeyservicestubsettings/getcustomtargetingkey/SyncGetCustomTargetingKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingvalueservicestubsettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingvalueservicestubsettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java index a7a4224fd0bd..c3d357c00f32 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingvalueservicestubsettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/customtargetingvalueservicestubsettings/getcustomtargetingvalue/SyncGetCustomTargetingValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecapabilityservicestubsettings/getdevicecapability/SyncGetDeviceCapability.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecapabilityservicestubsettings/getdevicecapability/SyncGetDeviceCapability.java index 459f4b0f7c17..bd61de0ce648 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecapabilityservicestubsettings/getdevicecapability/SyncGetDeviceCapability.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecapabilityservicestubsettings/getdevicecapability/SyncGetDeviceCapability.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecategoryservicestubsettings/getdevicecategory/SyncGetDeviceCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecategoryservicestubsettings/getdevicecategory/SyncGetDeviceCategory.java index ea9562901b0b..4a5273c86e15 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecategoryservicestubsettings/getdevicecategory/SyncGetDeviceCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicecategoryservicestubsettings/getdevicecategory/SyncGetDeviceCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicemanufacturerservicestubsettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicemanufacturerservicestubsettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java index 7450929b5028..8f2490d85f8e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicemanufacturerservicestubsettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/devicemanufacturerservicestubsettings/getdevicemanufacturer/SyncGetDeviceManufacturer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/entitysignalsmappingservicestubsettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/entitysignalsmappingservicestubsettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java index 594cf89686b4..039f49117eb9 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/entitysignalsmappingservicestubsettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/entitysignalsmappingservicestubsettings/getentitysignalsmapping/SyncGetEntitySignalsMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/geotargetservicestubsettings/getgeotarget/SyncGetGeoTarget.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/geotargetservicestubsettings/getgeotarget/SyncGetGeoTarget.java index 0cbf59571fb6..29abe55852b8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/geotargetservicestubsettings/getgeotarget/SyncGetGeoTarget.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/geotargetservicestubsettings/getgeotarget/SyncGetGeoTarget.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/lineitemservicestubsettings/getlineitem/SyncGetLineItem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/lineitemservicestubsettings/getlineitem/SyncGetLineItem.java new file mode 100644 index 000000000000..70e8af2c2829 --- /dev/null +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/lineitemservicestubsettings/getlineitem/SyncGetLineItem.java @@ -0,0 +1,56 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.ads.admanager.v1.stub.samples; + +// [START admanager_v1_generated_LineItemServiceStubSettings_GetLineItem_sync] +import com.google.ads.admanager.v1.stub.LineItemServiceStubSettings; +import java.time.Duration; + +public class SyncGetLineItem { + + public static void main(String[] args) throws Exception { + syncGetLineItem(); + } + + public static void syncGetLineItem() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + LineItemServiceStubSettings.Builder lineItemServiceSettingsBuilder = + LineItemServiceStubSettings.newBuilder(); + lineItemServiceSettingsBuilder + .getLineItemSettings() + .setRetrySettings( + lineItemServiceSettingsBuilder + .getLineItemSettings() + .getRetrySettings() + .toBuilder() + .setInitialRetryDelayDuration(Duration.ofSeconds(1)) + .setInitialRpcTimeoutDuration(Duration.ofSeconds(5)) + .setMaxAttempts(5) + .setMaxRetryDelayDuration(Duration.ofSeconds(30)) + .setMaxRpcTimeoutDuration(Duration.ofSeconds(60)) + .setRetryDelayMultiplier(1.3) + .setRpcTimeoutMultiplier(1.5) + .setTotalTimeoutDuration(Duration.ofSeconds(300)) + .build()); + LineItemServiceStubSettings lineItemServiceSettings = lineItemServiceSettingsBuilder.build(); + } +} +// [END admanager_v1_generated_LineItemServiceStubSettings_GetLineItem_sync] diff --git a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobilecarrierservicestubsettings/getmobilecarrier/SyncGetMobileCarrier.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobilecarrierservicestubsettings/getmobilecarrier/SyncGetMobileCarrier.java index 7e8d6817d6fe..6ea4bd538bf3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobilecarrierservicestubsettings/getmobilecarrier/SyncGetMobileCarrier.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobilecarrierservicestubsettings/getmobilecarrier/SyncGetMobileCarrier.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledeviceservicestubsettings/getmobiledevice/SyncGetMobileDevice.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledeviceservicestubsettings/getmobiledevice/SyncGetMobileDevice.java index 47d0d9cd4e48..18369a94f63f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledeviceservicestubsettings/getmobiledevice/SyncGetMobileDevice.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledeviceservicestubsettings/getmobiledevice/SyncGetMobileDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledevicesubmodelservicestubsettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledevicesubmodelservicestubsettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java index bac3fc862840..9706d9d85857 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledevicesubmodelservicestubsettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/mobiledevicesubmodelservicestubsettings/getmobiledevicesubmodel/SyncGetMobileDeviceSubmodel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/networkservicestubsettings/getnetwork/SyncGetNetwork.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/networkservicestubsettings/getnetwork/SyncGetNetwork.java index ec62101c2f33..68b82c6f112e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/networkservicestubsettings/getnetwork/SyncGetNetwork.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/networkservicestubsettings/getnetwork/SyncGetNetwork.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemservicestubsettings/getoperatingsystem/SyncGetOperatingSystem.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemservicestubsettings/getoperatingsystem/SyncGetOperatingSystem.java index bbe358516ed2..35616b376f01 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemservicestubsettings/getoperatingsystem/SyncGetOperatingSystem.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemservicestubsettings/getoperatingsystem/SyncGetOperatingSystem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemversionservicestubsettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemversionservicestubsettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java index 992fc238987b..87e13e1031e3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemversionservicestubsettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/operatingsystemversionservicestubsettings/getoperatingsystemversion/SyncGetOperatingSystemVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/orderservicestubsettings/getorder/SyncGetOrder.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/orderservicestubsettings/getorder/SyncGetOrder.java index 3821fd6adf28..1cf2dfe8ccf8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/orderservicestubsettings/getorder/SyncGetOrder.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/orderservicestubsettings/getorder/SyncGetOrder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/placementservicestubsettings/getplacement/SyncGetPlacement.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/placementservicestubsettings/getplacement/SyncGetPlacement.java index 80688a7a0b8d..7a5712e6a342 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/placementservicestubsettings/getplacement/SyncGetPlacement.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/placementservicestubsettings/getplacement/SyncGetPlacement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctiondealservicestubsettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctiondealservicestubsettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java index 7b67cd7865d1..d9239785264a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctiondealservicestubsettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctiondealservicestubsettings/getprivateauctiondeal/SyncGetPrivateAuctionDeal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctionservicestubsettings/getprivateauction/SyncGetPrivateAuction.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctionservicestubsettings/getprivateauction/SyncGetPrivateAuction.java index da0de4a40dfa..980d3a8e0672 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctionservicestubsettings/getprivateauction/SyncGetPrivateAuction.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/privateauctionservicestubsettings/getprivateauction/SyncGetPrivateAuction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/programmaticbuyerservicestubsettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/programmaticbuyerservicestubsettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java index 945eed7c1e11..846eb3a47dd1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/programmaticbuyerservicestubsettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/programmaticbuyerservicestubsettings/getprogrammaticbuyer/SyncGetProgrammaticBuyer.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/getreport/SyncGetReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/getreport/SyncGetReport.java index 9ea288ff41a8..6249c3b11f27 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/getreport/SyncGetReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/getreport/SyncGetReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/runreport/SyncRunReport.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/runreport/SyncRunReport.java index 2dac08b4ff52..3771e84ea55e 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/runreport/SyncRunReport.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/reportservicestubsettings/runreport/SyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/roleservicestubsettings/getrole/SyncGetRole.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/roleservicestubsettings/getrole/SyncGetRole.java index 3afdc39e1fae..d2ebc6843648 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/roleservicestubsettings/getrole/SyncGetRole.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/roleservicestubsettings/getrole/SyncGetRole.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/siteservicestubsettings/getsite/SyncGetSite.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/siteservicestubsettings/getsite/SyncGetSite.java index 3b7aeef3626c..8fca19ef29e7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/siteservicestubsettings/getsite/SyncGetSite.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/siteservicestubsettings/getsite/SyncGetSite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/taxonomycategoryservicestubsettings/gettaxonomycategory/SyncGetTaxonomyCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/taxonomycategoryservicestubsettings/gettaxonomycategory/SyncGetTaxonomyCategory.java index 64d2bc73de15..9c47a9f3f550 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/taxonomycategoryservicestubsettings/gettaxonomycategory/SyncGetTaxonomyCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/taxonomycategoryservicestubsettings/gettaxonomycategory/SyncGetTaxonomyCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/teamservicestubsettings/getteam/SyncGetTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/teamservicestubsettings/getteam/SyncGetTeam.java index e5736251d8d6..f02d7b737e15 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/teamservicestubsettings/getteam/SyncGetTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/teamservicestubsettings/getteam/SyncGetTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/userservicestubsettings/getuser/SyncGetUser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/userservicestubsettings/getuser/SyncGetUser.java index 8541f2872c40..8a919c363376 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/userservicestubsettings/getuser/SyncGetUser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/stub/userservicestubsettings/getuser/SyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetCredentialsProvider.java index 56cb7621b6dc..de80e3beadeb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetEndpoint.java index 1f0cc5fbd1de..1e39a78cf4aa 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/AsyncGetTaxonomyCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/AsyncGetTaxonomyCategory.java index 8b0649b076c8..6659d8427987 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/AsyncGetTaxonomyCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/AsyncGetTaxonomyCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategory.java index 08817366adcf..a82fcfb2660b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryString.java index 63563bf05864..b1142965e94f 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryTaxonomycategoryname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryTaxonomycategoryname.java index ea17bc16c74a..787e6ecb84d3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryTaxonomycategoryname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/gettaxonomycategory/SyncGetTaxonomyCategoryTaxonomycategoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategories.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategories.java index aa6ed24c57d3..240c76925876 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategories.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategoriesPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategoriesPaged.java index 46dc5a800045..05b2e8f1033a 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategoriesPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/AsyncListTaxonomyCategoriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategories.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategories.java index 22694b4637f0..6dcbbed1fa26 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategories.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesNetworkname.java index dd7d28db7706..59cac4a63792 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesString.java index 6e39de38d572..639100dfb814 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservice/listtaxonomycategories/SyncListTaxonomyCategoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservicesettings/gettaxonomycategory/SyncGetTaxonomyCategory.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservicesettings/gettaxonomycategory/SyncGetTaxonomyCategory.java index a6cf060f92a6..084fb1d10d31 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservicesettings/gettaxonomycategory/SyncGetTaxonomyCategory.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/taxonomycategoryservicesettings/gettaxonomycategory/SyncGetTaxonomyCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/AsyncBatchActivateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/AsyncBatchActivateTeams.java index 1ec1fdc3af73..e4ce5b0ef1ca 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/AsyncBatchActivateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/AsyncBatchActivateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeams.java index 850b193794a2..8a5090cdfeb4 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsNetworknameListstring.java index 67e585f0c3b6..a8c628e296a6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsStringListstring.java index 80f77a3c04d1..37186295c0d8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchactivateteams/SyncBatchActivateTeamsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/AsyncBatchCreateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/AsyncBatchCreateTeams.java index f97442f4320d..7b4fb31faca7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/AsyncBatchCreateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/AsyncBatchCreateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeams.java index f3e65f0a8fd8..49c9801dcc96 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsNetworknameListcreateteamrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsNetworknameListcreateteamrequest.java index 8351ede36ecf..39370f8b1972 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsNetworknameListcreateteamrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsNetworknameListcreateteamrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsStringListcreateteamrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsStringListcreateteamrequest.java index c4856c52813c..0bb4234e5cf7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsStringListcreateteamrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchcreateteams/SyncBatchCreateTeamsStringListcreateteamrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/AsyncBatchDeactivateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/AsyncBatchDeactivateTeams.java index 7310ec0ee8b7..e1715d76e71c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/AsyncBatchDeactivateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/AsyncBatchDeactivateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeams.java index 6d0aa47cba2c..a8abe04a8cd7 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsNetworknameListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsNetworknameListstring.java index 8e52ca0f47fd..65c420f321e8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsNetworknameListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsNetworknameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsStringListstring.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsStringListstring.java index 60fa8d35f41e..897c16224c03 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsStringListstring.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchdeactivateteams/SyncBatchDeactivateTeamsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/AsyncBatchUpdateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/AsyncBatchUpdateTeams.java index b9cfc74b555c..3f573c9f8188 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/AsyncBatchUpdateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/AsyncBatchUpdateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeams.java index ca79324bd375..1878383658bd 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsNetworknameListupdateteamrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsNetworknameListupdateteamrequest.java index b6658903f1a5..db4a13044715 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsNetworknameListupdateteamrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsNetworknameListupdateteamrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsStringListupdateteamrequest.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsStringListupdateteamrequest.java index 6bf62f019457..1522a5b49527 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsStringListupdateteamrequest.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/batchupdateteams/SyncBatchUpdateTeamsStringListupdateteamrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetCredentialsProvider.java index 9bb15fa3cf28..13f5ad03d392 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetEndpoint.java index 4f6be6d59913..d98ab355e924 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/AsyncCreateTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/AsyncCreateTeam.java index 5e8a2606a9b1..0ebec8ff9db5 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/AsyncCreateTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/AsyncCreateTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeam.java index cc0dfadd89e9..677849223acb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamNetworknameTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamNetworknameTeam.java index 2e8a4a529bf3..689d7703fc47 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamNetworknameTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamNetworknameTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamStringTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamStringTeam.java index cbfa7eff57ed..28fa4ba5e9cf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamStringTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/createteam/SyncCreateTeamStringTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/AsyncGetTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/AsyncGetTeam.java index 0360e2f18141..4d5e8ee5b9f1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/AsyncGetTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/AsyncGetTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeam.java index 311b6af0c3b3..d7e18e1fa23b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamString.java index cc5c8ce7e8b5..d47376ddf0f3 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamTeamname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamTeamname.java index defe2635f60e..01617adb9833 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamTeamname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/getteam/SyncGetTeamTeamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeams.java index 7dd23a1f9b04..8d1ce37a57cb 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeamsPaged.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeamsPaged.java index c180c6172949..03103e72a5cf 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeamsPaged.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/AsyncListTeamsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeams.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeams.java index 59fca2916db1..24c9edae7fa1 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeams.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsNetworkname.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsNetworkname.java index f8b5e8f108c8..8e126bec4ebe 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsNetworkname.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsNetworkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsString.java index dcd93e427679..410814792888 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/listteams/SyncListTeamsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/AsyncUpdateTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/AsyncUpdateTeam.java index f516f8e81988..5db13e573e30 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/AsyncUpdateTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/AsyncUpdateTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeam.java index 662fc63945ed..24ec5011bc05 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeamTeamFieldmask.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeamTeamFieldmask.java index 8d354af8c9ad..c48c85f9334d 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeamTeamFieldmask.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservice/updateteam/SyncUpdateTeamTeamFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservicesettings/getteam/SyncGetTeam.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservicesettings/getteam/SyncGetTeam.java index 756e03bf54b5..3b912625f39c 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservicesettings/getteam/SyncGetTeam.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/teamservicesettings/getteam/SyncGetTeam.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetCredentialsProvider.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetCredentialsProvider.java index 1d37a7a9283f..2bb6b340d457 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetEndpoint.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetEndpoint.java index a7c5785b2ba4..234ecc64cec8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetEndpoint.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/AsyncGetUser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/AsyncGetUser.java index 07280fbe983b..ad5fc1076215 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/AsyncGetUser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/AsyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUser.java index 53acbf586fa8..80075ac27ce6 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserString.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserString.java index f30f611007b7..7c5b769e2c96 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserString.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserUsername.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserUsername.java index 10b691ac18f5..ecf50c89ade8 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserUsername.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservice/getuser/SyncGetUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservicesettings/getuser/SyncGetUser.java b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservicesettings/getuser/SyncGetUser.java index 4f7a3ff4c139..319413b0087b 100644 --- a/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservicesettings/getuser/SyncGetUser.java +++ b/java-admanager/samples/snippets/generated/com/google/ads/admanager/v1/userservicesettings/getuser/SyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/CHANGELOG.md b/java-advisorynotifications/CHANGELOG.md index 2d108016e34c..1f11ec2f7db7 100644 --- a/java-advisorynotifications/CHANGELOG.md +++ b/java-advisorynotifications/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.71.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.70.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.67.0 (2025-10-21) ### Dependencies diff --git a/java-advisorynotifications/README.md b/java-advisorynotifications/README.md index 949a7fd754bc..9166b8c65f58 100644 --- a/java-advisorynotifications/README.md +++ b/java-advisorynotifications/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-advisorynotifications - 0.67.0 + 0.70.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-advisorynotifications:0.67.0' +implementation 'com.google.cloud:google-cloud-advisorynotifications:0.70.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-advisorynotifications" % "0.67.0" +libraryDependencies += "com.google.cloud" % "google-cloud-advisorynotifications" % "0.70.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/advisory-notifications/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-advisorynotifications/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-advisorynotifications.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-advisorynotifications/0.67.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-advisorynotifications/0.70.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-advisorynotifications/google-cloud-advisorynotifications-bom/pom.xml b/java-advisorynotifications/google-cloud-advisorynotifications-bom/pom.xml index 182e311d93a6..4608975005e3 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications-bom/pom.xml +++ b/java-advisorynotifications/google-cloud-advisorynotifications-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-advisorynotifications-bom - 0.70.0-SNAPSHOT + 0.71.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-advisorynotifications - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-advisorynotifications-v1 - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-advisorynotifications-v1 - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-advisorynotifications/google-cloud-advisorynotifications/pom.xml b/java-advisorynotifications/google-cloud-advisorynotifications/pom.xml index 6a8fed02581c..2fd20475e1e4 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/pom.xml +++ b/java-advisorynotifications/google-cloud-advisorynotifications/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-advisorynotifications - 0.70.0-SNAPSHOT + 0.71.0 jar Google Advisory Notifications API Advisory Notifications API An API for accessing Advisory Notifications in Google Cloud. com.google.cloud google-cloud-advisorynotifications-parent - 0.70.0-SNAPSHOT + 0.71.0 google-cloud-advisorynotifications diff --git a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClient.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClient.java index a6eb17334632..3da358e766ae 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClient.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceSettings.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceSettings.java index 56f35c39a05c..fd1578d4ea24 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceSettings.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * }

* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdvisoryNotificationsServiceSettings diff --git a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/package-info.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/package-info.java index 09fc3893cd67..31d2ce67602a 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/package-info.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStub.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStub.java index 97c4f82a6944..24e00c164620 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStub.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStubSettings.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStubSettings.java index aa4260effed6..ff35ffffba3d 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStubSettings.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/AdvisoryNotificationsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdvisoryNotificationsServiceStubSettings diff --git a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceCallableFactory.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceCallableFactory.java index 188dbedee236..97c572d794eb 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceCallableFactory.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceStub.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceStub.java index 804d45ea90d1..b8092150e515 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceStub.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/GrpcAdvisoryNotificationsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceCallableFactory.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceCallableFactory.java index 13ed58641dc0..1b8421b64c9a 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceCallableFactory.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceStub.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceStub.java index 23cf47cd4c1a..f38d2fce0632 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceStub.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/main/java/com/google/cloud/advisorynotifications/v1/stub/HttpJsonAdvisoryNotificationsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientHttpJsonTest.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientHttpJsonTest.java index f855f0c25b8a..b406fe22889c 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientHttpJsonTest.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientTest.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientTest.java index 45a317dceacf..ed4f22eaf0ae 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientTest.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsService.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsService.java index b3ba5ba271aa..5a73cb044e2d 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsService.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsServiceImpl.java b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsServiceImpl.java index c6dec9520a8c..b3ca38690d8a 100644 --- a/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsServiceImpl.java +++ b/java-advisorynotifications/google-cloud-advisorynotifications/src/test/java/com/google/cloud/advisorynotifications/v1/MockAdvisoryNotificationsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/pom.xml b/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/pom.xml index f75726e77471..3d41d50fd7bd 100644 --- a/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/pom.xml +++ b/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-advisorynotifications-v1 - 0.70.0-SNAPSHOT + 0.71.0 grpc-google-cloud-advisorynotifications-v1 GRPC library for google-cloud-advisorynotifications com.google.cloud google-cloud-advisorynotifications-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceGrpc.java b/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceGrpc.java index 8f5972d7c3de..6736ab29584a 100644 --- a/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceGrpc.java +++ b/java-advisorynotifications/grpc-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AdvisoryNotificationsServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/pom.xml b/java-advisorynotifications/pom.xml index 9583c947d818..e4d2c58d689b 100644 --- a/java-advisorynotifications/pom.xml +++ b/java-advisorynotifications/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-advisorynotifications-parent pom - 0.70.0-SNAPSHOT + 0.71.0 Google Advisory Notifications API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-advisorynotifications - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-advisorynotifications-v1 - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-advisorynotifications-v1 - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/pom.xml b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/pom.xml index eace3b937a9c..9f687c0b782c 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/pom.xml +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-advisorynotifications-v1 - 0.70.0-SNAPSHOT + 0.71.0 proto-google-cloud-advisorynotifications-v1 Proto library for google-cloud-advisorynotifications com.google.cloud google-cloud-advisorynotifications-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Attachment.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Attachment.java index ce9e0d17f879..03427d2523e6 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Attachment.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Attachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AttachmentOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AttachmentOrBuilder.java index 52c4cf6cc43c..6e8895fc509a 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AttachmentOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/AttachmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Csv.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Csv.java index 6b92075dd371..d0102200647c 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Csv.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Csv.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/CsvOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/CsvOrBuilder.java index b4994611d76d..3ba37f7be8f6 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/CsvOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/CsvOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequest.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequest.java index ef2aacfe3d6f..9d98e1c328ae 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequest.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequestOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequestOrBuilder.java index 71e2a70bd8e5..20437454b162 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequestOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetNotificationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequest.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequest.java index 5bd6273356ce..4d6b0f125ea4 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequest.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequestOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequestOrBuilder.java index abd4bab4858e..097f957c721a 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequestOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/GetSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequest.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequest.java index 10223a1d2383..4e86fc339f49 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequest.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequestOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequestOrBuilder.java index f792f5bb0770..11c22aa23b9d 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequestOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponse.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponse.java index 556df9e22de1..17b96db013c9 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponse.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponseOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponseOrBuilder.java index c7f631843a25..e75a2bc68fec 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponseOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ListNotificationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocalizationState.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocalizationState.java index 580486d2c27e..817c6008e893 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocalizationState.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocalizationState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocationName.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocationName.java index 2a51c6cafa89..32ce71135c56 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocationName.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Message.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Message.java index 1259fef51b8e..6956bdabe9ec 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Message.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Message.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/MessageOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/MessageOrBuilder.java index 4624f6b613a0..897b34217d09 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/MessageOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/MessageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Notification.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Notification.java index 2f8c2b55c4a5..aee95f4e67b0 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Notification.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Notification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationName.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationName.java index b2bb431f5362..5ed18397c59e 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationName.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationOrBuilder.java index 31e229d56262..0dcf58e67811 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettings.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettings.java index bb887fe1beb5..f1798d8f0f55 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettings.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettingsOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettingsOrBuilder.java index 67063b8f6d2b..d7ab1bb81588 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettingsOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationType.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationType.java index dfb149b5b3bb..9e9d7aa5a555 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationType.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationView.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationView.java index 54d836bd2d52..72ed47d19ab1 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationView.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/NotificationView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ServiceProto.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ServiceProto.java index 06dabee8ec7e..83e7e799037f 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ServiceProto.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Settings.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Settings.java index 6992b2fa2906..65d9a5f8983e 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Settings.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Settings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsName.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsName.java index 355f25f7d15d..0d4bb80e7222 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsName.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsOrBuilder.java index eb966e4cbca2..963e39a553c0 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Subject.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Subject.java index 928481b9f1aa..72b5b690ae3d 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Subject.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Subject.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SubjectOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SubjectOrBuilder.java index 274160dfa82b..8878d149f533 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SubjectOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/SubjectOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Text.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Text.java index 0f90ce077b9f..f2930cf06b8a 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Text.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/Text.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/TextOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/TextOrBuilder.java index fe6b32c82c08..453d9d609312 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/TextOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/TextOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequest.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequest.java index ad9edf663d50..9e85072e59fd 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequest.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequestOrBuilder.java b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequestOrBuilder.java index 5dfbdca9e09d..7700a88fa291 100644 --- a/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequestOrBuilder.java +++ b/java-advisorynotifications/proto-google-cloud-advisorynotifications-v1/src/main/java/com/google/cloud/advisorynotifications/v1/UpdateSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetCredentialsProvider.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetCredentialsProvider.java index 7626f3c98675..3994d5004134 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetEndpoint.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetEndpoint.java index b8e7ac41561b..a9308e4614f7 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetEndpoint.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateUseHttpJsonTransport.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateUseHttpJsonTransport.java index 44a1b35d4e0e..12334cf40201 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/AsyncGetNotification.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/AsyncGetNotification.java index 630108216410..cfe497416bbd 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/AsyncGetNotification.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/AsyncGetNotification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotification.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotification.java index 5a7f63f51f46..937fcaf8ffa1 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotification.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationNotificationname.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationNotificationname.java index 69434f39c64e..bc7524eb4bb4 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationNotificationname.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationNotificationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationString.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationString.java index a19963940a60..07c9191eb980 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationString.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getnotification/SyncGetNotificationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/AsyncGetSettings.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/AsyncGetSettings.java index 322a38940fe8..8529c84d4c4a 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/AsyncGetSettings.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/AsyncGetSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettings.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettings.java index c675e347e13a..dbda9b6a79c5 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettings.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsSettingsname.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsSettingsname.java index 34a7f5f3d243..228060013174 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsSettingsname.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsSettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsString.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsString.java index 8813d152c453..927d1a1fb308 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsString.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/getsettings/SyncGetSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotifications.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotifications.java index bf7c95527f59..0b76923d3652 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotifications.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotifications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotificationsPaged.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotificationsPaged.java index d9d9c5101ad4..620650becde0 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotificationsPaged.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/AsyncListNotificationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotifications.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotifications.java index 87f30bd6b64f..f610b2acc757 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotifications.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotifications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsLocationname.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsLocationname.java index e20c754f5e52..166e4c64375a 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsLocationname.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsString.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsString.java index d0a3f02b41b9..d71343795d4b 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsString.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/listnotifications/SyncListNotificationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/AsyncUpdateSettings.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/AsyncUpdateSettings.java index abad3e651023..1b8458829a8b 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/AsyncUpdateSettings.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/AsyncUpdateSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettings.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettings.java index 6dfa8c446ffe..e9ba303c50f8 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettings.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettingsSettings.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettingsSettings.java index b7c55428954e..2e1df4a692ee 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettingsSettings.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservice/updatesettings/SyncUpdateSettingsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservicesettings/getnotification/SyncGetNotification.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservicesettings/getnotification/SyncGetNotification.java index 320e340fab85..6764f6f335a5 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservicesettings/getnotification/SyncGetNotification.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/advisorynotificationsservicesettings/getnotification/SyncGetNotification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/stub/advisorynotificationsservicestubsettings/getnotification/SyncGetNotification.java b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/stub/advisorynotificationsservicestubsettings/getnotification/SyncGetNotification.java index 2312cb05ca7c..66eaadf080ac 100644 --- a/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/stub/advisorynotificationsservicestubsettings/getnotification/SyncGetNotification.java +++ b/java-advisorynotifications/samples/snippets/generated/com/google/cloud/advisorynotifications/v1/stub/advisorynotificationsservicestubsettings/getnotification/SyncGetNotification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/CHANGELOG.md b/java-aiplatform/CHANGELOG.md index 6909cdd1a1eb..7c0002c12d45 100644 --- a/java-aiplatform/CHANGELOG.md +++ b/java-aiplatform/CHANGELOG.md @@ -1,5 +1,48 @@ # Changelog +## 3.83.0 (2026-01-15) + +### Features + +* Add Lustre support to the Vertex Training Custom Job API ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* Add Lustre support to the Vertex Training Custom Job API ([c70c873](https://github.com/googleapis/google-cloud-java/commit/c70c8739f2caffdc87535f2e729c1d967d550e8c)) +* add streaming function call argument API changes ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 3.82.0 (2025-12-16) + +### ⚠ BREAKING CHANGES + +* fix issue when using UrlContext tool + +### Features + +* A new field `min_gpu_driver_version` is added to message `.google.cloud.aiplatform.v1beta1.MachineSpec` ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* add `gpu_partition_size` in `machine_spec` v1 api ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* add streaming function call argument API changes ([ecb0b2a](https://github.com/googleapis/google-cloud-java/commit/ecb0b2aa4c83c8da51d0655cfa3811c5f8a4e6a4)) +* Add support for developer connect based deployment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* Add support for developer connect based deployment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* Expose FullFineTunedResources for full fine tuned deployments ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* Expose zone when creating a FeatureOnlineStore ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* Introduce RagManagedVertexVectorSearch as a new vector db option ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) + +### Bug Fixes + +* fix issue when using UrlContext tool ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* update `ReplicatedVoiceConfig.mime_type` comment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) +* update `ReplicatedVoiceConfig.mime_type` comment ([b887034](https://github.com/googleapis/google-cloud-java/commit/b8870346a399a02bdcca72ec064911bd51dbe532)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 3.79.0 (2025-10-21) ### Features diff --git a/java-aiplatform/README.md b/java-aiplatform/README.md index 1e54c8e1dec5..2d0ba7f15624 100644 --- a/java-aiplatform/README.md +++ b/java-aiplatform/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-aiplatform - 3.79.0 + 3.82.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-aiplatform:3.79.0' +implementation 'com.google.cloud:google-cloud-aiplatform:3.82.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-aiplatform" % "3.79.0" +libraryDependencies += "com.google.cloud" % "google-cloud-aiplatform" % "3.82.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/vertex-ai/docs [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-aiplatform/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-aiplatform.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.79.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.82.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-aiplatform/google-cloud-aiplatform-bom/pom.xml b/java-aiplatform/google-cloud-aiplatform-bom/pom.xml index 13cf78646677..bcce6521f7b3 100644 --- a/java-aiplatform/google-cloud-aiplatform-bom/pom.xml +++ b/java-aiplatform/google-cloud-aiplatform-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-aiplatform-bom - 3.82.0-SNAPSHOT + 3.83.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,27 +27,27 @@ com.google.cloud google-cloud-aiplatform - 3.82.0-SNAPSHOT + 3.83.0 com.google.api.grpc grpc-google-cloud-aiplatform-v1 - 3.82.0-SNAPSHOT + 3.83.0 com.google.api.grpc grpc-google-cloud-aiplatform-v1beta1 - 0.98.0-SNAPSHOT + 0.99.0 com.google.api.grpc proto-google-cloud-aiplatform-v1 - 3.82.0-SNAPSHOT + 3.83.0 com.google.api.grpc proto-google-cloud-aiplatform-v1beta1 - 0.98.0-SNAPSHOT + 0.99.0 diff --git a/java-aiplatform/google-cloud-aiplatform/pom.xml b/java-aiplatform/google-cloud-aiplatform/pom.xml index 267a239e0d35..e425eee9f13b 100644 --- a/java-aiplatform/google-cloud-aiplatform/pom.xml +++ b/java-aiplatform/google-cloud-aiplatform/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-aiplatform - 3.82.0-SNAPSHOT + 3.83.0 jar Google Cloud Vertex AI Java client for Google Cloud Vertex AI services. com.google.cloud google-cloud-aiplatform-parent - 3.82.0-SNAPSHOT + 3.83.0 google-cloud-aiplatform diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClient.java index f525034f4810..bc4d21b4777b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceSettings.java index cf60cd1d1007..fdb621d582e3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataFoundryServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceClient.java index adefe50d2f22..78f9429a00f2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceSettings.java index 8bb2c7a3adf3..5789f8dc42b6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -98,8 +98,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClient.java index 5673a38ef33a..67b8cc64ba33 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceSettings.java index 40895cbc1199..340ed56b788e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceClient.java index b1325734a27e..8153b1600e30 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceSettings.java index df80a9f1f4d7..352f94f9df84 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceClient.java index bc182891a2c3..46d31ec433e0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceSettings.java index 6e8e1c45e79d..a88b3471b901 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class EvaluationServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClient.java index 2ea4f3d58a7e..5a70d1c1f206 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceSettings.java index 77fea37de882..18d7caa814ed 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClient.java index 6c0f8ed4fb65..303e8f40be47 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceSettings.java index f2143b63fd14..e2ac845002eb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class FeatureOnlineStoreServiceSettings diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClient.java index f4e8818c9923..31567966dae3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceSettings.java index 8822634811eb..d1136c326315 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClient.java index ad81b225ba0c..e1f191e2c515 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceSettings.java index b27ddf943710..2f9b0754c6d3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class FeaturestoreOnlineServingServiceSettings diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClient.java index 864378f9e8b5..a778d3dc7962 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceSettings.java index 3dc6553686bf..40a2336fd641 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -97,8 +97,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClient.java index 7f8e6ffb990a..6fb3900b364c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceSettings.java index d533bf0d92e5..67dce2699629 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GenAiCacheServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClient.java index 38cfc0676694..7367a2d845ea 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceSettings.java index 8dc199ae0ca4..388fdf3a87de 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClient.java index 16451bdcc61d..e2b05c170afc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceSettings.java index 22b1275e60e0..1c858a069fd2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceClient.java index 37b9a233e3f3..0243de8cabe1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceSettings.java index 7360ce6a0e5a..33fc35790451 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceClient.java index 7cdc27633773..4dde02a9cfda 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceSettings.java index 9d72edce0024..ff2fb8e9a7d6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/JobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClient.java index 45c8d270aeaa..4cb5e96460da 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceSettings.java index 41563c876e84..00251d0b54e9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LlmUtilityServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceClient.java index a9f2a695ee96..f6f727277689 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceSettings.java index f9ee136896df..68c4537591d8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MatchServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceClient.java index 21c690bfba8a..819b4884f2e4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceSettings.java index cd6599278da6..38211cf8ac6c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -97,8 +97,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceClient.java index 34ee2b88d549..8994b60f5d2f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceSettings.java index c6b9e843d6ea..0c440b05e857 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClient.java index 107873f445bf..06f1618e9ae1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceSettings.java index b738b2c15674..fb4fc27558e6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceClient.java index 7ec00f58ba12..da8c437fe2c7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceSettings.java index 28f9387f97c7..33d7b0b9e0fa 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceClient.java index 9f9c8e3842d7..1deeecffba04 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceSettings.java index be79f997df41..514194554445 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClient.java index aa625083f67e..c2b66f6b0e57 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceSettings.java index c94b6238787b..054d07d5245f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceClient.java index 7c914180cb3e..f8f993004fd7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceSettings.java index 21fa6e8b1da0..9875440ff61e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceClient.java index 0fac8501933d..08b1eb6b0a81 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceSettings.java index 962526743de2..ce8eaaf7ec03 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PredictionServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClient.java index 86d2dd4fa791..7c8c70a563cc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceSettings.java index c8282a72a08c..f1fc42afedca 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReasoningEngineExecutionServiceSettings diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClient.java index 3d9eac96ed00..f4bede2cfee5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceSettings.java index 3d875d3e8083..ca93c8cdbdb1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceClient.java index 14a4b2809bbd..e4ef0f4a61e6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceSettings.java index 3a58ab017500..343e7034d9c2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClient.java index 61c74f2f46a8..ef3c3575cb68 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceSettings.java index 9d3164f729fa..c5f0fef719f5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceClient.java index fe28a320f5cb..f76b417aa004 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceSettings.java index adc244301c19..690275faf3b1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClient.java index 00da5babf3c0..b29baca8dea7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceSettings.java index 63dc0e099eab..d5d642fd7cf3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceClient.java index 7d086e445e3e..b8694aba95ae 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceSettings.java index 6e1b7e1b572c..ba47d2c1e053 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class VertexRagServiceSettings extends ClientSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceClient.java index ce1c607451e3..ab12abfa2852 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceSettings.java index 98baf46d5388..8f3dc91b5ed7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/package-info.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/package-info.java index 7f5d9ceafc00..dacb5d320767 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/package-info.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStub.java index 0155144db070..ea83af0a193c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStubSettings.java index 47a50e554816..58292cb1efa4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DataFoundryServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -107,8 +107,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataFoundryServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStub.java index 1d719b2e699d..9b1e864f1b52 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStubSettings.java index 430d135105d7..5be26331757b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DatasetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -157,8 +157,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStub.java index 03ceed58d8f2..ddfcc0f05094 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStubSettings.java index a904c2691dd8..718a93a81a69 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/DeploymentResourcePoolServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -127,8 +127,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStub.java index 2420a0b3d41e..5b0ebc037258 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStubSettings.java index 2d9683ce8dd8..601b9bc18ee9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EndpointServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -132,8 +132,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStub.java index ad4b238aa865..5e31a954df5c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStubSettings.java index e44077e09527..90fcd5448f9e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/EvaluationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -107,8 +107,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class EvaluationServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStub.java index 22d578f7f523..97319407d083 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStubSettings.java index 7e3ec5f1688a..71004a745a9f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreAdminServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -141,8 +141,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStub.java index 232e1e0a6cf8..83ef1d40f6bb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStubSettings.java index ca5b37a9b124..edaf2f548ab6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureOnlineStoreServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class FeatureOnlineStoreServiceStubSettings diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStub.java index 07fe8050cf56..91d604c63e47 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStubSettings.java index ecf1bfc6be2a..f74b83dc703c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeatureRegistryServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -136,8 +136,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStub.java index b17d809ad834..f387c1682497 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStubSettings.java index ed0629eded1d..ab6ed24eea36 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreOnlineServingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class FeaturestoreOnlineServingServiceStubSettings diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStub.java index ae5ccffda78f..1c5343edef6d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStubSettings.java index 0cb104fc206e..b0b2568427ae 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/FeaturestoreServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -159,8 +159,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStub.java index 7c38f9c06126..a5ae0ebfdda6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStubSettings.java index 40d5487b205d..88e441c56c57 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiCacheServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GenAiCacheServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStub.java index 7ead12fbaa90..b02cc3de0bfa 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStubSettings.java index 84c4c8b55518..aed8e3f672f2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GenAiTuningServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -121,8 +121,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceCallableFactory.java index 8c79300d4167..4d96b5c8cd1a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceStub.java index 7cc82a10c4da..0a2933c97017 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDataFoundryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceCallableFactory.java index a8334089c095..844613347f32 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceStub.java index 1b8d78dcdc3d..01423ba0e3bf 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDatasetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java index 171efb3bafae..ce3045e05f3a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceStub.java index eacaf7d61f4f..5f9f9f190ef8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcDeploymentResourcePoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceCallableFactory.java index 170008180511..8888de81c6fb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceStub.java index 2fd7758d52d6..e0deb9074434 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceCallableFactory.java index 7b3d03916e43..808744d4d4d6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceStub.java index 61d25f4e1125..052fcaf583bb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcEvaluationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java index 6f20927a1276..cbd7bfb3a623 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java index 1b358e21bdd3..3eea5ccbb515 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java index dbcc91b08758..0867e7fe4f7e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceStub.java index d1c835a7bb2e..9d2175b7608f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureOnlineStoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceCallableFactory.java index b66314684c17..28fdacbd2175 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceStub.java index 6ccc13562486..741cff121e98 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeatureRegistryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java index 6b05d3796dd5..8057afd84009 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceStub.java index 00a4fc4882be..90ea057eba8f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreOnlineServingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceCallableFactory.java index 94e676530817..73ec043fc793 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceStub.java index 1c57566f4446..8a90eb876c72 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcFeaturestoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceCallableFactory.java index 1870f8976c50..857821b77b0a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceStub.java index e88d101339aa..0aba18dfc3c0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiCacheServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceCallableFactory.java index 42e487d4d6e9..17702e0b9079 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceStub.java index bc0743ce4e0f..f048cfd2bf71 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcGenAiTuningServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceCallableFactory.java index 4e3b5e848420..c224dd78aa38 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceStub.java index 717f8d003e2b..f04053d0aa14 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexEndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceCallableFactory.java index e931714f7600..724470b9c148 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceStub.java index d40c4dbfd7ef..c5d87a2ff1fe 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcIndexServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceCallableFactory.java index 2c6bdbeecd56..b734910b29cb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceStub.java index b5c732f704b4..466c443dfa64 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceCallableFactory.java index 9fea11627863..b50800206cd5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceStub.java index c7b87499e91a..0de27ab70833 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcLlmUtilityServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceCallableFactory.java index 96a62c325ce1..2c2b48518c14 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceStub.java index a54eefc6c67f..1885927abe7a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMatchServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceCallableFactory.java index 78248d378764..bd03661f062f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceStub.java index dd03d674c625..e13168ae45f6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMetadataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceCallableFactory.java index 431879d7fa8c..212a9c695521 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceStub.java index b69bb34f3d8d..5eb8e3ff271a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcMigrationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceCallableFactory.java index 5048b227aadb..06a34b6e33ad 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceStub.java index 518d2080703e..8ceb2fd87c1e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelGardenServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceCallableFactory.java index d5f861903848..9280d3c3eb64 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceStub.java index 49c7d08f716e..9ea562b3066c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcModelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceCallableFactory.java index 58c6f842553b..4f2063c693c4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceStub.java index 9336a4e9ce6a..fde4e62a950d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcNotebookServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceCallableFactory.java index 81d36a798dce..8a5f121dc37d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceStub.java index 52e69c90199b..037270c26e94 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPersistentResourceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceCallableFactory.java index ee84312c5654..819dd38ed513 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceStub.java index 5dcfd7ca4ce0..7ca86198ca3a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPipelineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceCallableFactory.java index ba02a06537a1..2732f3c60737 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceStub.java index cfb3ed487cda..8dcf78035cc8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcPredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java index d28a87b74165..4d637d8b6e3f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceStub.java index b2dd423a3089..283aa0f7c749 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineExecutionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceCallableFactory.java index c376148e0c97..023619ef54c2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceStub.java index c6b6f98f1439..56fd5b93c74b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcReasoningEngineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceCallableFactory.java index c11c2dc9cc0e..41754f0476a6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceStub.java index 5196e14f16f0..fc83a8f1f29e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcScheduleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceCallableFactory.java index ecea32ad203d..f91d07d8dd28 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceStub.java index 0adc2fa115cd..bbc2d71ac29d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcSpecialistPoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceCallableFactory.java index 5df0b2ea56eb..861668a6abdd 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceStub.java index 52c453b589b7..1eeb056d2f3b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcTensorboardServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceCallableFactory.java index ade486b5492b..563d5db3b412 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceStub.java index 7ba7e46a8d2b..a9447e0ca825 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceCallableFactory.java index f7c030a6ac7b..1658eb36f0d2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceStub.java index 291d30010e68..10d4f7a4c3ac 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVertexRagServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceCallableFactory.java index cff210de47c6..f05bab0c44d9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceStub.java index 11b7a9d582bf..e17e69c3a7d3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/GrpcVizierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStub.java index 5fb8b9ba318e..e6339afb2492 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStubSettings.java index 56887e222b6e..519a56e8f5c6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexEndpointServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -131,8 +131,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStub.java index 03485bd2c4fa..ffb0b5019ef7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStubSettings.java index 040d3d0b7b7f..9ab1599fbf32 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/IndexServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -126,8 +126,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStub.java index 598ac57565a0..f22daf8c0b3d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStubSettings.java index 84d1a6a298f6..fa26195277dc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/JobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -171,8 +171,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStub.java index 6d2557b7e0f3..2f4aacfaf9d2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStubSettings.java index 4f23190b080e..84d01c911ffb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/LlmUtilityServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LlmUtilityServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStub.java index 52e0732fc502..1c2b0d1ce4b4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStubSettings.java index ae80786ba27f..b7ef849bf28c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MatchServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,8 +108,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class MatchServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStub.java index 5551b17cb4c8..e8a3bd8e6f98 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStubSettings.java index f45ae0236013..8d5df4ca9860 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MetadataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -172,8 +172,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStub.java index df1a7a4dc5be..9e655b3975fc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStubSettings.java index 92d39ef1a27b..91d5abe84d77 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/MigrationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -117,8 +117,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStub.java index b7d39d401391..7d1ff4c8a997 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStubSettings.java index b8830d009cee..f72a36b095a1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelGardenServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -116,8 +116,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStub.java index c888155ba92f..a2889fa9d32d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStubSettings.java index da8842a40a5e..3211169169f2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ModelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -155,8 +155,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStub.java index 8b14a444d5cc..6667e3daaf53 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStubSettings.java index fb429678f355..757669dbdd65 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/NotebookServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -146,8 +146,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStub.java index cfc197e85800..e51c7c07f627 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStubSettings.java index 4e63f9a6cc11..cb4f1f86d460 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PersistentResourceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -125,8 +125,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStub.java index a7e4ac8da979..2fcce1c7a508 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStubSettings.java index ef64452a1710..6e6264f5585c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PipelineServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -133,8 +133,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStub.java index 15398db05d97..c6528df37bb7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStubSettings.java index 5302070e37e2..ab1ad9e5a6ff 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/PredictionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -130,8 +130,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PredictionServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStub.java index 6447b9885e19..9f3a7ebc8a4f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStubSettings.java index 49eeeb68fd89..ced54349ea75 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineExecutionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,8 +111,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReasoningEngineExecutionServiceStubSettings diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStub.java index 641a4f14dc02..d3f5cd3cd3f2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStubSettings.java index 9a587ce36398..d6f64fdbc6d8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ReasoningEngineServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -123,8 +123,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStub.java index 68dc14be1624..7dcd581f233b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStubSettings.java index ac2785a712f3..5d8f1f6448f0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/ScheduleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -122,8 +122,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStub.java index 85f81c0d299c..b9328baf8d9e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStubSettings.java index bc3ff48e0454..065899276120 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/SpecialistPoolServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -123,8 +123,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStub.java index 2984778152aa..f67d26e967eb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStubSettings.java index b0d93ad3d623..881781dc5d56 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/TensorboardServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -170,8 +170,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStub.java index d4949518a78f..d5e47091064a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStubSettings.java index b18a95cd55c7..b43d2b400a99 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagDataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -138,8 +138,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStub.java index a475a2e62fd6..c5e28cd75d97 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStubSettings.java index dca3d989c4ec..d51cf4146d8f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VertexRagServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -110,8 +110,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class VertexRagServiceStubSettings extends StubSettings { diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStub.java index 04e1934712dd..e9e801484af5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStubSettings.java index 193b02fc258c..17dd4e7d05ec 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1/stub/VizierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -137,8 +137,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClient.java index 31f49c12f5c4..263329908b99 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceSettings.java index 212fa6d280d9..bbc2e96d6b4d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClient.java index 6988083ca7fa..b5eb9f01ea99 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceSettings.java index ebe1b152554d..22ddf96b1ad7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClient.java index 48e0b2334736..731c11e681ad 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceSettings.java index bed60a540aed..1ad64315143a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClient.java index 482ada00ab1a..9771ef8c0ed1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceSettings.java index 2f8561ee3959..509bec6fc624 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClient.java index c70495ed3a79..d1c25ab7bc97 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceSettings.java index 50bc8af47e40..6b3bf3a575c0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClient.java index b4a8863a466a..811350c28c15 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceSettings.java index 0c3711c10868..021d20ee6398 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClient.java index 27cca9f9c1f6..15a8446db625 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceSettings.java index 73348280f8c7..16d96b732437 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClient.java index 5f7f327a2d76..3062a7de8418 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceSettings.java index e642c394ba9a..e6216a1f860b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -97,8 +97,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClient.java index ddf9e76b273c..0b7a9bbe48f8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceSettings.java index 06d08fa7e351..74232db402f2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClient.java index 7c313af91354..f02b4683294f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceSettings.java index 3737457c35f4..4045304eed1b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -98,8 +98,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClient.java index 639b3019e1c6..5783b152dfef 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceSettings.java index fe849a53d1b5..57cc262dc899 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClient.java index 85bc403f0b86..155286c5ac30 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceSettings.java index 3f5aae150a44..56ff26872183 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -98,8 +98,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClient.java index 0b9226bf92ba..20bcfcb9ed74 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceSettings.java index 89a621616ed7..a112ce4c5d33 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClient.java index f767e2bfde5f..ad5207cbbb08 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceSettings.java index cfa089bfcb49..5cec300cacf7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClient.java index 98da8a982dba..f19b4a90272a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceSettings.java index ab8fc20b4259..0059319ead54 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClient.java index e67e477f84f3..c41f922a1279 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceSettings.java index b313718b185c..7bd6599b5ac0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceClient.java index 12ff1e861235..f3d0856e9fce 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceSettings.java index 41d1c5427b5d..815352d60328 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClient.java index 0337920bae9f..a7ce514b795b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceSettings.java index d58d0bf629cd..1590eefc705c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClient.java index 4f782b167f82..857c4798e525 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceSettings.java index 4f2fda7936da..52270990afcc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClient.java index e02bb7886686..a5f329844774 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceSettings.java index 934faa1b8fdc..bd45f38bd33d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClient.java index d2463e41c98a..15484b2c06c3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceSettings.java index 2d25cb1df6d9..03a1c72349b2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -98,8 +98,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClient.java index e5eb76be2b4c..48b7aa596638 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceSettings.java index d2e2041eab6d..f883c5d79dd7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClient.java index 90397287a04d..8e813b99dc11 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceSettings.java index 393579e217e0..66412087be9c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClient.java index cde1815bafa7..cf4b5c4a009c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceSettings.java index 48246509cf97..ff2c2a2862bb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -98,8 +98,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClient.java index b4e82f35c06a..b55b684e4465 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceSettings.java index adbbb1ac2e13..0d6b592391ae 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -97,8 +97,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClient.java index 613cbb6998b9..25e441f2ef68 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceSettings.java index 374d381be8f9..2d013f2dbbf8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClient.java index 701f77f1365a..2c272e7c3e48 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceSettings.java index cd9a7fac6c9a..f57867352e49 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClient.java index cffd9945c64e..bbda0ddcd208 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceSettings.java index 6dac72008664..07ad557d1928 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClient.java index 5632c5edd744..b431d0bd4a9d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceSettings.java index 465ecb7d9232..954ca8175adc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClient.java index 7818512ae9fb..4146136de493 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceSettings.java index ec5a9f53730b..2da603b90ea8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClient.java index a7fe93f2c282..e3bf5c81b64a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceSettings.java index ecc2bd56d28b..4d3b6ef55903 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClient.java index 747b65eb7bb0..45d61f4999e7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceSettings.java index 4a73c37c296b..e12825f66f0b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClient.java index c1682a70bc3c..cdbaf678776c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceSettings.java index 8eb182619fc3..a2182b026738 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClient.java index b16077b716f3..fcc220116077 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceSettings.java index 97e13f7a1256..4ec9ac1d7c9a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClient.java index 4537ac8805c5..301c0851b54d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceSettings.java index d5516e7629d5..5fdafd12d364 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClient.java index 7463a3503230..3fd69a65d883 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceSettings.java index ff952ecbf6cd..2d8c2b9b8dc8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClient.java index bb24584885a7..1f7333e5508b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceSettings.java index 0fe1b3e91d5b..f2397c5f83d8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClient.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClient.java index c75e2877af83..1cea14589bf2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClient.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceSettings.java index dfa36e54d177..e977e9814bff 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/package-info.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/package-info.java index 4c6036f49905..e1ba2f797fcd 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/package-info.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStub.java index 936b1b663b73..a1b5a0255820 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStubSettings.java index c0db12459c9c..a0f06893c7cb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DatasetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -164,8 +164,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStub.java index cbd0fb743909..b305234a8127 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStubSettings.java index 52bb7e6c87b1..20632ab60699 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/DeploymentResourcePoolServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -128,8 +128,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStub.java index 5cc7983a3646..f625ad9f018c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStubSettings.java index 8b774db7593b..c9afd3729a8d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EndpointServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -137,8 +137,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStub.java index 2564481e0025..fe666d7a6fa9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStubSettings.java index a960123b6182..2a7c0c5a6e1a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/EvaluationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -117,8 +117,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStub.java index 14d04f445d22..cb3580ae1905 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStubSettings.java index 53f0d2678769..8d0e963e3d52 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExampleStoreServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -134,8 +134,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStub.java index 4d434eb6b00c..fac8e8c38d3b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStubSettings.java index d0ea7c6ef755..fccc71d05cfe 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionExecutionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -110,8 +110,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStub.java index 74d04dfdefb7..d2d99118ba1a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStubSettings.java index eb8b53eb45e5..3d49605c3411 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ExtensionRegistryServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -123,8 +123,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStub.java index c7590d762e8d..76e0f3deac26 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStubSettings.java index d531129b0a62..fe4753074d1e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreAdminServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -142,8 +142,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStub.java index f9727ca7ee30..f2e20dae4e55 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStubSettings.java index 6f8843de82d0..736a334331df 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureOnlineStoreServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -117,8 +117,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStub.java index 0e913815f440..0e6f6ec04f97 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStubSettings.java index b2a023021b24..563f0cea7cf1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeatureRegistryServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -153,8 +153,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStub.java index 29b11ef8f5db..993655fa5ab6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStubSettings.java index b347d489a641..676030a57480 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreOnlineServingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStub.java index d75f4600f224..656d0f0cbbf1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStubSettings.java index a39ddb335626..fe484972a714 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/FeaturestoreServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -160,8 +160,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStub.java index d029615039af..64fc4cd4eff4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStubSettings.java index 24e34ed9e2ec..486da9890e75 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiCacheServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -115,8 +115,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStub.java index 995dce062910..362fb8384791 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStubSettings.java index 92c147fdd4e4..4314a63f209e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GenAiTuningServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -122,8 +122,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceCallableFactory.java index 90a6302f736c..d78fbc86a27a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceStub.java index 02d460298804..be566743f50e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDatasetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java index 96eabda72d8a..56b7af29c87b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceStub.java index 6140cfdc3a11..8bf9931d5c33 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcDeploymentResourcePoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceCallableFactory.java index 6f421a25386b..aa3907285f5b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceStub.java index 6fa9b518e4b1..4d6869f62dd7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceCallableFactory.java index 8869086cbc25..e44d62df2648 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceStub.java index bdb9331dff85..5b71d2249844 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcEvaluationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceCallableFactory.java index d62a60b1400f..ae6e827384a3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceStub.java index fe0b2bd3c78d..f540019485bf 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExampleStoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceCallableFactory.java index e84fd2733129..f0fcaf6ebe74 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceStub.java index 2dd5adf0fa2e..55971e069e09 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionExecutionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceCallableFactory.java index 5aec7079f501..712317cc2a53 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceStub.java index eb7ba5469813..e694178ad209 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcExtensionRegistryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java index 6f7e7fb2b5ab..410245305382 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java index 8ff2bb10e037..55126e83fc6e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java index 5e5c884b49ba..91aed5501b05 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceStub.java index 5f64f5100ae6..60959653bbe3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureOnlineStoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceCallableFactory.java index 48e6c513a8f3..82fbee280c62 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceStub.java index 2b2093ae8601..57afa15fbeb2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeatureRegistryServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java index aae0d8292027..d50f4b48d40e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceStub.java index 1e59ee71f06a..c8c8ebe4a948 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreOnlineServingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceCallableFactory.java index efc9a2d5835f..135c661404b7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceStub.java index 220c975d523a..02d07cdf9c3b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcFeaturestoreServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceCallableFactory.java index 3e8c86a68829..dbdd0be566eb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceStub.java index 47b3221baa40..af0b28ce50d8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiCacheServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceCallableFactory.java index 170e7433e07f..2d2016e730b0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceStub.java index 180c53b0df2e..74a6ac53ee3a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcGenAiTuningServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceCallableFactory.java index a17ae0d12daf..5e36127fcc76 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceStub.java index 43f45bd7dda9..346c6a7f0c69 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexEndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceCallableFactory.java index 790648d6fff9..3fe8113b49e0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceStub.java index 3f644661d823..a8706627a7f0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcIndexServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceCallableFactory.java index 45a7e230074a..b774d458849b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceStub.java index bf4684e42fbe..fef65190fdda 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceCallableFactory.java index f1ede8231efa..efc6e24e55e3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceStub.java index 09c7b5b998d0..25fa01156de4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcLlmUtilityServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceCallableFactory.java index 95999251f3db..91ccc790c4c0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceStub.java index f69d1704e27b..333ccf88491e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMatchServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceCallableFactory.java index 52a33a0aae16..01e47e03ea75 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceStub.java index 56eed6c3482d..4f093f8055df 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMemoryBankServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceCallableFactory.java index f41b60aaec67..94604029ee35 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceStub.java index cd2e07c2337e..ad3b5bf694fd 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMetadataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceCallableFactory.java index 285388c08fc7..86a7c05891c8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceStub.java index 9a9055a3b1f5..aa423215acf2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcMigrationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceCallableFactory.java index cc431573e0f2..1271d7d1a90f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceStub.java index 9272779cec47..351a549c04c0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelGardenServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceCallableFactory.java index 293137748d5c..3328172179d4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceStub.java index 0243e7706f3a..deb34f8bbf7b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelMonitoringServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceCallableFactory.java index 0a141133dcbe..b67585e1b767 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceStub.java index 0d2a314c9240..e42d01625531 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcModelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceCallableFactory.java index 8f0889c461dd..d08dfd45651a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceStub.java index 335ebf7843bf..c97d9e4c2a55 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcNotebookServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceCallableFactory.java index c3a102b90b4a..9a0cb2c17954 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceStub.java index fb503f3d2ed2..d086b47fc612 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPersistentResourceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceCallableFactory.java index f7fe67a398ab..877913437f74 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceStub.java index 4dc2944c064e..84721289444b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPipelineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceCallableFactory.java index c71cad7728f5..cf650baf9fab 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceStub.java index a0e6831ecf4d..4efcf4ddab06 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcPredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java index d11f3f1a26c3..f3a2cdc484f0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceStub.java index e78f4036ab2a..d4ceff92cdc5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineExecutionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceCallableFactory.java index 549ae626babf..683e41820aa6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceStub.java index 395452f64994..344e6e51b08d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcReasoningEngineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceCallableFactory.java index 6cec72827b2d..d6c9a55299ad 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceStub.java index c413ee20c64f..f3bcb17758fa 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcScheduleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceCallableFactory.java index 0540e2be3aef..78ad2d080d39 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceStub.java index 3d51a50fe391..9941ee803ec6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSessionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceCallableFactory.java index 3130585beea0..d3fd97e43459 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceStub.java index ec5c47be1894..bdc327c29837 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcSpecialistPoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceCallableFactory.java index 71806823a814..5990f70915ff 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceStub.java index ae7d525bd02d..a3a7f2116699 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcTensorboardServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceCallableFactory.java index 2be70cf22d19..fa98711f94c4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceStub.java index ee4f54427cbe..ecf0aa4bc469 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceCallableFactory.java index 10985da5ac2b..68f8d4c38610 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceStub.java index 308207a00dc9..a5b3b04c4115 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVertexRagServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceCallableFactory.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceCallableFactory.java index 6d5bca2d228d..3931b0ee39c0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceCallableFactory.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceStub.java index 1d2a901cc808..a0fc7a488202 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/GrpcVizierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStub.java index f440e264be75..be852dcb59dc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStubSettings.java index 00f2e3f2902c..8c21a665baa6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexEndpointServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -132,8 +132,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStub.java index 90984d91f36d..2aa21d49dc89 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStubSettings.java index d2ee586f87ab..87625f2ef6d3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/IndexServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -129,8 +129,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStub.java index add7707b678c..96404a7f8134 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStubSettings.java index b55c7c4ce849..d37a2417ba68 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/JobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -172,8 +172,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStub.java index db8c72e0bae9..1b50f393d2b4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStubSettings.java index 4dff09be967f..4d32bcc64195 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/LlmUtilityServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,8 +108,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStub.java index 335ef99550b3..2c9afe1169bd 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStubSettings.java index 20a0b28dd1a8..0a99748c4a97 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MatchServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStub.java index c50775d06b5e..7277badfd7e7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStubSettings.java index af8540e1acdf..1631e0fb71f8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MemoryBankServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -129,8 +129,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStub.java index a8a77c015c7a..8aa44e72a4df 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStubSettings.java index 969617af2598..f975e6151a97 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MetadataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -173,8 +173,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStub.java index c93008ad9024..2271ab86583b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStubSettings.java index 031a80493852..6f95bf5f99c9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/MigrationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -118,8 +118,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStub.java index 2c61f1b76a9b..9972ab42f825 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStubSettings.java index a8c7f31e1689..44082047d8d8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelGardenServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -129,8 +129,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStub.java index 41c70ee6798a..b4a10af5ec44 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStubSettings.java index 009642d94429..c9e3c2f91891 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelMonitoringServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -139,8 +139,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStub.java index 6e93d2b2c1e0..0ba4232f7f27 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStubSettings.java index e8fab3304d10..e0dde8d0dfa7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ModelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -158,8 +158,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStub.java index 79c7af5da8f5..4aee6f0f34e3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStubSettings.java index c6ee21087ee5..bdbbd568666c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/NotebookServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -147,8 +147,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStub.java index 636fe506e225..62b1b953a5e2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStubSettings.java index 256d74935b2b..2fc5dbbe1303 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PersistentResourceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -126,8 +126,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStub.java index 4fef3ab08daf..07aa65c7a572 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStubSettings.java index c5f7c982cbc3..3f72a6603b5f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PipelineServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -134,8 +134,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStub.java index 489ef29b29b9..957d285460b2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStubSettings.java index bbd6e5a76508..bbcdfb445d99 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/PredictionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -135,8 +135,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStub.java index 6f5f00a28a70..880fa1da9228 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStubSettings.java index 673e48d6aaff..9da6fc388379 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineExecutionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStub.java index 2cb8bfcce5f1..cace3b5c61a5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStubSettings.java index bf1ebd7473fa..ffd45ad9c1b0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ReasoningEngineServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -124,8 +124,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStub.java index c38ad9dcb137..342ca840b467 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStubSettings.java index f879eb4ba0a3..e161fa332763 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/ScheduleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -123,8 +123,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStub.java index cfa6ba240cba..97b18ec30e37 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStubSettings.java index abd938ad8824..8556075fb135 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SessionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -128,8 +128,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStub.java index 8b72692a90f6..125e55bc9b82 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStubSettings.java index 2bb79f1ca187..5c605da2ba07 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/SpecialistPoolServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -124,8 +124,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStub.java index 9831fb2b006a..8b0c376f82a7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStubSettings.java index 17300e0a8531..dafda2bf4c16 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/TensorboardServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -171,8 +171,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStub.java index 7219d5ddbf48..64b629c63f11 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStubSettings.java index 074934ea87bc..e6a430056b3c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagDataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -139,8 +139,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStub.java index 5c2e4a4a3004..06a0b6b42ead 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStubSettings.java index c71fa4dc3d57..4f7916593e4d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VertexRagServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,8 +111,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStub.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStub.java index a82c921a6dcf..d8682170a787 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStub.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStubSettings.java b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStubSettings.java index ddf00b8bbed1..c6376c25980d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStubSettings.java +++ b/java-aiplatform/google-cloud-aiplatform/src/main/java/com/google/cloud/aiplatform/v1beta1/stub/VizierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -138,8 +138,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1/reflect-config.json b/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1/reflect-config.json index ffada1adbf99..a629a515b77c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1/reflect-config.json +++ b/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1/reflect-config.json @@ -12086,6 +12086,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.LustreMount", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.LustreMount$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.MachineSpec", "queryAllDeclaredConstructors": true, @@ -13283,6 +13301,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.MutateDeployedIndexOperationMetadata", "queryAllDeclaredConstructors": true, @@ -14399,6 +14435,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.PartialArg", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.PartialArg$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.PauseModelDeploymentMonitoringJobRequest", "queryAllDeclaredConstructors": true, @@ -14840,6 +14894,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.PredefinedSplit", "queryAllDeclaredConstructors": true, @@ -17018,6 +17090,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectSource", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectSource$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.ReasoningEngineSpec$SourceCodeSpec$InlineSource", "queryAllDeclaredConstructors": true, @@ -17198,6 +17306,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.ReservationAffinity", "queryAllDeclaredConstructors": true, @@ -18386,6 +18512,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.SpeakerVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.SpeakerVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.SpecialistPool", "queryAllDeclaredConstructors": true, @@ -18458,6 +18602,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.SpeechConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.SpeechConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.StartNotebookRuntimeOperationMetadata", "queryAllDeclaredConstructors": true, @@ -22067,6 +22229,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1.VoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1.VoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1.WorkerPoolSpec", "queryAllDeclaredConstructors": true, diff --git a/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1beta1/reflect-config.json b/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1beta1/reflect-config.json index e0b20f00e330..6d711b7734ae 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1beta1/reflect-config.json +++ b/java-aiplatform/google-cloud-aiplatform/src/main/resources/META-INF/native-image/com.google.cloud.aiplatform.v1beta1/reflect-config.json @@ -9719,6 +9719,33 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.FullFineTunedResources", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.FullFineTunedResources$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.FullFineTunedResources$DeploymentType", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.FunctionCall", "queryAllDeclaredConstructors": true, @@ -14957,6 +14984,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.LustreMount", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.LustreMount$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.MachineSpec", "queryAllDeclaredConstructors": true, @@ -16820,6 +16865,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.MutateDeployedIndexOperationMetadata", "queryAllDeclaredConstructors": true, @@ -17945,6 +18008,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.PartialArg", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.PartialArg$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.PartnerModelTuningSpec", "queryAllDeclaredConstructors": true, @@ -20546,6 +20627,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig$RagManagedVertexVectorSearch", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig$RagManagedVertexVectorSearch$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig$VertexFeatureStore", "queryAllDeclaredConstructors": true, @@ -21212,6 +21311,42 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectSource", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec$SourceCodeSpec$DeveloperConnectSource$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec$SourceCodeSpec$InlineSource", "queryAllDeclaredConstructors": true, @@ -21509,6 +21644,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.ReservationAffinity", "queryAllDeclaredConstructors": true, @@ -23219,6 +23372,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.cloud.aiplatform.v1beta1.SpecialistPool", "queryAllDeclaredConstructors": true, diff --git a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClientTest.java index acde63bd743f..765b343131fb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DataFoundryServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DatasetServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DatasetServiceClientTest.java index 16b406d0af53..ef768fe22ee8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DatasetServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DatasetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClientTest.java index fd1712fa9731..f3b6f7883d9c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EndpointServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EndpointServiceClientTest.java index b2e7da3708f9..441bb0ca7481 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EndpointServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EndpointServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EvaluationServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EvaluationServiceClientTest.java index 694ed815878f..6e48efa01055 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EvaluationServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/EvaluationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClientTest.java index b05ccb11043f..5ddfafb27a5f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClientTest.java index daafb5f912c8..3e77680559a9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClientTest.java index 26332ebdef3d..3bcc3a21c027 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClientTest.java index da17dfb1c3fb..9f52de566694 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClientTest.java index f8a0d4698dd3..0dc88ac8a0cf 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClientTest.java index b5803e856736..9e8d12bd1c0b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClientTest.java index 3bda79476dce..c4848f9ca795 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClientTest.java index 9fb68b256ac4..9473bd0f6c10 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexServiceClientTest.java index 3e7d4399099b..6221207e2cdb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/IndexServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/JobServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/JobServiceClientTest.java index 0e31ee0f79fd..55a6a6bc2107 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/JobServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/JobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClientTest.java index d43748a14d13..4c04719cb9cb 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MatchServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MatchServiceClientTest.java index 0ba94461c29b..d093a25cacf1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MatchServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MatchServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MetadataServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MetadataServiceClientTest.java index a5cdc11ec343..322307d2a1ce 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MetadataServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MetadataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MigrationServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MigrationServiceClientTest.java index 5631e7b2e25d..74ee1a72ba9d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MigrationServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MigrationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryService.java index 7bcee1da29ba..e963e94122c5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryServiceImpl.java index 263800aeed61..18a21298e0e7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDataFoundryServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetService.java index 02a44c204631..861cc80e139a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetServiceImpl.java index bc27faa18cee..5766c14c1fd3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDatasetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolService.java index aff318f662ac..bd06f75a808f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolServiceImpl.java index 37775f5a4598..73375150b2c5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockDeploymentResourcePoolServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointService.java index 660ac1748f56..9f00d3a2c456 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointServiceImpl.java index 736c553c1075..9324eae76344 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEndpointServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationService.java index 874ce59dd811..3bbe85aebb95 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationServiceImpl.java index 10592bc90559..a54211a7795a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockEvaluationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminService.java index 716764ced865..ccc88c219aa1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminServiceImpl.java index 61b4378ce14d..98112a70eb15 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreAdminServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreService.java index 86cf1ca80f19..55bed0d036b4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreServiceImpl.java index 6cf769fc49f4..e9091fc50b85 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureOnlineStoreServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryService.java index f2d0f5ce600f..4d28a277f48f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryServiceImpl.java index 02d5c126f369..14e1e8f3abe8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeatureRegistryServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingService.java index 9aa486fa151b..9103a9b0c308 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingServiceImpl.java index 7278cff6e386..cca26d8ce65d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreOnlineServingServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreService.java index cc4f83185800..bdb466582832 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreServiceImpl.java index 97738e817292..a9e79bbb693c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockFeaturestoreServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheService.java index 303595bc1cef..88d3bce32ec4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheServiceImpl.java index 581156dfba79..e34f5e0e7ff6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiCacheServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningService.java index a09e265f8c1c..3948fdc51452 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningServiceImpl.java index e780d78b025a..8a6b6683c8b4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockGenAiTuningServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicy.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicy.java index 9ff7c25fb817..9235b69ca46a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicy.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicyImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicyImpl.java index 8c45f88d19a1..a1127e4b1cbf 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicyImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointService.java index d7ff64d29b6b..554ee08ed513 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointServiceImpl.java index 42383a89417e..fdd2a5585097 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexEndpointServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexService.java index b13b6616957a..72315775cd73 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexServiceImpl.java index 6d16ccb8363a..b18711fdbc8b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockIndexServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobService.java index 7f95a3712c86..65e293ee29fa 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobServiceImpl.java index bdc5afdee1e4..9f4eeafbeb6a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityService.java index 0ee7a54897a4..ad9bc24ba933 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityServiceImpl.java index 79aa801d7722..c6c93bf8c6c8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLlmUtilityServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocations.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocations.java index 9498de66c61d..8098ee996634 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocations.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocationsImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocationsImpl.java index ee6fd1d83b30..d961abf16a19 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocationsImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchService.java index 96b3c87739c8..25639342129c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchServiceImpl.java index ab5f1e72493e..3addff4fac7a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMatchServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataService.java index e138ea82461a..0d3c560d8de6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataServiceImpl.java index 45331740bb2b..2386d464c54f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMetadataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationService.java index e32e76a2f8a8..29016c6342ca 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationServiceImpl.java index 5cb500882aa4..e6510e618829 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockMigrationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenService.java index ad421664337d..1580c608fbd7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenServiceImpl.java index 318655a693e6..582e78b4d527 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelGardenServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelService.java index 024e9306d1c6..05b5d3039153 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelServiceImpl.java index 626fc965e906..b4a52aaf269d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockModelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookService.java index 73d9d0bc56e4..915d80f029f4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookServiceImpl.java index ab1a30fb08e6..2e14a669f266 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockNotebookServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceService.java index 606bfc572341..15bde232431a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceServiceImpl.java index dfc782fd9c22..6c413785ca0a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPersistentResourceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineService.java index dd8039cad5ad..6cbb9b0fbb56 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineServiceImpl.java index c71171a953b6..fd9c2a498e77 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPipelineServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionService.java index cd28b8e28c2f..4c128f1011f3 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionServiceImpl.java index 291a321ea946..acff13f6ad39 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockPredictionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionService.java index 4f39e34a1064..098230aad079 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionServiceImpl.java index 52d3ca6bdf8c..033d887dab3a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineExecutionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineService.java index 8db88e8713fe..1768876f107a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineServiceImpl.java index feb66b61bbf0..cf2f6f921828 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockReasoningEngineServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleService.java index e9c7292e2bee..74840a08d1ff 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleServiceImpl.java index 65c4d8fad4b9..d5e10f347f35 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockScheduleServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolService.java index b29a110e2a16..303f4bde38b4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolServiceImpl.java index eb5f5fc26bac..bf51afac4cf2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockSpecialistPoolServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardService.java index 8cd5baf7bc27..0b60de7b20b0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardServiceImpl.java index 69ecfed90605..0438e5edc2f9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockTensorboardServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataService.java index e9b5623d760e..8d4d88a5254e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataServiceImpl.java index 0e66327dd773..27c7e64121c2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagDataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagService.java index c956c4ed16c2..ba2f9be194c8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagServiceImpl.java index f957f4cf6308..c10447db7621 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVertexRagServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierService.java index 907ea005a3a2..405dac14c4e5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierServiceImpl.java index a5ec45bd50e0..716d5d9f685c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/MockVizierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClientTest.java index 46895b7fac42..d23221794f4b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelGardenServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelServiceClientTest.java index e62090905f80..18e8510d0d64 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ModelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/NotebookServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/NotebookServiceClientTest.java index 49a3b4fae933..daef8433e04b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/NotebookServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/NotebookServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClientTest.java index 5996780305c1..b710192444dd 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PipelineServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PipelineServiceClientTest.java index 39613475948c..a6b6a68a1d8f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PipelineServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PipelineServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PredictionServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PredictionServiceClientTest.java index 680f8580e61c..662de751d049 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PredictionServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/PredictionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClientTest.java index 3a9eabdd2f1e..23602ccc5922 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClientTest.java index 2c9a3fc74470..4539e6d88961 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ScheduleServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ScheduleServiceClientTest.java index 4df45561de2e..5502d8d9d79d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ScheduleServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/ScheduleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClientTest.java index 2cc1975dc8c5..cdc1531a0f7a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/TensorboardServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/TensorboardServiceClientTest.java index a0ac55d425ee..96924b478daf 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/TensorboardServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/TensorboardServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClientTest.java index a5cafcd499c8..2adcca2d9591 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagServiceClientTest.java index 4950cfaca35a..4774ee99609c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VertexRagServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VizierServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VizierServiceClientTest.java index 4e46d29715dd..6e9d98c86c7d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VizierServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1/VizierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClientTest.java index 8c456ebb4ed8..abd9946392dc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClientTest.java index 1fe1bd87edea..f2a0a6a9eb88 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClientTest.java index d447d7645a42..847844001b85 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClientTest.java index 33b0137c0033..d779e1911852 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClientTest.java index 44df0fb7d0a4..aa5bbc890533 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClientTest.java index b63303ce0074..68d59d247511 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClientTest.java index 959f617a85bc..34036c00d773 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClientTest.java index 8d979e63b0b2..eb535b0d8a76 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClientTest.java index bbec7cb71ca1..07f751a1822a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClientTest.java index 2f5553d01851..7914532096f9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClientTest.java index 0a3c1e5b0eb6..6d9dbd630e92 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClientTest.java index dccd98153e6f..c3f2609e91c6 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClientTest.java index f7af9d0e400e..9dadc3e2c7f2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClientTest.java index 2c98128d4cdc..05a8f201a8c9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClientTest.java index 74fea8bf7f3e..3119a7c8f1c2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClientTest.java index f3da708f57bd..485b1ef83d29 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/IndexServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/JobServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/JobServiceClientTest.java index 5d4ed0386b05..6c982ecb9575 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/JobServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/JobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClientTest.java index 368800d35123..1d9e999e0f97 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClientTest.java index 87b96f2f7121..81f1f7ec85e9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MatchServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClientTest.java index ab6bc46c7842..56ac300272e5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClientTest.java index 45f7190a83d6..b746f9565886 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClientTest.java index a6e01ad769c3..4dacaaa91043 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetService.java index 1c8a20a6cfba..719d15a1e2b2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetServiceImpl.java index 40cf4e147f47..b8c6d84aaf1c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDatasetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolService.java index eeb19635cf6a..75f49378d4ae 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolServiceImpl.java index 368a2119c7fa..d1394685c886 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockDeploymentResourcePoolServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointService.java index d4b06149ab8f..989864071645 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointServiceImpl.java index 3e4c0330cdd3..fc7ae7901a48 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEndpointServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationService.java index 72dc3ff27ed2..3f4e93e2ff45 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationServiceImpl.java index 8b25e4a30615..e0278b096f25 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockEvaluationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreService.java index a3f1417cd15d..820b38628306 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreServiceImpl.java index 7c8ac6d03cc0..43dbd2c377d4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExampleStoreServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionService.java index 20016286bb17..07f6df2f2f31 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionServiceImpl.java index 48e03c5d00c2..34e6c34b8641 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionExecutionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryService.java index e6c10256a8c5..a4a479a0e726 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryServiceImpl.java index d50150b1be73..89bf6ffad867 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockExtensionRegistryServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminService.java index b4f6a021f9f7..761b75e6c362 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminServiceImpl.java index 0dbd4da93859..a6353252527a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreAdminServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreService.java index d0c2558894d2..06d32383bf5d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreServiceImpl.java index c5b42d5a1755..4d3aa64aa07f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureOnlineStoreServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryService.java index 54adc4a9bf81..15ef96b7f207 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryServiceImpl.java index a5110eae5268..d89d5d0d8277 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeatureRegistryServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingService.java index ce349a6766cb..ef31976c3bc0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingServiceImpl.java index 1c01a0c9658e..e2f9ff90d436 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreOnlineServingServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreService.java index 3b98f3c6efae..174ba76cb4a0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreServiceImpl.java index 8cc0b27d7947..8edd3fa3f555 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockFeaturestoreServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheService.java index 1e96a1c74c96..fa9e8da3bb59 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheServiceImpl.java index 6d6c2e5730ec..be2b4cb53f72 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiCacheServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningService.java index 253287a45a2f..7b79b19fe01a 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningServiceImpl.java index b9be0cfdcde8..2bc2fbab23ec 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockGenAiTuningServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicy.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicy.java index b5f0d7f78367..0a33c4651524 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicy.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicyImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicyImpl.java index 8ed10489765a..83fc737a7d9f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicyImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointService.java index 893aa9fd02b3..61dfc4f8ab31 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointServiceImpl.java index a287e247768e..3e635959aebf 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexEndpointServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexService.java index 2cccec108bdf..abc5d20ebbee 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexServiceImpl.java index 392f2538d255..734b6aa40620 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockIndexServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobService.java index 64e13be94806..fdaaa8cd1a14 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobServiceImpl.java index 0535bf1e0c85..de79fa3472b2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityService.java index 51f3d950be52..1d76dd8d5969 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityServiceImpl.java index c571b0612185..a0334e3c6948 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLlmUtilityServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocations.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocations.java index f04560fc2b10..9f6470fdb4b9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocations.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocationsImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocationsImpl.java index 2044a4ac0e79..85308eede931 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocationsImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchService.java index 4916109ec1a9..69e6c9338ff7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchServiceImpl.java index 67067e8fbd34..16c76027e338 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMatchServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankService.java index 26830b01c339..7b628ae55acc 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankServiceImpl.java index c907bf70cb7e..c4f25a75d1a4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMemoryBankServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataService.java index 378dce899bd1..0756dcdb8d6c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataServiceImpl.java index a26b81dd5a09..630f85a8d891 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMetadataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationService.java index a92e615619e9..143638298c08 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationServiceImpl.java index 2c9448cecbed..aacc90238233 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockMigrationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenService.java index 383e4ba2e184..71963eff640b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenServiceImpl.java index 6a84fc3c4722..fdfb37dd30d2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelGardenServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringService.java index 5bfe1f7a5924..4f24098d0ade 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringServiceImpl.java index d842b2e8f732..ddd10ce609e1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelMonitoringServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelService.java index 87fecda7b522..214f8d041475 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelServiceImpl.java index 219fdb29b68d..aa8c8928fee7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockModelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookService.java index af0c142ada15..14bc07115abe 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookServiceImpl.java index cca99faa287f..cb65ec9db80e 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockNotebookServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceService.java index b295a2643bd1..81520b11b4ab 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceServiceImpl.java index bc3adb2719ed..bd1bc43bd2c2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPersistentResourceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineService.java index 15132dcaee68..012735d56229 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineServiceImpl.java index 365859c90e4b..952e8e0d0220 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPipelineServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionService.java index 385a836dbcfa..c6dedd5e7338 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionServiceImpl.java index 028a42c4aa01..4c8e1dd46140 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockPredictionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionService.java index 8ca58203bf4a..57bd38bb7a2c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionServiceImpl.java index 594415982dc2..a16183980911 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineExecutionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineService.java index eea7a31a169c..3b79c7b1e607 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineServiceImpl.java index 8446db28938a..18a4a4b3343d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockReasoningEngineServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleService.java index bd248ce3b278..526278cb17d0 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleServiceImpl.java index c19fcda0910f..4a29a048fcf5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockScheduleServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionService.java index 4c3ccd0cf579..b7c8b3d4fd8d 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionServiceImpl.java index 6d705c5137b3..75e945e85664 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSessionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolService.java index 40f3cb8fb0bc..fb05ed5fb5c8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolServiceImpl.java index 7f10ca6096f3..d5f74ed44349 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockSpecialistPoolServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardService.java index 3278948d7394..e0ddf99c5d9b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardServiceImpl.java index 4ed0955c934c..37644daf04fe 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockTensorboardServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataService.java index e64db93d53d9..276a7ebd03b8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataServiceImpl.java index 301fc4da7f9c..36fb3b809577 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagDataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagService.java index a6fe57019d44..95c6360689d1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagServiceImpl.java index 2c4842979657..46ee9574d5b2 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVertexRagServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierService.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierService.java index ce457efd3da4..325b3f770e3f 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierService.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierServiceImpl.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierServiceImpl.java index 7081ef95b861..a394167fb434 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierServiceImpl.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/MockVizierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClientTest.java index f3d4c28e12e9..13466881f650 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClientTest.java index f4872d577b8a..a99135a85359 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClientTest.java index be996c619187..cbea7fdbb3d7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ModelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClientTest.java index 797be92d7696..591277a2d69c 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClientTest.java index ee059c2989c5..77b0f7954f29 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClientTest.java index 1fc0b06101b3..2170e2f433f7 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClientTest.java index b9a1fb2e53a6..e5c32c0f14d9 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClientTest.java index eaf91e3a5bd4..e8fbd7bbd8b8 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClientTest.java index e911c4f70e62..22d42791a4f1 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClientTest.java index 7951154ad484..085160497020 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClientTest.java index dbb3c285fd6a..e6f941a1449b 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SessionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClientTest.java index 3092174b0bcd..51782670da75 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClientTest.java index b82ea45e5dac..2b80cadf1473 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClientTest.java index 23aff018d8aa..a1ecf54576b5 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -122,6 +122,8 @@ public void createRagCorpusTest() throws Exception { .setRagFilesCount(-477680736) .setEncryptionSpec(EncryptionSpec.newBuilder().build()) .setCorpusTypeConfig(RagCorpus.CorpusTypeConfig.newBuilder().build()) + .setSatisfiesPzs(true) + .setSatisfiesPzi(true) .build(); Operation resultOperation = Operation.newBuilder() @@ -181,6 +183,8 @@ public void createRagCorpusTest2() throws Exception { .setRagFilesCount(-477680736) .setEncryptionSpec(EncryptionSpec.newBuilder().build()) .setCorpusTypeConfig(RagCorpus.CorpusTypeConfig.newBuilder().build()) + .setSatisfiesPzs(true) + .setSatisfiesPzi(true) .build(); Operation resultOperation = Operation.newBuilder() @@ -240,6 +244,8 @@ public void updateRagCorpusTest() throws Exception { .setRagFilesCount(-477680736) .setEncryptionSpec(EncryptionSpec.newBuilder().build()) .setCorpusTypeConfig(RagCorpus.CorpusTypeConfig.newBuilder().build()) + .setSatisfiesPzs(true) + .setSatisfiesPzi(true) .build(); Operation resultOperation = Operation.newBuilder() @@ -296,6 +302,8 @@ public void getRagCorpusTest() throws Exception { .setRagFilesCount(-477680736) .setEncryptionSpec(EncryptionSpec.newBuilder().build()) .setCorpusTypeConfig(RagCorpus.CorpusTypeConfig.newBuilder().build()) + .setSatisfiesPzs(true) + .setSatisfiesPzi(true) .build(); mockVertexRagDataService.addResponse(expectedResponse); @@ -344,6 +352,8 @@ public void getRagCorpusTest2() throws Exception { .setRagFilesCount(-477680736) .setEncryptionSpec(EncryptionSpec.newBuilder().build()) .setCorpusTypeConfig(RagCorpus.CorpusTypeConfig.newBuilder().build()) + .setSatisfiesPzs(true) + .setSatisfiesPzi(true) .build(); mockVertexRagDataService.addResponse(expectedResponse); diff --git a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClientTest.java index a43117a436eb..7dba7a468a34 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClientTest.java b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClientTest.java index 53fa7ec3bd4e..ec24b5448cc4 100644 --- a/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClientTest.java +++ b/java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/VizierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/pom.xml b/java-aiplatform/grpc-google-cloud-aiplatform-v1/pom.xml index 8719bfebdb89..dc0481163610 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/pom.xml +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-aiplatform-v1 - 3.82.0-SNAPSHOT + 3.83.0 grpc-google-cloud-aiplatform-v1 GRPC library for google-cloud-aiplatform com.google.cloud google-cloud-aiplatform-parent - 3.82.0-SNAPSHOT + 3.83.0 diff --git a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceGrpc.java index 845783199f07..66188294fedf 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceGrpc.java index 533420d73a5e..09c2bd00c285 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceGrpc.java index 75f49a5dc1a3..281ad9ca7b68 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceGrpc.java index 01c1d8260014..64605420155f 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceGrpc.java index 1cb8eba6d644..ec3f139c4df6 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceGrpc.java index abf040e611b7..455524db6901 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceGrpc.java index 226afce0d93c..c096f3ecbb55 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceGrpc.java index b5ee22e5cefa..afa64ae28f7c 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceGrpc.java index dd587c015506..a19e5e465548 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServingServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceGrpc.java index e5e9c9dc032a..bb4cea4f6c62 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceGrpc.java index 9f257dce27ba..93ddd4f53bba 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceGrpc.java index 639283ad2a10..18d8d263bb4c 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceGrpc.java index e6d5a450bb44..843816510dba 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceGrpc.java index 9ce4cac93eec..ef5684ee8660 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceGrpc.java index c3d94f005650..a7a1d44e2ffd 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceGrpc.java index 58969f1a2bff..e16314882fad 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceGrpc.java index e47f3d9d1712..8fed95e8cf60 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceGrpc.java index 1ed8e872e0e3..74176fbe7eac 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceGrpc.java index 3563afedad8c..4576e0a4d4b9 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceGrpc.java index 9aa40ba3e6f9..531fe006ef61 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceGrpc.java index 41ae23a79a00..3a771dfa9ae7 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceGrpc.java index fa515cf1305d..87650bbd3d2b 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceGrpc.java index 6d47a8ca014f..503642592547 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceGrpc.java index d1a8a17a1f35..cd989192b25b 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceGrpc.java index 4466684da744..d7a2076fccd3 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceGrpc.java index c392f546fcb9..6438a7cec712 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceGrpc.java index 8b88d44e9de3..f2a16e687c49 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceGrpc.java index 758369caeb71..7fb361cf8f2b 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceGrpc.java index 4a29c1ce47b5..7bab1dbacb05 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceGrpc.java index 6d7e2e78a388..e574b8ff8f5a 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceGrpc.java index e1574190d60d..639b253e876e 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceGrpc.java index e1a08989cb78..6dc109377974 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceGrpc.java index 86b70691ed91..f37736d0acbc 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/pom.xml b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/pom.xml index 54b5317bdba1..6a11f319aa62 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/pom.xml +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-aiplatform-v1beta1 - 0.98.0-SNAPSHOT + 0.99.0 grpc-google-cloud-aiplatform-v1beta1 GRPC library for google-cloud-aiplatform com.google.cloud google-cloud-aiplatform-parent - 3.82.0-SNAPSHOT + 3.83.0 diff --git a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceGrpc.java index f76a0b2c6a48..82524fb6f16f 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DatasetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceGrpc.java index 1fa376d1a81b..a1be3d17f7bd 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceGrpc.java index 96fef7c3f0e9..b8856ba7dece 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceGrpc.java index 44106ab2ea21..5639874a9da4 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EvaluationServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceGrpc.java index e0236f85860c..d04186fef6c8 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExampleStoreServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceGrpc.java index 34637dd52a2b..58aab20c5475 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionExecutionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceGrpc.java index a3b4e51a4c92..7acc1bdc3a51 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ExtensionRegistryServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceGrpc.java index 8705b9ab5956..c34c1df4d3d3 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceGrpc.java index a9f8b85159d2..259ff8df46ed 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceGrpc.java index 182458ac6c81..020e826a32ff 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceGrpc.java index ebb615eb2126..dc6a00661f2d 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServingServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceGrpc.java index 91685ce6e64e..4ad43e6ff95a 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceGrpc.java index d98a5026a0f5..430f7d39a138 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceGrpc.java index 4fa149de9e32..3c8825c02376 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceGrpc.java index 21732ce893c7..4f8d2b198a8d 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceGrpc.java index c20df1568cbb..d084c5402676 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceGrpc.java index 0f2c8be0b751..adddd69c0df5 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceGrpc.java index 3f21e04154d2..7d891697a146 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceGrpc.java index f16a7cbc434f..038ae348121e 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceGrpc.java index 6a034bcad0b1..47f2827eda7d 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceGrpc.java index 5988bbd86f99..c4980e5defd0 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceGrpc.java index e241c9113480..1b90fa55bb1a 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceGrpc.java index d02e1cb71458..6d6166f77d69 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceGrpc.java index f44378bb7684..963b155303ce 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceGrpc.java index 310fbac024bf..f6a2e428c6a1 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceGrpc.java index 07209c987e40..846bd421a079 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceGrpc.java index e78e6b4570f3..0a06b40604b7 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceGrpc.java index 38ff17605a0d..20b675f5c33b 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceGrpc.java index baf18c039507..95f281912222 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceGrpc.java index b72ed3d5568f..0cd007e80a40 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceGrpc.java index d17356c49596..94a3682fa025 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceGrpc.java index 4204cf9f57f1..ee219fb4ddbc 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceGrpc.java index 6c645ca0261d..8594acfd6aed 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceGrpc.java index 87a6667b50cb..436f3a7b630c 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceGrpc.java index 53c604aa967a..363c344e83d9 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceGrpc.java index d65e1119867e..0cbbd6b630ed 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceGrpc.java index e0089ceab749..8049bda87fc2 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceGrpc.java b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceGrpc.java index 3882ecbe4e2e..9f930ba6fdbd 100644 --- a/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceGrpc.java +++ b/java-aiplatform/grpc-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/pom.xml b/java-aiplatform/pom.xml index 7d537271d91f..541ad6ece303 100644 --- a/java-aiplatform/pom.xml +++ b/java-aiplatform/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-aiplatform-parent pom - 3.82.0-SNAPSHOT + 3.83.0 Google Cloud Vertex AI Parent Java client for Google Cloud Vertex AI services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,27 +29,27 @@ com.google.cloud google-cloud-aiplatform - 3.82.0-SNAPSHOT + 3.83.0 com.google.api.grpc proto-google-cloud-aiplatform-v1 - 3.82.0-SNAPSHOT + 3.83.0 com.google.api.grpc proto-google-cloud-aiplatform-v1beta1 - 0.98.0-SNAPSHOT + 0.99.0 com.google.api.grpc grpc-google-cloud-aiplatform-v1 - 3.82.0-SNAPSHOT + 3.83.0 com.google.api.grpc grpc-google-cloud-aiplatform-v1beta1 - 0.98.0-SNAPSHOT + 0.99.0 diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/pom.xml b/java-aiplatform/proto-google-cloud-aiplatform-v1/pom.xml index b666bc9e303d..28755d1cfec9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/pom.xml +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-aiplatform-v1 - 3.82.0-SNAPSHOT + 3.83.0 proto-google-cloud-aiplatform-v1 Proto library for google-cloud-aiplatform com.google.cloud google-cloud-aiplatform-parent - 3.82.0-SNAPSHOT + 3.83.0 diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorType.java index 2e542e0f4209..4d9dae023119 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorTypeProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorTypeProto.java index cd0a225d6046..bd2d13fb4d13 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorTypeProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AcceleratorTypeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfig.java index 9dbe30a25880..5568a144042e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfigOrBuilder.java index 2b467ccef08a..0fa7270b5dba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ActiveLearningConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequest.java index 253c29568726..6a6d4ef1d62f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequestOrBuilder.java index f331032d565f..098f679f333d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponse.java index 38fddc448ce0..d51948d60d03 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponseOrBuilder.java index efedceb77c0d..5adff30fe7eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextArtifactsAndExecutionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequest.java index 97915a8e8f1c..35888a8aaad6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequestOrBuilder.java index 718df79c9cb6..bc0c6a13fff6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponse.java index 37f0bc609c54..e164da4147ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponseOrBuilder.java index d6c1bce2722b..4bedc44dc4f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddContextChildrenResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequest.java index 2edf117c3810..04ebbd9851db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequestOrBuilder.java index 74b946d096ce..6a4e7f92ebb4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponse.java index 5f51c62c2d84..a753321d0fe0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponseOrBuilder.java index 704faa64be0d..066ddba0ddd0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddExecutionEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequest.java index fe5b18963c43..f46fc986d49a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequestOrBuilder.java index 85997c4b0877..c93b675f5a4e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AddTrialMeasurementRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Annotation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Annotation.java index 431b901f7210..f638598e7b75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Annotation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Annotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationOrBuilder.java index 8bb802d42769..021e82129718 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationProto.java index c42104773faf..816c52c068bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpec.java index 587430a430eb..742d4d8edf2c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecName.java index 0a97f6f05adb..ac18b39bf7ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecOrBuilder.java index 95900b77c219..f591ca455217 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecProto.java index d95c108093d7..110b89e23289 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AnnotationSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuth.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuth.java index f4f1c719f738..3c32a9e5fe1e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuth.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuth.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthOrBuilder.java index cdb6d2051c2e..9f0be6212900 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthProto.java index a36643084d70..86c90c7c3b16 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ApiAuthProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Artifact.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Artifact.java index 1096b7383741..15c24d37d1a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Artifact.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Artifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactName.java index 95cab969ccd3..21547734f52a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactOrBuilder.java index cf7e3fc1e9cc..a5a590b3cb9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactProto.java index 7f4f54360624..7d724757f831 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadata.java index 03b75a579bf6..28028aae9189 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadataOrBuilder.java index f057dd715d4f..ebf367d3cbf2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequest.java index 217d13e522ac..a5febc064a8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequestOrBuilder.java index 14a1d5743452..96ac592788c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AssignNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Attribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Attribution.java index 4917b153d257..69f387fc52af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Attribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Attribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AttributionOrBuilder.java index 3da7eb895450..d52887ef1ff0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequest.java index 86bed5f7e882..f374a9d25915 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequestOrBuilder.java index 9c563027ad91..ffbc641b4eea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponse.java index 5ca766883660..7d34c555e9ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponseOrBuilder.java index ca26d2c9daa3..ee83b912b273 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AugmentPromptResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResources.java index 08d6072a1468..4327205f7789 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -71,9 +71,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *

-   * Immutable. The minimum number of replicas this DeployedModel will be always
-   * deployed on. If traffic against it increases, it may dynamically be
-   * deployed onto more replicas up to
+   * Immutable. The minimum number of replicas that will be always deployed on.
+   * If traffic against it increases, it may dynamically be deployed onto more
+   * replicas up to
    * [max_replica_count][google.cloud.aiplatform.v1.AutomaticResources.max_replica_count],
    * and as traffic decreases, some of these extra replicas may be freed. If the
    * requested value is too large, the deployment will error.
@@ -95,15 +95,14 @@ public int getMinReplicaCount() {
    *
    *
    * 
-   * Immutable. The maximum number of replicas this DeployedModel may be
-   * deployed on when the traffic against it increases. If the requested value
-   * is too large, the deployment will error, but if deployment succeeds then
-   * the ability to scale the model to that many replicas is guaranteed (barring
-   * service outages). If traffic against the DeployedModel increases beyond
-   * what its replicas at maximum may handle, a portion of the traffic will be
-   * dropped. If this value is not provided, a no upper bound for scaling under
-   * heavy traffic will be assume, though Vertex AI may be unable to scale
-   * beyond certain replica number.
+   * Immutable. The maximum number of replicas that may be deployed on when the
+   * traffic against it increases. If the requested value is too large, the
+   * deployment will error, but if deployment succeeds then the ability to scale
+   * to that many replicas is guaranteed (barring service outages). If traffic
+   * increases beyond what its replicas at maximum may handle, a portion of the
+   * traffic will be dropped. If this value is not provided, a no upper bound
+   * for scaling under heavy traffic will be assume, though Vertex AI may be
+   * unable to scale beyond certain replica number.
    * 
* * int32 max_replica_count = 2 [(.google.api.field_behavior) = IMMUTABLE]; @@ -486,9 +485,9 @@ public Builder mergeFrom( * * *
-     * Immutable. The minimum number of replicas this DeployedModel will be always
-     * deployed on. If traffic against it increases, it may dynamically be
-     * deployed onto more replicas up to
+     * Immutable. The minimum number of replicas that will be always deployed on.
+     * If traffic against it increases, it may dynamically be deployed onto more
+     * replicas up to
      * [max_replica_count][google.cloud.aiplatform.v1.AutomaticResources.max_replica_count],
      * and as traffic decreases, some of these extra replicas may be freed. If the
      * requested value is too large, the deployment will error.
@@ -507,9 +506,9 @@ public int getMinReplicaCount() {
      *
      *
      * 
-     * Immutable. The minimum number of replicas this DeployedModel will be always
-     * deployed on. If traffic against it increases, it may dynamically be
-     * deployed onto more replicas up to
+     * Immutable. The minimum number of replicas that will be always deployed on.
+     * If traffic against it increases, it may dynamically be deployed onto more
+     * replicas up to
      * [max_replica_count][google.cloud.aiplatform.v1.AutomaticResources.max_replica_count],
      * and as traffic decreases, some of these extra replicas may be freed. If the
      * requested value is too large, the deployment will error.
@@ -532,9 +531,9 @@ public Builder setMinReplicaCount(int value) {
      *
      *
      * 
-     * Immutable. The minimum number of replicas this DeployedModel will be always
-     * deployed on. If traffic against it increases, it may dynamically be
-     * deployed onto more replicas up to
+     * Immutable. The minimum number of replicas that will be always deployed on.
+     * If traffic against it increases, it may dynamically be deployed onto more
+     * replicas up to
      * [max_replica_count][google.cloud.aiplatform.v1.AutomaticResources.max_replica_count],
      * and as traffic decreases, some of these extra replicas may be freed. If the
      * requested value is too large, the deployment will error.
@@ -557,15 +556,14 @@ public Builder clearMinReplicaCount() {
      *
      *
      * 
-     * Immutable. The maximum number of replicas this DeployedModel may be
-     * deployed on when the traffic against it increases. If the requested value
-     * is too large, the deployment will error, but if deployment succeeds then
-     * the ability to scale the model to that many replicas is guaranteed (barring
-     * service outages). If traffic against the DeployedModel increases beyond
-     * what its replicas at maximum may handle, a portion of the traffic will be
-     * dropped. If this value is not provided, a no upper bound for scaling under
-     * heavy traffic will be assume, though Vertex AI may be unable to scale
-     * beyond certain replica number.
+     * Immutable. The maximum number of replicas that may be deployed on when the
+     * traffic against it increases. If the requested value is too large, the
+     * deployment will error, but if deployment succeeds then the ability to scale
+     * to that many replicas is guaranteed (barring service outages). If traffic
+     * increases beyond what its replicas at maximum may handle, a portion of the
+     * traffic will be dropped. If this value is not provided, a no upper bound
+     * for scaling under heavy traffic will be assume, though Vertex AI may be
+     * unable to scale beyond certain replica number.
      * 
* * int32 max_replica_count = 2 [(.google.api.field_behavior) = IMMUTABLE]; @@ -581,15 +579,14 @@ public int getMaxReplicaCount() { * * *
-     * Immutable. The maximum number of replicas this DeployedModel may be
-     * deployed on when the traffic against it increases. If the requested value
-     * is too large, the deployment will error, but if deployment succeeds then
-     * the ability to scale the model to that many replicas is guaranteed (barring
-     * service outages). If traffic against the DeployedModel increases beyond
-     * what its replicas at maximum may handle, a portion of the traffic will be
-     * dropped. If this value is not provided, a no upper bound for scaling under
-     * heavy traffic will be assume, though Vertex AI may be unable to scale
-     * beyond certain replica number.
+     * Immutable. The maximum number of replicas that may be deployed on when the
+     * traffic against it increases. If the requested value is too large, the
+     * deployment will error, but if deployment succeeds then the ability to scale
+     * to that many replicas is guaranteed (barring service outages). If traffic
+     * increases beyond what its replicas at maximum may handle, a portion of the
+     * traffic will be dropped. If this value is not provided, a no upper bound
+     * for scaling under heavy traffic will be assume, though Vertex AI may be
+     * unable to scale beyond certain replica number.
      * 
* * int32 max_replica_count = 2 [(.google.api.field_behavior) = IMMUTABLE]; @@ -609,15 +606,14 @@ public Builder setMaxReplicaCount(int value) { * * *
-     * Immutable. The maximum number of replicas this DeployedModel may be
-     * deployed on when the traffic against it increases. If the requested value
-     * is too large, the deployment will error, but if deployment succeeds then
-     * the ability to scale the model to that many replicas is guaranteed (barring
-     * service outages). If traffic against the DeployedModel increases beyond
-     * what its replicas at maximum may handle, a portion of the traffic will be
-     * dropped. If this value is not provided, a no upper bound for scaling under
-     * heavy traffic will be assume, though Vertex AI may be unable to scale
-     * beyond certain replica number.
+     * Immutable. The maximum number of replicas that may be deployed on when the
+     * traffic against it increases. If the requested value is too large, the
+     * deployment will error, but if deployment succeeds then the ability to scale
+     * to that many replicas is guaranteed (barring service outages). If traffic
+     * increases beyond what its replicas at maximum may handle, a portion of the
+     * traffic will be dropped. If this value is not provided, a no upper bound
+     * for scaling under heavy traffic will be assume, though Vertex AI may be
+     * unable to scale beyond certain replica number.
      * 
* * int32 max_replica_count = 2 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResourcesOrBuilder.java index faaab952a992..990d316daba7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResourcesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutomaticResourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,9 +28,9 @@ public interface AutomaticResourcesOrBuilder * * *
-   * Immutable. The minimum number of replicas this DeployedModel will be always
-   * deployed on. If traffic against it increases, it may dynamically be
-   * deployed onto more replicas up to
+   * Immutable. The minimum number of replicas that will be always deployed on.
+   * If traffic against it increases, it may dynamically be deployed onto more
+   * replicas up to
    * [max_replica_count][google.cloud.aiplatform.v1.AutomaticResources.max_replica_count],
    * and as traffic decreases, some of these extra replicas may be freed. If the
    * requested value is too large, the deployment will error.
@@ -46,15 +46,14 @@ public interface AutomaticResourcesOrBuilder
    *
    *
    * 
-   * Immutable. The maximum number of replicas this DeployedModel may be
-   * deployed on when the traffic against it increases. If the requested value
-   * is too large, the deployment will error, but if deployment succeeds then
-   * the ability to scale the model to that many replicas is guaranteed (barring
-   * service outages). If traffic against the DeployedModel increases beyond
-   * what its replicas at maximum may handle, a portion of the traffic will be
-   * dropped. If this value is not provided, a no upper bound for scaling under
-   * heavy traffic will be assume, though Vertex AI may be unable to scale
-   * beyond certain replica number.
+   * Immutable. The maximum number of replicas that may be deployed on when the
+   * traffic against it increases. If the requested value is too large, the
+   * deployment will error, but if deployment succeeds then the ability to scale
+   * to that many replicas is guaranteed (barring service outages). If traffic
+   * increases beyond what its replicas at maximum may handle, a portion of the
+   * traffic will be dropped. If this value is not provided, a no upper bound
+   * for scaling under heavy traffic will be assume, though Vertex AI may be
+   * unable to scale beyond certain replica number.
    * 
* * int32 max_replica_count = 2 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpec.java index 20caaa7e0548..1ec735314a76 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,6 +81,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` *
* * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -110,6 +111,7 @@ public java.lang.String getMetricName() { * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` *
* * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -530,6 +532,7 @@ public Builder mergeFrom( * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` *
* * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -558,6 +561,7 @@ public java.lang.String getMetricName() { * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` *
* * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -586,6 +590,7 @@ public com.google.protobuf.ByteString getMetricNameBytes() { * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` *
* * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -613,6 +618,7 @@ public Builder setMetricName(java.lang.String value) { * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` * * * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -636,6 +642,7 @@ public Builder clearMetricName() { * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` * * * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpecOrBuilder.java index a73d4c50457c..c9c7de76958c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AutoscalingMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -34,6 +34,7 @@ public interface AutoscalingMetricSpecOrBuilder * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` * * * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -52,6 +53,7 @@ public interface AutoscalingMetricSpecOrBuilder * * For Online Prediction: * * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + * * `aiplatform.googleapis.com/prediction/online/request_count` * * * string metric_name = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSource.java index b4247a0a3328..4e26e9109773 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSourceOrBuilder.java index 2ed61f08d994..a619f3d64a8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/AvroSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadata.java index acb38a5cfe6f..0f7cba2ebbcb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java index a660a65bd67d..b68545edc167 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequest.java index b954a2ea3f14..88c7dca03be2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequestOrBuilder.java index c64bac6585ca..6ce8e378dffb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponse.java index 6f1a22a8663d..b3736d6a7355 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponseOrBuilder.java index 51ed97e2bf56..d33fd6c154e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCancelPipelineJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadata.java index 17504f79fd4d..9f9d7d40b1b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadataOrBuilder.java index aa1db3adf0c2..76f1b3dc04c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequest.java index a3b99eccaf5e..2f38ef1e2da0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequestOrBuilder.java index 7a14ac56f598..83efc042268a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponse.java index df0cc6519d60..659b4539ba58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponseOrBuilder.java index 55d037f551ea..2c7aa4581cf3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateFeaturesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequest.java index 4943c2eb92bf..d073a61ae058 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequestOrBuilder.java index 01a97a2e9e33..58a1a19305dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponse.java index b0166a39a9d4..4b8f7d56e023 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponseOrBuilder.java index 392dfc4e4e6e..4072e1509dcf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardRunsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequest.java index c3426c999bed..3518fdcc6beb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java index 1925366e100d..17a6dc5b6846 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponse.java index a5358ba86bec..6c514fd5ba2c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java index 64f92b0105b5..cd8ccfa82639 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResources.java index c9b776d08be9..048bf8a66817 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResourcesOrBuilder.java index bad218165381..f9ca4613f287 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResourcesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDedicatedResourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequest.java index 4d670666f1d6..5948c408702b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequestOrBuilder.java index 6ab741fe07ee..408b831f7e19 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponse.java index 30443428efdd..46a2ce1a0ab5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponseOrBuilder.java index 6d0667de6cbf..4d709a4fec36 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchDeletePipelineJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequest.java index 2a4880746ada..008d6955eb67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java index 1cd050775a29..224e35029eb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponse.java index 958a3d2f97f5..bee944cb1c08 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java index c48b0acad9b8..e1908b952add 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequest.java index b5ac8e57641d..a366bdbb8c70 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequestOrBuilder.java index 18a0e5d0550f..347824088684 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponse.java index cc250ef9a506..cb15eac7d9d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponseOrBuilder.java index 8307aa56b85f..1681f4282a86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchImportModelEvaluationSlicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadata.java index 711fc1b2b61b..c19ea121c5d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadataOrBuilder.java index 5456ea57e991..06a8fda3e497 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequest.java index 261610bfd759..30cfbe54e6f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequestOrBuilder.java index 1f3504d13b87..475fa3359528 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponse.java index 3c50b7a501d3..d1ffda074f13 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponseOrBuilder.java index 844595145235..8dd3b6e4845e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchMigrateResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJob.java index 8c7044af35bc..2ff6c8009733 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobName.java index 858257c71a19..0a2a14ad6060 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobOrBuilder.java index c4f6856f45e3..3ea9c500ebd3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobProto.java index 256e209f26c9..1ebbdf5120c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchPredictionJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadata.java index 0ed779c0f8f1..0ba09a7633ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadataOrBuilder.java index c8f56dad286c..a70b07b33d0e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequest.java index 488f523316c2..a23fe2a266c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequestOrBuilder.java index f4950573fcef..0187c4a39c93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponse.java index 4d6e01cab7c1..4d1c8ddfc8ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponseOrBuilder.java index 1cf28349931b..1603e2b70260 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequest.java index 2d639e84ecfe..88da24b463e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java index 50d2cb16698a..508fb0ffce7d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponse.java index 148c1bbccc73..f30db92609f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java index 73edbf8b995f..0850a3613517 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestination.java index 833a2fd1ccc7..386dae3e1ece 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestinationOrBuilder.java index 3d5371b869a4..acfc7cbbc409 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQueryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySource.java index c121efe769c1..3ede564be87d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySourceOrBuilder.java index 59e1f73656c3..6c6ec706e10e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BigQuerySourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInput.java index 4d7296940cd1..e80f7fb1926a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInputOrBuilder.java index e1d444ab5aa1..26cd47486fe1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstance.java index 20c9a3d8ca3f..4d6b26a5a2da 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstanceOrBuilder.java index 6754fb945058..1ba16482b641 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValue.java index 9d229a068b96..37587c28e5f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValueOrBuilder.java index c678ed0412a3..1a08e38c0ee5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResults.java index 608af2ca3f48..f138549f500a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResultsOrBuilder.java index 29c331fa78a1..387ed49a5c9f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpec.java index f5bf71b13856..c4798a06dd37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpecOrBuilder.java index 7eaa99f5c2d7..6189b69de0ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BleuSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Blob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Blob.java index ee72fd676c7b..93441bf9ab59 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Blob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Blob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlobOrBuilder.java index ec4cb9e5125f..6e6bf29c85bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfig.java index 61002f8fa711..a24ea2aa2886 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfigOrBuilder.java index f61058da9132..e9a1f6aa0499 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BlurBaselineConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArray.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArray.java index d6b79e256d52..fd406f6af693 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArray.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArrayOrBuilder.java index 8791a47fc2ef..47d8f48d217c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/BoolArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContent.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContent.java index f06599910f56..9d977006b3be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContent.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentName.java index 20d1682552f4..6f0aae08db5c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentOrBuilder.java index 30334260fd09..e47c22d224f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentProto.java index 5880d94a1314..a7eb86384c2f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CachedContentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequest.java index 5f60606aacb2..59e03d218689 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequestOrBuilder.java index 7ee80713bad2..cb34ba8e8351 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelBatchPredictionJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequest.java index 82d9d6a2647f..7d68f138a4a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequestOrBuilder.java index af8c2fef46b1..782c69d979f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelCustomJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequest.java index ebd1576c885f..87118834c976 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequestOrBuilder.java index 3bdf8b2ea573..b7934c9aac7d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelDataLabelingJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequest.java index 240e31cbf037..fca7fc0eefb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequestOrBuilder.java index 02f4bb343098..abd606ad5ea4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelHyperparameterTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequest.java index b0ec70198efe..4b22c1cb8903 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequestOrBuilder.java index 0e6cee0614f2..8208bc29ae28 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelNasJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequest.java index d141cd1fe2db..11d822299df2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequestOrBuilder.java index c37e1c6b1350..0ab5b019652f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelPipelineJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequest.java index 6f96cefc7b3c..cfec3c588fbb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequestOrBuilder.java index 9d8fbab0bab8..49e8624e9846 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTrainingPipelineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequest.java index 8fb63bbc09ca..bc441f058ca9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequestOrBuilder.java index 8af77eaf7064..24f2d9b971c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CancelTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Candidate.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Candidate.java index 7b9ede7d551a..019393f6ac63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Candidate.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Candidate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CandidateOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CandidateOrBuilder.java index 9cc47afd908a..36bb4cef3397 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CandidateOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CandidateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdata.java index b90232304a45..c54d6ecab049 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java index 3dfcb6d6f7ac..0c5bf2f7aa6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequest.java index 45a6b6773c07..a1e1248c609a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequestOrBuilder.java index ddb200c6b0aa..9739aa17f773 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponse.java index 8bb09e5ff923..39a5beca6af0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponseOrBuilder.java index 0e13b72838b1..d48a256031c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckTrialEarlyStoppingStateResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Checkpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Checkpoint.java index e9a8d8658b86..0d9fa95aabe6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Checkpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Checkpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckpointOrBuilder.java index 5b434cb689b6..49a70b063c3e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CheckpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Citation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Citation.java index 736f873bea2c..60875ab4b012 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Citation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Citation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadata.java index 5489d2c0aede..63c3d53baaa3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadataOrBuilder.java index 3d550e59898e..952a4da27013 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationOrBuilder.java index 56590eb0063a..c21edd248a19 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CitationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Claim.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Claim.java index 4360daa201c2..c61ff72dd636 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Claim.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Claim.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClaimOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClaimOrBuilder.java index 4258334ffaa9..4dcecdc7465b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClaimOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClaimOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfig.java index 1c54e5f1c0d6..cc91d08b9661 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfigOrBuilder.java index 5bda9a082b0e..44b50596a36d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ClientConnectionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResult.java index 13a91f51641b..31f370c3bb2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResultOrBuilder.java index 56e834fa03ce..cf20d793d50a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CodeExecutionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInput.java index deb3dc5019d3..018ef8a43e42 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInputOrBuilder.java index ae28371a0dbe..c26ad2143caf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstance.java index f1a239a4f5df..8f1e1fe36509 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstanceOrBuilder.java index fe3685a26e50..7758d9bbaac3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResult.java index a562a86e28fe..e26c12856de3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResultOrBuilder.java index 70c77ffad660..2ffcc0a49132 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpec.java index d5d978441501..9349f777c9c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpecOrBuilder.java index 07886a1e8a24..1a232531d31c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CoherenceSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImage.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImage.java index bb00b02c49aa..7760d0dca87b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImage.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImageOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImageOrBuilder.java index 8cc2624a001b..82200ce9550d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImageOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ColabImageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInput.java index 252f2dedd6e7..b6146c02c3ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInputOrBuilder.java index d50131be98d1..21fee53f2e93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstance.java index 4d51bf26eec8..4a3a6096d845 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstanceOrBuilder.java index f27c77a33db7..b16bc0083eb8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResult.java index 99df0db9ca44..f07884b9d3ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResultOrBuilder.java index 0f6a4b1b40f8..379dea748200 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpec.java index 2d9b6ff04745..928aea7e015e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpecOrBuilder.java index 5f47d2e7a294..81d60d08f3a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CometSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequest.java index 7bdcf41487af..58603764c418 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequestOrBuilder.java index f8437295a7d8..51b5b3c25ad1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompleteTrialRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStats.java index e0e6230b7679..4b262566414c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsOrBuilder.java index f3ff042ecdbd..ccd89c8c79c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsProto.java index 906b87ef4ef3..9d4a01e8067f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CompletionStatsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequest.java index 7ae3cc356110..9c5685cb47e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequestOrBuilder.java index 2595dddfe0bc..a5c43f794447 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponse.java index fb0b6ac7d8e6..f195e8309bbb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponseOrBuilder.java index f6c39fb38651..870570dbab18 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ComputeTokensResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestination.java index a93291e65f9a..71aa7ef61e1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestinationOrBuilder.java index 282ad2378552..fc60e950d85f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerRegistryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpec.java index b4b790c3758e..a7b7368e6f0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpecOrBuilder.java index ae168593bf91..b32a7657d93d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContainerSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Content.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Content.java index 2bca9fec820c..4a0d900b3953 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Content.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Content.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentOrBuilder.java index e3b7d93287d0..25820d87909a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentProto.java index ae535bb981ac..fce344206473 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ContentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,6 +48,30 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1_VideoMetadata_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1_VideoMetadata_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_VoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_VoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_SpeechConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_SpeechConfig_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1_ImageConfig_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -220,10 +244,35 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "VideoMetadata\0224\n" + "\014start_offset\030\001" + " \001(\0132\031.google.protobuf.DurationB\003\340A\001\0222\n\n" - + "end_offset\030\002 \001(\0132\031.google.protobuf.DurationB\003\340A\001\">\n" + + "end_offset\030\002 \001(\0132\031.google.protobuf.DurationB\003\340A\001\"=\n" + + "\023PrebuiltVoiceConfig\022\027\n\n" + + "voice_name\030\001 \001(\tH\000\210\001\001B\r\n" + + "\013_voice_name\"P\n" + + "\025ReplicatedVoiceConfig\022\026\n" + + "\tmime_type\030\001 \001(\tB\003\340A\001\022\037\n" + + "\022voice_sample_audio\030\002 \001(\014B\003\340A\001\"\312\001\n" + + "\013VoiceConfig\022P\n" + + "\025prebuilt_voice_config\030\001 \001(\0132/.go" + + "ogle.cloud.aiplatform.v1.PrebuiltVoiceConfigH\000\022Y\n" + + "\027replicated_voice_config\030\003 \001(\0132" + + "1.google.cloud.aiplatform.v1.ReplicatedVoiceConfigB\003\340A\001H\000B\016\n" + + "\014voice_config\"n\n" + + "\022SpeakerVoiceConfig\022\024\n" + + "\007speaker\030\001 \001(\tB\003\340A\002\022B\n" + + "\014voice_config\030\002" + + " \001(\0132\'.google.cloud.aiplatform.v1.VoiceConfigB\003\340A\002\"m\n" + + "\027MultiSpeakerVoiceConfig\022R\n" + + "\025speaker_voice_configs\030\002 " + + "\003(\0132..google.cloud.aiplatform.v1.SpeakerVoiceConfigB\003\340A\002\"\302\001\n" + + "\014SpeechConfig\022=\n" + + "\014voice_config\030\001" + + " \001(\0132\'.google.cloud.aiplatform.v1.VoiceConfig\022\032\n\r" + + "language_code\030\002 \001(\tB\003\340A\001\022W\n" + + "\032multi_speaker_voice_config\030\003 \001(\013" + + "23.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig\">\n" + "\013ImageConfig\022\036\n" + "\014aspect_ratio\030\002 \001(\tB\003\340A\001H\000\210\001\001B\017\n\r" - + "_aspect_ratio\"\322\r\n" + + "_aspect_ratio\"\257\016\n" + "\020GenerationConfig\022\035\n" + "\013temperature\030\001 \001(\002B\003\340A\001H\000\210\001\001\022\027\n" + "\005top_p\030\002 \001(\002B\003\340A\001H\001\210\001\001\022\027\n" @@ -243,21 +292,24 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\210\001\001\022>\n" + "\024response_json_schema\030\034" + " \001(\0132\026.google.protobuf.ValueB\003\340A\001H\013\210\001\001\022\\\n" - + "\016routing_config\030\021 \001(\0132:.google.cloud." - + "aiplatform.v1.GenerationConfig.RoutingConfigB\003\340A\001H\014\210\001\001\022Y\n" - + "\017thinking_config\030\031 \001(\0132" - + ";.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfigB\003\340A\001\022G\n" + + "\016routing_config\030\021 \001(\0132:.goo" + + "gle.cloud.aiplatform.v1.GenerationConfig.RoutingConfigB\003\340A\001H\014\210\001\001\022I\n\r" + + "speech_config\030\027" + + " \001(\0132(.google.cloud.aiplatform.v1.SpeechConfigB\003\340A\001H\r" + + "\210\001\001\022Y\n" + + "\017thinking_config\030\031" + + " \001(\0132;.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfigB\003\340A\001\022G\n" + "\014image_config\030\036" - + " \001(\0132\'.google.cloud.aiplatform.v1.ImageConfigB\003\340A\001H\r" - + "\210\001\001\032\302\004\n\r" + + " \001(\0132\'.google.cloud.aiplatform.v1.ImageConfigB\003\340A\001H\016\210\001\001\032\302\004\n\r" + "RoutingConfig\022_\n" - + "\tauto_mode\030\001 \001(\0132J.google.cloud.aiplatfor" - + "m.v1.GenerationConfig.RoutingConfig.AutoRoutingModeH\000\022c\n" - + "\013manual_mode\030\002 \001(\0132L.goo" - + "gle.cloud.aiplatform.v1.GenerationConfig.RoutingConfig.ManualRoutingModeH\000\032\233\002\n" + + "\tauto_mode\030\001 \001(\0132J.google.cloud.aipl" + + "atform.v1.GenerationConfig.RoutingConfig.AutoRoutingModeH\000\022c\n" + + "\013manual_mode\030\002 \001(\0132L.google.cloud.aiplatform.v1.GenerationC" + + "onfig.RoutingConfig.ManualRoutingModeH\000\032\233\002\n" + "\017AutoRoutingMode\022\210\001\n" - + "\030model_routing_preference\030\001 \001(\0162a.google.cloud.aiplatform.v1.G" - + "enerationConfig.RoutingConfig.AutoRoutingMode.ModelRoutingPreferenceH\000\210\001\001\"`\n" + + "\030model_routing_preference\030\001 \001(\0162a.google.cloud.aiplatform" + + ".v1.GenerationConfig.RoutingConfig.AutoR" + + "outingMode.ModelRoutingPreferenceH\000\210\001\001\"`\n" + "\026ModelRoutingPreference\022\013\n" + "\007UNKNOWN\020\000\022\026\n" + "\022PRIORITIZE_QUALITY\020\001\022\014\n" @@ -285,15 +337,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005_seedB\022\n" + "\020_response_schemaB\027\n" + "\025_response_json_schemaB\021\n" - + "\017_routing_configB\017\n\r" + + "\017_routing_configB\020\n" + + "\016_speech_configB\017\n\r" + "_image_config\"\353\003\n\r" + "SafetySetting\022?\n" - + "\010category\030\001" - + " \001(\0162(.google.cloud.aiplatform.v1.HarmCategoryB\003\340A\002\022T\n" - + "\tthreshold\030\002 \001(\0162<" - + ".google.cloud.aiplatform.v1.SafetySetting.HarmBlockThresholdB\003\340A\002\022N\n" - + "\006method\030\004 \001(" - + "\01629.google.cloud.aiplatform.v1.SafetySetting.HarmBlockMethodB\003\340A\001\"\235\001\n" + + "\010category\030\001 \001(\0162(.go" + + "ogle.cloud.aiplatform.v1.HarmCategoryB\003\340A\002\022T\n" + + "\tthreshold\030\002 \001(\0162<.google.cloud.aip" + + "latform.v1.SafetySetting.HarmBlockThresholdB\003\340A\002\022N\n" + + "\006method\030\004 \001(\01629.google.cloud." + + "aiplatform.v1.SafetySetting.HarmBlockMethodB\003\340A\001\"\235\001\n" + "\022HarmBlockThreshold\022$\n" + " HARM_BLOCK_THRESHOLD_UNSPECIFIED\020\000\022\027\n" + "\023BLOCK_LOW_AND_ABOVE\020\001\022\032\n" @@ -308,11 +361,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\014SafetyRating\022?\n" + "\010category\030\001" + " \001(\0162(.google.cloud.aiplatform.v1.HarmCategoryB\003\340A\003\022R\n" - + "\013probability\030\002" - + " \001(\01628.google.cloud.aiplatform.v1.SafetyRating.HarmProbabilityB\003\340A\003\022\036\n" + + "\013probability\030\002 \001(\01628.g" + + "oogle.cloud.aiplatform.v1.SafetyRating.HarmProbabilityB\003\340A\003\022\036\n" + "\021probability_score\030\005 \001(\002B\003\340A\003\022L\n" - + "\010severity\030\006" - + " \001(\01625.google.cloud.aiplatform.v1.SafetyRating.HarmSeverityB\003\340A\003\022\033\n" + + "\010severity\030\006 \001(\01625.google.c" + + "loud.aiplatform.v1.SafetyRating.HarmSeverityB\003\340A\003\022\033\n" + "\016severity_score\030\007 \001(\002B\003\340A\003\022\024\n" + "\007blocked\030\003 \001(\010B\003\340A\003\"b\n" + "\017HarmProbability\022 \n" @@ -344,19 +397,18 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005score\030\010 \001(\001B\003\340A\003\022\031\n" + "\014avg_logprobs\030\t \001(\001B\003\340A\003\022H\n" + "\017logprobs_result\030\n" - + " \001(\0132*.google.cloud.aiplatform.v1.LogprobsResultB\003\340A\003\022N\n" - + "\r" - + "finish_reason\030\003" - + " \001(\01622.google.cloud.aiplatform.v1.Candidate.FinishReasonB\003\340A\003\022E\n" + + " \001(\0132*.google.cloud.aiplatform.v1.LogprobsResultB\003\340A\003\022N\n\r" + + "finish_reason\030\003 " + + "\001(\01622.google.cloud.aiplatform.v1.Candidate.FinishReasonB\003\340A\003\022E\n" + "\016safety_ratings\030\004" + " \003(\0132(.google.cloud.aiplatform.v1.SafetyRatingB\003\340A\003\022 \n" + "\016finish_message\030\005 \001(\tB\003\340A\003H\000\210\001\001\022L\n" - + "\021citation_metadata\030\006" - + " \001(\0132,.google.cloud.aiplatform.v1.CitationMetadataB\003\340A\003\022N\n" - + "\022grounding_metadata\030\007" - + " \001(\0132-.google.cloud.aiplatform.v1.GroundingMetadataB\003\340A\003\022Q\n" - + "\024url_context_metadata\030\013" - + " \001(\0132..google.cloud.aiplatform.v1.UrlContextMetadataB\003\340A\003\"\315\001\n" + + "\021citation_metadata\030\006 \001(\0132,.googl" + + "e.cloud.aiplatform.v1.CitationMetadataB\003\340A\003\022N\n" + + "\022grounding_metadata\030\007 \001(\0132-.google" + + ".cloud.aiplatform.v1.GroundingMetadataB\003\340A\003\022Q\n" + + "\024url_context_metadata\030\013 \001(\0132..goog" + + "le.cloud.aiplatform.v1.UrlContextMetadataB\003\340A\003\"\315\001\n" + "\014FinishReason\022\035\n" + "\031FINISH_REASON_UNSPECIFIED\020\000\022\010\n" + "\004STOP\020\001\022\016\n\n" @@ -372,21 +424,21 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "B\021\n" + "\017_finish_message\"X\n" + "\022UrlContextMetadata\022B\n" - + "\014url_metadata\030\001" - + " \003(\0132\'.google.cloud.aiplatform.v1.UrlMetadataB\003\340A\003\"\374\001\n" + + "\014url_metadata\030\001 \003(\0132\'." + + "google.cloud.aiplatform.v1.UrlMetadataB\003\340A\003\"\374\001\n" + "\013UrlMetadata\022\025\n\r" + "retrieved_url\030\001 \001(\t\022X\n" - + "\024url_retrieval_status\030\002" - + " \001(\0162:.google.cloud.aiplatform.v1.UrlMetadata.UrlRetrievalStatus\"|\n" + + "\024url_retrieval_status\030\002 \001(\0162:.googl" + + "e.cloud.aiplatform.v1.UrlMetadata.UrlRetrievalStatus\"|\n" + "\022UrlRetrievalStatus\022$\n" + " URL_RETRIEVAL_STATUS_UNSPECIFIED\020\000\022 \n" + "\034URL_RETRIEVAL_STATUS_SUCCESS\020\001\022\036\n" + "\032URL_RETRIEVAL_STATUS_ERROR\020\002\"\217\003\n" + "\016LogprobsResult\022P\n" - + "\016top_candidates\030\001 \003(\01328" - + ".google.cloud.aiplatform.v1.LogprobsResult.TopCandidates\022O\n" - + "\021chosen_candidates\030\002 " - + "\003(\01324.google.cloud.aiplatform.v1.LogprobsResult.Candidate\032\177\n" + + "\016top_candidates\030\001 \003(\01328.google.cloud.aip" + + "latform.v1.LogprobsResult.TopCandidates\022O\n" + + "\021chosen_candidates\030\002 \003(\01324.google.clou" + + "d.aiplatform.v1.LogprobsResult.Candidate\032\177\n" + "\tCandidate\022\022\n" + "\005token\030\001 \001(\tH\000\210\001\001\022\025\n" + "\010token_id\030\003 \001(\005H\001\210\001\001\022\034\n" @@ -404,10 +456,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004text\030\004 \001(\tB\003\340A\003\"\322\007\n" + "\016GroundingChunk\022=\n" + "\003web\030\001 \001(\0132..google.cloud.aiplatform.v1.GroundingChunk.WebH\000\022X\n" - + "\021retrieved_context\030\002" - + " \001(\0132;.google.cloud.aiplatform.v1.GroundingChunk.RetrievedContextH\000\022?\n" - + "\004maps\030\003" - + " \001(\0132/.google.cloud.aiplatform.v1.GroundingChunk.MapsH\000\032=\n" + + "\021retrieved_context\030\002 \001(\0132;.goo" + + "gle.cloud.aiplatform.v1.GroundingChunk.RetrievedContextH\000\022?\n" + + "\004maps\030\003 \001(\0132/.google" + + ".cloud.aiplatform.v1.GroundingChunk.MapsH\000\032=\n" + "\003Web\022\020\n" + "\003uri\030\001 \001(\tH\000\210\001\001\022\022\n" + "\005title\030\002 \001(\tH\001\210\001\001B\006\n" @@ -429,11 +481,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005title\030\002 \001(\tH\001\210\001\001\022\021\n" + "\004text\030\003 \001(\tH\002\210\001\001\022\025\n" + "\010place_id\030\004 \001(\tH\003\210\001\001\022`\n" - + "\024place_answer_sources\030\005 \001(\0132B.go" - + "ogle.cloud.aiplatform.v1.GroundingChunk.Maps.PlaceAnswerSources\032\313\001\n" + + "\024place_answer_sources\030\005 \001(\0132B.google.cloud.aiplat" + + "form.v1.GroundingChunk.Maps.PlaceAnswerSources\032\313\001\n" + "\022PlaceAnswerSources\022i\n" - + "\017review_snippets\030\001 \003(\0132P.google" - + ".cloud.aiplatform.v1.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet\032J\n\r" + + "\017review_snippets\030\001 \003(\0132P.google.cloud.aiplatform" + + ".v1.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet\032J\n\r" + "ReviewSnippet\022\021\n" + "\treview_id\030\001 \001(\t\022\027\n" + "\017google_maps_uri\030\002 \001(\t\022\r\n" @@ -444,25 +496,25 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\t_place_idB\014\n\n" + "chunk_type\"\225\001\n" + "\020GroundingSupport\0229\n" - + "\007segment\030\001 \001(" - + "\0132#.google.cloud.aiplatform.v1.SegmentH\000\210\001\001\022\037\n" + + "\007segment\030\001" + + " \001(\0132#.google.cloud.aiplatform.v1.SegmentH\000\210\001\001\022\037\n" + "\027grounding_chunk_indices\030\002 \003(\005\022\031\n" + "\021confidence_scores\030\003 \003(\002B\n\n" + "\010_segment\"\240\005\n" + "\021GroundingMetadata\022\037\n" + "\022web_search_queries\030\001 \003(\tB\003\340A\001\022R\n" - + "\022search_entry_point\030\004 \001(\0132," - + ".google.cloud.aiplatform.v1.SearchEntryPointB\003\340A\001H\000\210\001\001\022D\n" - + "\020grounding_chunks\030\005 \003(\013" - + "2*.google.cloud.aiplatform.v1.GroundingChunk\022M\n" - + "\022grounding_supports\030\006 \003(\0132,.googl" - + "e.cloud.aiplatform.v1.GroundingSupportB\003\340A\001\022V\n" - + "\022retrieval_metadata\030\007 \001(\0132-.google" - + ".cloud.aiplatform.v1.RetrievalMetadataB\006\340A\001\340A\003H\001\210\001\001\0225\n" + + "\022search_entry_point\030\004" + + " \001(\0132,.google.cloud.aiplatform.v1.SearchEntryPointB\003\340A\001H\000\210\001\001\022D\n" + + "\020grounding_chunks\030\005" + + " \003(\0132*.google.cloud.aiplatform.v1.GroundingChunk\022M\n" + + "\022grounding_supports\030\006" + + " \003(\0132,.google.cloud.aiplatform.v1.GroundingSupportB\003\340A\001\022V\n" + + "\022retrieval_metadata\030\007" + + " \001(\0132-.google.cloud.aiplatform.v1.RetrievalMetadataB\006\340A\001\340A\003H\001\210\001\001\0225\n" + " google_maps_widget_context_token\030\010 \001(" + "\tB\006\340A\001\340A\003H\002\210\001\001\022]\n" - + "\024source_flagging_uris\030\t \003(\0132?.google.cloud.aiplatfo" - + "rm.v1.GroundingMetadata.SourceFlaggingUri\032@\n" + + "\024source_flagging_uris\030\t \003(\0132" + + "?.google.cloud.aiplatform.v1.GroundingMetadata.SourceFlaggingUri\032@\n" + "\021SourceFlaggingUri\022\021\n" + "\tsource_id\030\001 \001(\t\022\030\n" + "\020flag_content_uri\030\002 \001(\tB\025\n" @@ -497,13 +549,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005VIDEO\020\003\022\t\n" + "\005AUDIO\020\004\022\014\n" + "\010DOCUMENT\020\005B\257\002\n" - + "\036com.google.cloud.aiplatform.v1B\014ContentPro" - + "toP\001Z>cloud.google.com/go/aiplatform/api" - + "v1/aiplatformpb;aiplatformpb\252\002\032Google.Cl" - + "oud.AIPlatform.V1\312\002\032Google\\Cloud\\AIPlatf" - + "orm\\V1\352\002\035Google::Cloud::AIPlatform::V1\352Ab\n" - + "\"modelarmor.googleapis.com/Template\022cloud.googl" + + "e.com/go/aiplatform/apiv1/aiplatformpb;a" + + "iplatformpb\252\002\032Google.Cloud.AIPlatform.V1" + + "\312\002\032Google\\Cloud\\AIPlatform\\V1\352\002\035Google::Cloud::AIPlatform::V1\352Ab\n" + + "\"modelarmor.googleapis.com/Template\022cloud.google.com/go/a" - + "iplatform/apiv1/aiplatformpb;aiplatformp" - + "b\252\002\032Google.Cloud.AIPlatform.V1\312\002\032Google\\" - + "Cloud\\AIPlatform\\V1\352\002\035Google::Cloud::AIPlatform::V1b\006proto3" + + "\036com.google.cloud.aiplatform.v1B\016CustomJobP" + + "rotoP\001Z>cloud.google.com/go/aiplatform/a" + + "piv1/aiplatformpb;aiplatformpb\252\002\032Google." + + "Cloud.AIPlatform.V1\312\002\032Google\\Cloud\\AIPla" + + "tform\\V1\352\002\035Google::Cloud::AIPlatform::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -262,6 +265,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MachineSpec", "ReplicaCount", "NfsMounts", + "LustreMounts", "DiskSpec", "Task", }); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpec.java index 07c3237b0c9f..ce21a28da6e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpecOrBuilder.java index 0ee9ccaf85cc..88a0b2ed04d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/CustomJobSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceProto.java index 450c8404cc00..02e3d26960a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataFoundryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItem.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItem.java index d36d86e32ae0..796c6cbea4d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItem.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemName.java index cb2393c82210..45a507cae995 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemOrBuilder.java index 20af2f483027..fbdeeb9cffae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemProto.java index 4eba605c2953..27a4500d8234 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemView.java index 5e09a9bab0e2..07f9a4d166f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemViewOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemViewOrBuilder.java index 7ff08f395b72..540b9f986c86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemViewOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataItemViewOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJob.java index 9c2a232da670..744ffc229d30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobName.java index c7b03aec2722..aff82aae42ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobOrBuilder.java index 7f72c9101b53..ae84b75c305b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobProto.java index 689b08dfdcc1..50c1726030b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DataLabelingJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Dataset.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Dataset.java index 30f24e1fae7d..f6b44049b0e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Dataset.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Dataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetName.java index 607e8cdb5c08..6d7160b1f984 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetOrBuilder.java index 56df61d84a62..64b894188b25 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetProto.java index 04a1f9462ad6..bc525ba98a90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceProto.java index 0b4f1f40dd27..d89263b0a61c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersion.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersion.java index 73216cdbec6f..e5e1e052c71b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersion.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionName.java index b62b87175002..35fea7f69aac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionOrBuilder.java index 556c51947eef..55b006e0365d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionProto.java index 3e2070973c3e..6a474112d27e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DatasetVersionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResources.java index 889c6263542d..b68814a54ad3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,8 +23,8 @@ * * *
- * A description of resources that are dedicated to a DeployedModel, and
- * that need a higher degree of manual configuration.
+ * A description of resources that are dedicated to a DeployedModel or
+ * DeployedIndex, and that need a higher degree of manual configuration.
  * 
* * Protobuf type {@code google.cloud.aiplatform.v1.DedicatedResources} @@ -73,8 +73,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Immutable. The specification of a single machine used by the
-   * prediction.
+   * Required. Immutable. The specification of a single machine being used.
    * 
* * @@ -92,8 +91,7 @@ public boolean hasMachineSpec() { * * *
-   * Required. Immutable. The specification of a single machine used by the
-   * prediction.
+   * Required. Immutable. The specification of a single machine being used.
    * 
* * @@ -113,8 +111,7 @@ public com.google.cloud.aiplatform.v1.MachineSpec getMachineSpec() { * * *
-   * Required. Immutable. The specification of a single machine used by the
-   * prediction.
+   * Required. Immutable. The specification of a single machine being used.
    * 
* * @@ -135,13 +132,11 @@ public com.google.cloud.aiplatform.v1.MachineSpecOrBuilder getMachineSpecOrBuild * * *
-   * Required. Immutable. The minimum number of machine replicas this
-   * DeployedModel will be always deployed on. This value must be greater than
-   * or equal to 1.
+   * Required. Immutable. The minimum number of machine replicas that will be
+   * always deployed on. This value must be greater than or equal to 1.
    *
-   * If traffic against the DeployedModel increases, it may dynamically be
-   * deployed onto more replicas, and as traffic decreases, some of these extra
-   * replicas may be freed.
+   * If traffic increases, it may dynamically be deployed onto more replicas,
+   * and as traffic decreases, some of these extra replicas may be freed.
    * 
* * @@ -162,13 +157,12 @@ public int getMinReplicaCount() { * * *
-   * Immutable. The maximum number of replicas this DeployedModel may be
-   * deployed on when the traffic against it increases. If the requested value
-   * is too large, the deployment will error, but if deployment succeeds then
-   * the ability to scale the model to that many replicas is guaranteed (barring
-   * service outages). If traffic against the DeployedModel increases beyond
-   * what its replicas at maximum may handle, a portion of the traffic will be
-   * dropped. If this value is not provided, will use
+   * Immutable. The maximum number of replicas that may be deployed on when the
+   * traffic against it increases. If the requested value is too large, the
+   * deployment will error, but if deployment succeeds then the ability to scale
+   * to that many replicas is guaranteed (barring service outages). If traffic
+   * increases beyond what its replicas at maximum may handle, a portion of the
+   * traffic will be dropped. If this value is not provided, will use
    * [min_replica_count][google.cloud.aiplatform.v1.DedicatedResources.min_replica_count]
    * as the default value.
    *
@@ -195,8 +189,8 @@ public int getMaxReplicaCount() {
    *
    * 
    * Optional. Number of required available replicas for the deployment to
-   * succeed. This field is only needed when partial model deployment/mutation
-   * is desired. If set, the model deploy/mutate operation will succeed once
+   * succeed. This field is only needed when partial deployment/mutation is
+   * desired. If set, the deploy/mutate operation will succeed once
    * available_replica_count reaches required_replica_count, and the rest of
    * the replicas will be retried. If not set, the default
    * required_replica_count will be min_replica_count.
@@ -649,8 +643,8 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
    *
    *
    * 
-   * A description of resources that are dedicated to a DeployedModel, and
-   * that need a higher degree of manual configuration.
+   * A description of resources that are dedicated to a DeployedModel or
+   * DeployedIndex, and that need a higher degree of manual configuration.
    * 
* * Protobuf type {@code google.cloud.aiplatform.v1.DedicatedResources} @@ -970,8 +964,7 @@ public Builder mergeFrom( * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -988,8 +981,7 @@ public boolean hasMachineSpec() { * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1012,8 +1004,7 @@ public com.google.cloud.aiplatform.v1.MachineSpec getMachineSpec() { * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1038,8 +1029,7 @@ public Builder setMachineSpec(com.google.cloud.aiplatform.v1.MachineSpec value) * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1062,8 +1052,7 @@ public Builder setMachineSpec( * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1093,8 +1082,7 @@ public Builder mergeMachineSpec(com.google.cloud.aiplatform.v1.MachineSpec value * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1116,8 +1104,7 @@ public Builder clearMachineSpec() { * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1134,8 +1121,7 @@ public com.google.cloud.aiplatform.v1.MachineSpec.Builder getMachineSpecBuilder( * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1156,8 +1142,7 @@ public com.google.cloud.aiplatform.v1.MachineSpecOrBuilder getMachineSpecOrBuild * * *
-     * Required. Immutable. The specification of a single machine used by the
-     * prediction.
+     * Required. Immutable. The specification of a single machine being used.
      * 
* * @@ -1187,13 +1172,11 @@ public com.google.cloud.aiplatform.v1.MachineSpecOrBuilder getMachineSpecOrBuild * * *
-     * Required. Immutable. The minimum number of machine replicas this
-     * DeployedModel will be always deployed on. This value must be greater than
-     * or equal to 1.
+     * Required. Immutable. The minimum number of machine replicas that will be
+     * always deployed on. This value must be greater than or equal to 1.
      *
-     * If traffic against the DeployedModel increases, it may dynamically be
-     * deployed onto more replicas, and as traffic decreases, some of these extra
-     * replicas may be freed.
+     * If traffic increases, it may dynamically be deployed onto more replicas,
+     * and as traffic decreases, some of these extra replicas may be freed.
      * 
* * @@ -1211,13 +1194,11 @@ public int getMinReplicaCount() { * * *
-     * Required. Immutable. The minimum number of machine replicas this
-     * DeployedModel will be always deployed on. This value must be greater than
-     * or equal to 1.
+     * Required. Immutable. The minimum number of machine replicas that will be
+     * always deployed on. This value must be greater than or equal to 1.
      *
-     * If traffic against the DeployedModel increases, it may dynamically be
-     * deployed onto more replicas, and as traffic decreases, some of these extra
-     * replicas may be freed.
+     * If traffic increases, it may dynamically be deployed onto more replicas,
+     * and as traffic decreases, some of these extra replicas may be freed.
      * 
* * @@ -1239,13 +1220,11 @@ public Builder setMinReplicaCount(int value) { * * *
-     * Required. Immutable. The minimum number of machine replicas this
-     * DeployedModel will be always deployed on. This value must be greater than
-     * or equal to 1.
+     * Required. Immutable. The minimum number of machine replicas that will be
+     * always deployed on. This value must be greater than or equal to 1.
      *
-     * If traffic against the DeployedModel increases, it may dynamically be
-     * deployed onto more replicas, and as traffic decreases, some of these extra
-     * replicas may be freed.
+     * If traffic increases, it may dynamically be deployed onto more replicas,
+     * and as traffic decreases, some of these extra replicas may be freed.
      * 
* * @@ -1267,13 +1246,12 @@ public Builder clearMinReplicaCount() { * * *
-     * Immutable. The maximum number of replicas this DeployedModel may be
-     * deployed on when the traffic against it increases. If the requested value
-     * is too large, the deployment will error, but if deployment succeeds then
-     * the ability to scale the model to that many replicas is guaranteed (barring
-     * service outages). If traffic against the DeployedModel increases beyond
-     * what its replicas at maximum may handle, a portion of the traffic will be
-     * dropped. If this value is not provided, will use
+     * Immutable. The maximum number of replicas that may be deployed on when the
+     * traffic against it increases. If the requested value is too large, the
+     * deployment will error, but if deployment succeeds then the ability to scale
+     * to that many replicas is guaranteed (barring service outages). If traffic
+     * increases beyond what its replicas at maximum may handle, a portion of the
+     * traffic will be dropped. If this value is not provided, will use
      * [min_replica_count][google.cloud.aiplatform.v1.DedicatedResources.min_replica_count]
      * as the default value.
      *
@@ -1296,13 +1274,12 @@ public int getMaxReplicaCount() {
      *
      *
      * 
-     * Immutable. The maximum number of replicas this DeployedModel may be
-     * deployed on when the traffic against it increases. If the requested value
-     * is too large, the deployment will error, but if deployment succeeds then
-     * the ability to scale the model to that many replicas is guaranteed (barring
-     * service outages). If traffic against the DeployedModel increases beyond
-     * what its replicas at maximum may handle, a portion of the traffic will be
-     * dropped. If this value is not provided, will use
+     * Immutable. The maximum number of replicas that may be deployed on when the
+     * traffic against it increases. If the requested value is too large, the
+     * deployment will error, but if deployment succeeds then the ability to scale
+     * to that many replicas is guaranteed (barring service outages). If traffic
+     * increases beyond what its replicas at maximum may handle, a portion of the
+     * traffic will be dropped. If this value is not provided, will use
      * [min_replica_count][google.cloud.aiplatform.v1.DedicatedResources.min_replica_count]
      * as the default value.
      *
@@ -1329,13 +1306,12 @@ public Builder setMaxReplicaCount(int value) {
      *
      *
      * 
-     * Immutable. The maximum number of replicas this DeployedModel may be
-     * deployed on when the traffic against it increases. If the requested value
-     * is too large, the deployment will error, but if deployment succeeds then
-     * the ability to scale the model to that many replicas is guaranteed (barring
-     * service outages). If traffic against the DeployedModel increases beyond
-     * what its replicas at maximum may handle, a portion of the traffic will be
-     * dropped. If this value is not provided, will use
+     * Immutable. The maximum number of replicas that may be deployed on when the
+     * traffic against it increases. If the requested value is too large, the
+     * deployment will error, but if deployment succeeds then the ability to scale
+     * to that many replicas is guaranteed (barring service outages). If traffic
+     * increases beyond what its replicas at maximum may handle, a portion of the
+     * traffic will be dropped. If this value is not provided, will use
      * [min_replica_count][google.cloud.aiplatform.v1.DedicatedResources.min_replica_count]
      * as the default value.
      *
@@ -1363,8 +1339,8 @@ public Builder clearMaxReplicaCount() {
      *
      * 
      * Optional. Number of required available replicas for the deployment to
-     * succeed. This field is only needed when partial model deployment/mutation
-     * is desired. If set, the model deploy/mutate operation will succeed once
+     * succeed. This field is only needed when partial deployment/mutation is
+     * desired. If set, the deploy/mutate operation will succeed once
      * available_replica_count reaches required_replica_count, and the rest of
      * the replicas will be retried. If not set, the default
      * required_replica_count will be min_replica_count.
@@ -1384,8 +1360,8 @@ public int getRequiredReplicaCount() {
      *
      * 
      * Optional. Number of required available replicas for the deployment to
-     * succeed. This field is only needed when partial model deployment/mutation
-     * is desired. If set, the model deploy/mutate operation will succeed once
+     * succeed. This field is only needed when partial deployment/mutation is
+     * desired. If set, the deploy/mutate operation will succeed once
      * available_replica_count reaches required_replica_count, and the rest of
      * the replicas will be retried. If not set, the default
      * required_replica_count will be min_replica_count.
@@ -1409,8 +1385,8 @@ public Builder setRequiredReplicaCount(int value) {
      *
      * 
      * Optional. Number of required available replicas for the deployment to
-     * succeed. This field is only needed when partial model deployment/mutation
-     * is desired. If set, the model deploy/mutate operation will succeed once
+     * succeed. This field is only needed when partial deployment/mutation is
+     * desired. If set, the deploy/mutate operation will succeed once
      * available_replica_count reaches required_replica_count, and the rest of
      * the replicas will be retried. If not set, the default
      * required_replica_count will be min_replica_count.
diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResourcesOrBuilder.java
index 456f8dc75d35..7f0c94c077dd 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResourcesOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DedicatedResourcesOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -28,8 +28,7 @@ public interface DedicatedResourcesOrBuilder
    *
    *
    * 
-   * Required. Immutable. The specification of a single machine used by the
-   * prediction.
+   * Required. Immutable. The specification of a single machine being used.
    * 
* * @@ -44,8 +43,7 @@ public interface DedicatedResourcesOrBuilder * * *
-   * Required. Immutable. The specification of a single machine used by the
-   * prediction.
+   * Required. Immutable. The specification of a single machine being used.
    * 
* * @@ -60,8 +58,7 @@ public interface DedicatedResourcesOrBuilder * * *
-   * Required. Immutable. The specification of a single machine used by the
-   * prediction.
+   * Required. Immutable. The specification of a single machine being used.
    * 
* * @@ -74,13 +71,11 @@ public interface DedicatedResourcesOrBuilder * * *
-   * Required. Immutable. The minimum number of machine replicas this
-   * DeployedModel will be always deployed on. This value must be greater than
-   * or equal to 1.
+   * Required. Immutable. The minimum number of machine replicas that will be
+   * always deployed on. This value must be greater than or equal to 1.
    *
-   * If traffic against the DeployedModel increases, it may dynamically be
-   * deployed onto more replicas, and as traffic decreases, some of these extra
-   * replicas may be freed.
+   * If traffic increases, it may dynamically be deployed onto more replicas,
+   * and as traffic decreases, some of these extra replicas may be freed.
    * 
* * @@ -95,13 +90,12 @@ public interface DedicatedResourcesOrBuilder * * *
-   * Immutable. The maximum number of replicas this DeployedModel may be
-   * deployed on when the traffic against it increases. If the requested value
-   * is too large, the deployment will error, but if deployment succeeds then
-   * the ability to scale the model to that many replicas is guaranteed (barring
-   * service outages). If traffic against the DeployedModel increases beyond
-   * what its replicas at maximum may handle, a portion of the traffic will be
-   * dropped. If this value is not provided, will use
+   * Immutable. The maximum number of replicas that may be deployed on when the
+   * traffic against it increases. If the requested value is too large, the
+   * deployment will error, but if deployment succeeds then the ability to scale
+   * to that many replicas is guaranteed (barring service outages). If traffic
+   * increases beyond what its replicas at maximum may handle, a portion of the
+   * traffic will be dropped. If this value is not provided, will use
    * [min_replica_count][google.cloud.aiplatform.v1.DedicatedResources.min_replica_count]
    * as the default value.
    *
@@ -122,8 +116,8 @@ public interface DedicatedResourcesOrBuilder
    *
    * 
    * Optional. Number of required available replicas for the deployment to
-   * succeed. This field is only needed when partial model deployment/mutation
-   * is desired. If set, the model deploy/mutate operation will succeed once
+   * succeed. This field is only needed when partial deployment/mutation is
+   * desired. If set, the deploy/mutate operation will succeed once
    * available_replica_count reaches required_replica_count, and the rest of
    * the replicas will be retried. If not set, the default
    * required_replica_count will be min_replica_count.
diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequest.java
index 3fce88a9e9c1..a25ebbcb1670 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequestOrBuilder.java
index 0b5ff0c090c6..0e3ef4ccd287 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteArtifactRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequest.java
index d7fd06ae3453..c04c50aeb3d5 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequestOrBuilder.java
index a8db41fcb734..0f28906c4d8a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteBatchPredictionJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequest.java
index b8e3ef1a4992..bf569855442e 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequestOrBuilder.java
index cb18bee7fab4..99a976a387a2 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCachedContentRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequest.java
index d0cc739aff17..99eefe2984fa 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequestOrBuilder.java
index 75b830db069a..eb99a00d4bc0 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteContextRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequest.java
index c9d277d3189e..b02572d8068a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequestOrBuilder.java
index 10e48becc029..48ac6210c538 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteCustomJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequest.java
index 3d666cf40aad..07b0d3d7b9c3 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequestOrBuilder.java
index fc98710a6129..1c6d73b20afb 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDataLabelingJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequest.java
index f1cb98baa382..980466d165fb 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequestOrBuilder.java
index bfe1fc87d854..72c2fe2d09b4 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequest.java
index 7f3429253eac..f93ae30c3816 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequestOrBuilder.java
index f5173447bf00..59a38f1d5154 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDatasetVersionRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequest.java
index d45ec1bd6b7a..13009583b528 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequestOrBuilder.java
index 247fbb0ed542..5976eb7e3bb3 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteDeploymentResourcePoolRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequest.java
index e62af9705017..9d9ef3269b2c 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequestOrBuilder.java
index 6178a3e46211..7f1bbf54bf88 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEndpointRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequest.java
index e2a9ed46b5b8..6dd5690f03de 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequestOrBuilder.java
index 5b489aa0fc0f..0b6698d24042 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteEntityTypeRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequest.java
index 735571385781..3c7ee194bbba 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequestOrBuilder.java
index 98d6be1c4914..d70a0c6a9c01 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteExecutionRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequest.java
index 09e50699a21b..929cb11e851c 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequestOrBuilder.java
index e611dfec8f42..c5ecc4ce1065 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureGroupRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequest.java
index e6c72093e7dd..80bad0c70556 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequestOrBuilder.java
index c6e6f8b6ec19..1f4208fc2811 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureOnlineStoreRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequest.java
index 1bf31a263514..5d9f2cf724d2 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequestOrBuilder.java
index d341fed2ee2d..1b52f19311ca 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadata.java
index ec94ab46e102..a392a7b10a55 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadata.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadata.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadataOrBuilder.java
index b68d9863b8c3..12717ffef3d6 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadataOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesOperationMetadataOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequest.java
index a9c991d3b217..4eb4d2907b6d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequestOrBuilder.java
index a540caf7edcd..4102dbc74f65 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponse.java
index e47432231c93..e2bdd6a49c80 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponse.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponse.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponseOrBuilder.java
index d7b831845b42..46097c22343f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponseOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureValuesResponseOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequest.java
index 217e6f4c7101..28e4dd0b443b 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequestOrBuilder.java
index 4f3182ac4aae..2528c10c5d7d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeatureViewRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequest.java
index e62ea812fdc1..4d6b1acd9882 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequestOrBuilder.java
index e0b4f39df7da..6e9ccb2fa4d9 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteFeaturestoreRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequest.java
index 0bd68066ac98..5485490b6665 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequestOrBuilder.java
index 0c47f8c7cdc0..9138507d2cbd 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteHyperparameterTuningJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequest.java
index ab1c35455f58..8f4ee4fe39d9 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequestOrBuilder.java
index 114b0e4a2839..89b327aed069 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexEndpointRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequest.java
index d3d56dafe993..6a35ab770ff3 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequestOrBuilder.java
index 0c23c867f384..4fb04c3c17ca 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteIndexRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadata.java
index 72dc68d557f0..8ec82229a445 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadata.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadata.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadataOrBuilder.java
index 3514d9e2edcf..b591ad22625e 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadataOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreOperationMetadataOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequest.java
index a5f16b6dbe35..be716041eb87 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequestOrBuilder.java
index 0533724c44f4..e814daedc306 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteMetadataStoreRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequest.java
index fcfa5862ed16..6065bdc88302 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequestOrBuilder.java
index c254315a1ce8..1cc3ac23e327 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelDeploymentMonitoringJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequest.java
index a0640a9e447e..eb6372a3f689 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequestOrBuilder.java
index 147d36714af1..3cadb93d165d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequest.java
index 663c16071368..22472b4b0f55 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequestOrBuilder.java
index cbb92756d8aa..3ef0875fb256 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteModelVersionRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequest.java
index 921108852190..04e215b5e712 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequestOrBuilder.java
index a0392ac91fd2..e0ea970db3e0 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNasJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequest.java
index 09aa2b74dde2..1762107bad88 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequestOrBuilder.java
index dc67a81533ae..7228e4f1fdb6 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookExecutionJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequest.java
index 0c550918c03b..518b6efafcea 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequestOrBuilder.java
index 8a95338617cc..16d888b14898 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequest.java
index d650ad06ca90..61654d121313 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequestOrBuilder.java
index 726e9f946f9d..3b436e95c9f7 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteNotebookRuntimeTemplateRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadata.java
index eb5a7039988f..ff94f68ea6ef 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadata.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadata.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadataOrBuilder.java
index 2e1bd273a7fb..4bf8592b9fea 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadataOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteOperationMetadataOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequest.java
index 3e884f4409e9..3cfd8f7aae8d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequestOrBuilder.java
index ea276ae9dc77..45e219016483 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePersistentResourceRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequest.java
index ff7a05ea8ab7..70c4dc6ae955 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequestOrBuilder.java
index 9a10633c308d..41be73ffc984 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeletePipelineJobRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequest.java
index 675aa4302913..5ecffd588a0b 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequestOrBuilder.java
index cc77a152fb0a..08c3f5d25aff 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagCorpusRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequest.java
index 17a6c6276d74..59a8373fd8d9 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequestOrBuilder.java
index d4da0dc1ecbb..bb23fc12a0e5 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteRagFileRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequest.java
index d08ad73788d9..702f0685960a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequestOrBuilder.java
index 43c6f7ce8c2e..6bb92219b5fb 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteReasoningEngineRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequest.java
index 22e62c98e1b6..35661faf8a4d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequestOrBuilder.java
index eefc21b1f510..a395ea228fe0 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSavedQueryRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequest.java
index 357f384ffaac..bf616a0b8ceb 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequestOrBuilder.java
index 1cfd962e90e5..a5425ccea20d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteScheduleRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequest.java
index e2a2e5d9a6e2..8c3abcf94528 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequestOrBuilder.java
index 75dac0a3ec1c..016148d25e02 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteSpecialistPoolRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequest.java
index 73c5c4760b7b..16e5f10d8f17 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequestOrBuilder.java
index c173b5d9fe91..adcc8c496787 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteStudyRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequest.java
index 65dbe11de0a0..62e956f23bec 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequestOrBuilder.java
index 663b6eb0f7cf..defdb24e490e 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardExperimentRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequest.java
index 489d5741b3a1..4ed574dc252f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequestOrBuilder.java
index 7a1494fc4a47..713c2e6de1ee 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequest.java
index ea844c393aa6..e8c3810485dc 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequestOrBuilder.java
index 4396720fe400..3c7cfe949085 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardRunRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequest.java
index cc55b2e6e94c..cb047490a9fd 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequestOrBuilder.java
index 3e576176bd5e..347e78d1a8b1 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTensorboardTimeSeriesRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequest.java
index aaca26aa9d47..b868841ef9a2 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequestOrBuilder.java
index c921d604a6ce..fa342c0b1275 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrainingPipelineRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequest.java
index 59c962fe92dc..7091fb9c6c3d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequestOrBuilder.java
index 254db6e38946..e025311ddb1c 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeleteTrialRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadata.java
index 5656814b8c8c..9af0a164cc51 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadata.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadata.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadataOrBuilder.java
index f0964fec3af7..c9efa55a597a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadataOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexOperationMetadataOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequest.java
index f037a64d6544..e643ef8f17f0 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequestOrBuilder.java
index 95869b46540e..053ed35eecd6 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponse.java
index 1f3a8b74125f..8b873ffc294c 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponse.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponse.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponseOrBuilder.java
index 50de376c57b6..216a3ec9c86a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponseOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployIndexResponseOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadata.java
index 37df81ae1f3f..84b6679fefe4 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadata.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadata.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadataOrBuilder.java
index 028a8bb81926..6de9f8c61ae0 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadataOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelOperationMetadataOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequest.java
index a6bc5e8e228a..ee40be09b94b 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequestOrBuilder.java
index 0b3f594c1d80..8a46b9771f2f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponse.java
index 91227c3e5764..b94122070a77 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponse.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponse.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponseOrBuilder.java
index e66a1115ba77..a20830b3d6c1 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponseOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployModelResponseOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadata.java
index 31ec14d4677d..497bb2a376af 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadata.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadata.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadataOrBuilder.java
index 7bdf47f8458a..e7835aec2f43 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadataOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployOperationMetadataOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequest.java
index d6a4d8fe0d55..8f6cd051377a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequestOrBuilder.java
index d41c8fa69fd4..5b70a494c99d 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponse.java
index cd8a9e1e4a1b..33d3721fc1df 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponse.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponse.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponseOrBuilder.java
index 5c7c3b789cbe..436c2dc232b6 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponseOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployResponseOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndex.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndex.java
index 8186e01f2559..12068b1e5d26 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndex.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndex.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfig.java
index 5d26f8123385..aedd595b5149 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfig.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfig.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfigOrBuilder.java
index 8325677f52fb..d0e13370ffe8 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfigOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexAuthConfigOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexOrBuilder.java
index 66ef16d7d70a..124d5b038364 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRef.java
index fb3b1f5a0b93..cbc62d15e15c 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRef.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRef.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefOrBuilder.java
index 960ea12dea07..ef908a010538 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefProto.java
index b25be39c45f2..226aecd8a17a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefProto.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedIndexRefProto.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModel.java
index d6a77849afa5..0ef551333366 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModel.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModel.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelNameProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelNameProto.java
index 3df741588c0b..5f479a43b073 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelNameProto.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelNameProto.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelOrBuilder.java
index 31af11e81b51..826d02cc3839 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRef.java
index 7032b9e558fe..f30fce6e4ae6 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRef.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRef.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRefOrBuilder.java
index 60e08be819f8..9438d4ba5ecd 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRefOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeployedModelRefOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePool.java
index a6a1912c8b28..16e10299bef2 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePool.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePool.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolName.java
index 2ecde9fc0415..6af586534af8 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolName.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolOrBuilder.java
index e397c5598ddc..88ca807dbdf3 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolProto.java
index 1601e5075d3f..982bbfb2f260 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolProto.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolProto.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceProto.java
index 80156fecfc9b..28f6c2b783ff 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceProto.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentResourcePoolServiceProto.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStage.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStage.java
index 32b4a3094b5c..e2f2dd754bf5 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStage.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStage.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStageProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStageProto.java
index c65907fc53d5..2ff1015205bf 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStageProto.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DeploymentStageProto.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSetting.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSetting.java
index 98525136f80a..f07efa779c06 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSetting.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSetting.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSettingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSettingOrBuilder.java
index 66812699baf5..6dfb50a83b80 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSettingOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DestinationFeatureSettingOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequest.java
index 121eaf75f753..60fbebd729a4 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequestOrBuilder.java
index 0df80e3a63f1..0a7726de44c6 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponse.java
index 567e4e01f507..d6f36a22cf7f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponse.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponse.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponseOrBuilder.java
index 4549f5183c1d..7cc68da5c07f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponseOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectPredictResponseOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequest.java
index 11f29d4717a7..78d7c0939d88 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequest.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequestOrBuilder.java
index a158f99616ed..d6089cab7fc5 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequestOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictRequestOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponse.java
index 44fd8afe7273..e291d77e681f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponse.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponse.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponseOrBuilder.java
index 0081693d800f..6f93338a149f 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponseOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectRawPredictResponseOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSource.java
index 79bc795df5f3..bcf6f0d0a00a 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSource.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSource.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSourceOrBuilder.java
index f946b9536e79..e023b428c146 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSourceOrBuilder.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DirectUploadSourceOrBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpec.java
index c729bb19e4da..8f675c6ef961 100644
--- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpec.java
+++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpec.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -73,9 +73,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Type of the boot disk (default is "pd-ssd").
-   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-   * "pd-standard" (Persistent Disk Hard Disk Drive).
+   * Type of the boot disk. For non-A3U machines, the default value is
+   * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+   * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
    * 
* * string boot_disk_type = 1; @@ -99,9 +100,10 @@ public java.lang.String getBootDiskType() { * * *
-   * Type of the boot disk (default is "pd-ssd").
-   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-   * "pd-standard" (Persistent Disk Hard Disk Drive).
+   * Type of the boot disk. For non-A3U machines, the default value is
+   * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+   * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
    * 
* * string boot_disk_type = 1; @@ -509,9 +511,10 @@ public Builder mergeFrom( * * *
-     * Type of the boot disk (default is "pd-ssd").
-     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-     * "pd-standard" (Persistent Disk Hard Disk Drive).
+     * Type of the boot disk. For non-A3U machines, the default value is
+     * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+     * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
      * 
* * string boot_disk_type = 1; @@ -534,9 +537,10 @@ public java.lang.String getBootDiskType() { * * *
-     * Type of the boot disk (default is "pd-ssd").
-     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-     * "pd-standard" (Persistent Disk Hard Disk Drive).
+     * Type of the boot disk. For non-A3U machines, the default value is
+     * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+     * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
      * 
* * string boot_disk_type = 1; @@ -559,9 +563,10 @@ public com.google.protobuf.ByteString getBootDiskTypeBytes() { * * *
-     * Type of the boot disk (default is "pd-ssd").
-     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-     * "pd-standard" (Persistent Disk Hard Disk Drive).
+     * Type of the boot disk. For non-A3U machines, the default value is
+     * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+     * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
      * 
* * string boot_disk_type = 1; @@ -583,9 +588,10 @@ public Builder setBootDiskType(java.lang.String value) { * * *
-     * Type of the boot disk (default is "pd-ssd").
-     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-     * "pd-standard" (Persistent Disk Hard Disk Drive).
+     * Type of the boot disk. For non-A3U machines, the default value is
+     * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+     * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
      * 
* * string boot_disk_type = 1; @@ -603,9 +609,10 @@ public Builder clearBootDiskType() { * * *
-     * Type of the boot disk (default is "pd-ssd").
-     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-     * "pd-standard" (Persistent Disk Hard Disk Drive).
+     * Type of the boot disk. For non-A3U machines, the default value is
+     * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+     * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+     * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
      * 
* * string boot_disk_type = 1; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpecOrBuilder.java index 7331472c7982..e068b35da366 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DiskSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,9 +28,10 @@ public interface DiskSpecOrBuilder * * *
-   * Type of the boot disk (default is "pd-ssd").
-   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-   * "pd-standard" (Persistent Disk Hard Disk Drive).
+   * Type of the boot disk. For non-A3U machines, the default value is
+   * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+   * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
    * 
* * string boot_disk_type = 1; @@ -43,9 +44,10 @@ public interface DiskSpecOrBuilder * * *
-   * Type of the boot disk (default is "pd-ssd").
-   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or
-   * "pd-standard" (Persistent Disk Hard Disk Drive).
+   * Type of the boot disk. For non-A3U machines, the default value is
+   * "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced".
+   * Valid values: "pd-ssd" (Persistent Disk Solid State Drive),
+   * "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced".
    * 
* * string boot_disk_type = 1; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfig.java index 090bc7468cdc..6b43472da392 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfigOrBuilder.java index e835ea096c60..08bc63917683 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DnsPeeringConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArray.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArray.java index 13707ea7b73f..220f73c7fa7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArray.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArrayOrBuilder.java index 5246db98622d..30edf9989f16 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DoubleArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfig.java index 12817256fb14..dfc327c0382b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfigOrBuilder.java index 805851e6351e..fef5fe12ab37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/DynamicRetrievalConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequest.java index 8d1136d9c284..dbf52d8989aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequestOrBuilder.java index 603a2f3bf287..1cd0fe5f54e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponse.java index 9a00378b9878..f96d822081e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponseOrBuilder.java index fe948854af8e..acaa120eb56d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EmbedContentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpec.java index f60ca08c574c..9b7a9b4558c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecOrBuilder.java index 8b1dffda4709..cd667d15c4db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecProto.java index f777a723bf09..bce0b3607a94 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EncryptionSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Endpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Endpoint.java index f4027e70b492..b1f695336207 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Endpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Endpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointName.java index b508746128da..49be289ced34 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointOrBuilder.java index 6aa608c87805..bbb12fb3625f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointProto.java index d3fd21a7fd0f..c7cc6632d152 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceProto.java index bb01b8b9930f..8965d1a7bc1f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EndpointServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearch.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearch.java index 52d70a952249..7c6c5b7bca1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearch.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearch.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearchOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearchOrBuilder.java index 3f3ee16c9645..9646ba074946 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearchOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnterpriseWebSearchOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelector.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelector.java index 8bd1ee973268..8d215e8b915a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelector.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelector.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelectorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelectorOrBuilder.java index ae2afe24508f..800173f10464 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelectorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityIdSelectorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityType.java index a9dabfad98b2..2403cf6ebc20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeName.java index 463adbc79aee..1e209543bc4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeOrBuilder.java index 984093417df2..967a48a6190c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeProto.java index 351ddf293920..38d13bec1750 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EntityTypeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVar.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVar.java index 324135d037ec..fc68a7285791 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVar.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVar.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarOrBuilder.java index a99f965afdf6..30b810d20a60 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarProto.java index 7cfd0e72846f..9dcf65d48456 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EnvVarProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotation.java index 5eb14deb664f..90a0ee777b16 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotationOrBuilder.java index d57f2338a3ef..c50b25426d11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ErrorAnalysisAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequest.java index e4cf0226dc7d..0f7fca09f822 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequestOrBuilder.java index 405c86e6ce34..f1957b9be2d5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponse.java index 06bb77af2f7c..54dffb3c77c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponseOrBuilder.java index c8d7ec1d0e2f..067e2e6edaa0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluateInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotation.java index 89999f7b8457..037cf3beb873 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanation.java index 3c995a8d1f43..d896c30cc878 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanationOrBuilder.java index 488ae808648c..b367ba3b37b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationExplanationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationOrBuilder.java index 2db306fcc89a..91a22860c463 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationProto.java index 183b96db6947..ece89c7b052c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluatedAnnotationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceProto.java index c0345b67bcf8..7053a2f048f1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EvaluationServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Event.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Event.java index 23b780cb7036..c77855650468 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Event.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Event.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventOrBuilder.java index 333a518e7a74..6927a05456cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventProto.java index 33efa6513afb..bad94169912c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/EventProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInput.java index 945334b934d9..1ac554043b27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInputOrBuilder.java index d5bb93c0b3ed..f3cbb2d1ab4a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstance.java index 2ad73d3e0d86..190c402a998d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstanceOrBuilder.java index 05af3124b008..22b370cb3a09 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValue.java index d73b60a3a039..75051cacea93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValueOrBuilder.java index 53cc9028cc2d..f1606ae0d374 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResults.java index ed3d35ade7e7..e13b647af442 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResultsOrBuilder.java index bc894ddb5646..d5038eb6b67e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpec.java index 01ff552888e3..c98c9dfce3dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpecOrBuilder.java index 652bb26c9de5..5059da5fc84c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExactMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Examples.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Examples.java index 56c919dfc235..401f70ec6e11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Examples.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Examples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOrBuilder.java index 597fd1564244..3e2e84bfd293 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverride.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverride.java index 9ea309a1f7d6..8a7cc626a2e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverride.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverride.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverrideOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverrideOrBuilder.java index 1b3609a5e567..3f193d07b06d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverrideOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesOverrideOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespace.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespace.java index ea55b1fc9480..ee9711c9c908 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespace.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespace.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespaceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespaceOrBuilder.java index d4f7c4e5dd62..267145c64ebe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespaceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExamplesRestrictionsNamespaceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCode.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCode.java index d4c594fb2871..be17be811fb8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCode.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCode.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCodeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCodeOrBuilder.java index 93ecd554b562..97d2b0c744ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCodeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutableCodeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Execution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Execution.java index 5d3493b6eff4..f914a3427309 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Execution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Execution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionName.java index 3c747fd7602e..774ba6db6b49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionOrBuilder.java index 918e0fc730bb..8d80a86ffb65 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionProto.java index 3a37edaf00ad..f6daa36d8dc3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExecutionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequest.java index 0f533b7da691..0f31dddea592 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequestOrBuilder.java index 010fcf999f14..4f6ce920917c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponse.java index d092fa0e7831..26b73b003882 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponseOrBuilder.java index 157c2be12768..4061cb59cd7b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplainResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Explanation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Explanation.java index f620a36b81e7..d6300d7b12da 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Explanation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Explanation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadata.java index fd4533f8aae9..175434fdd4f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOrBuilder.java index 4d0ba84db8b2..ca0e06595cdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverride.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverride.java index 775ff1cbcc46..3f888f32d947 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverride.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverride.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverrideOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverrideOrBuilder.java index e382ecef7d30..5d93ca8381b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverrideOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataOverrideOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataProto.java index 3a9ab8f5e7f7..ac1183e79f29 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationMetadataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationOrBuilder.java index 092bb5283aa3..2d358a5a89cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParameters.java index ff114c16d2a2..5fd85ae6c00f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParametersOrBuilder.java index 6bdda10d372c..d3377dc6bf5c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationProto.java index 03f31bd9236e..b334b12e97fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpec.java index bf41b2c61dbe..c9565d196fa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOrBuilder.java index 65e6b78cf47e..ed7e9d551fe0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverride.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverride.java index 6f23de23e5c3..997c84ed7c7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverride.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverride.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverrideOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverrideOrBuilder.java index 2dfc722fc4c5..1830a2d1ddd4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverrideOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExplanationSpecOverrideOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfig.java index 6a5346e2ab0b..fff0eed959e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfigOrBuilder.java index 86b25ea035e9..ae098fa0deec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadata.java index 7a4632fadb4f..d9cd80dbcbbf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadataOrBuilder.java index 94ac771624b1..8d05a697d11b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequest.java index e0ba3ea49a96..c6d32b527a16 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequestOrBuilder.java index 91fce48e64e0..6f96c3479fdf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponse.java index 81f639368b26..56d5f00bafbf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponseOrBuilder.java index bced5abd5b2d..df2730502e7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadata.java index 0a5047fbb40b..035b67d7f405 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadataOrBuilder.java index 759dc1a0e5d2..cdf8f2811add 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequest.java index 2da3c24d1279..3f52655a458f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequestOrBuilder.java index 140cf7669b77..a52731dd30c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponse.java index 602545d7ab67..1553242688bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponseOrBuilder.java index 090f4f5af20c..885a80d8ee46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplit.java index 3c4e6494028f..5205496b8edc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplitOrBuilder.java index c91808101d25..747e560a7604 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFilterSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplit.java index 5858078e8b1f..5d186d411c5d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplitOrBuilder.java index fac1e71a911b..eb7f48cd48ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportFractionSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadata.java index d9775bf5f72f..8fedcbb9e4be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadataOrBuilder.java index 91ceedae7449..fa5993111648 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequest.java index 623e21087448..e78deeebcf4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequestOrBuilder.java index ceb40d4b5bc7..64d87819cbc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponse.java index 7b72b67257e6..d40088df0c5d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponseOrBuilder.java index 7e4ac6270cd3..1bb1ef1a69cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequest.java index 26e83abb1509..47376bcc958c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequestOrBuilder.java index f3c50a21b55e..b06d8139ee21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponse.java index 12f8e0b4f2cf..7551dd47d462 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponseOrBuilder.java index 2c887b420ee0..0f9190f55868 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ExportTensorboardTimeSeriesDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Fact.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Fact.java index 591741470510..80b00fb6755e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Fact.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Fact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FactOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FactOrBuilder.java index 8a3b5cd6f426..5afa1a03ce8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FactOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfig.java index 8520a9c0cc00..ec462b2ffd91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfigOrBuilder.java index 4ba6f26c1474..d0017fe12470 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FasterDeploymentConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Feature.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Feature.java index 4afae2044428..1ab8cd19f7c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Feature.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Feature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroup.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroup.java index 3a81c57fd21e..6e770105ad50 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroup.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupName.java index c47ff6eda33c..3a80628f2d10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupOrBuilder.java index 71ce5f41ccfa..bb82b9b2f703 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupProto.java index b594edc4138d..62f00d5c64a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureGroupProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureMonitoringStatsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureMonitoringStatsProto.java index 06c4fdaab118..6590e5ed4e96 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureMonitoringStatsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureMonitoringStatsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureName.java index 883926e1a2a0..eeea66d757d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigma.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigma.java index ed2b25e4a9a8..218c87002fe4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigma.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigma.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigmaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigmaOrBuilder.java index a5b3e06d1faa..27e4a25e3557 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigmaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureNoiseSigmaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStore.java index d0b76f339f30..699f2d9fc27b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -359,6 +359,36 @@ public interface BigtableOrBuilder */ com.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.BigtableMetadataOrBuilder getBigtableMetadataOrBuilder(); + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The zone. + */ + java.lang.String getZone(); + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for zone. + */ + com.google.protobuf.ByteString getZoneBytes(); } /** Protobuf type {@code google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable} */ @@ -373,7 +403,9 @@ private Bigtable(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private Bigtable() {} + private Bigtable() { + zone_ = ""; + } @java.lang.Override @SuppressWarnings({"unused"}) @@ -2472,6 +2504,63 @@ public boolean hasBigtableMetadata() { : bigtableMetadata_; } + public static final int ZONE_FIELD_NUMBER = 5; + + @SuppressWarnings("serial") + private volatile java.lang.Object zone_ = ""; + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The zone. + */ + @java.lang.Override + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } + } + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for zone. + */ + @java.lang.Override + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -2495,6 +2584,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(4, getBigtableMetadata()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(zone_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, zone_); + } getUnknownFields().writeTo(output); } @@ -2514,6 +2606,9 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getBigtableMetadata()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(zone_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, zone_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -2539,6 +2634,7 @@ public boolean equals(final java.lang.Object obj) { if (hasBigtableMetadata()) { if (!getBigtableMetadata().equals(other.getBigtableMetadata())) return false; } + if (!getZone().equals(other.getZone())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -2561,6 +2657,8 @@ public int hashCode() { hash = (37 * hash) + BIGTABLE_METADATA_FIELD_NUMBER; hash = (53 * hash) + getBigtableMetadata().hashCode(); } + hash = (37 * hash) + ZONE_FIELD_NUMBER; + hash = (53 * hash) + getZone().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -2717,6 +2815,7 @@ public Builder clear() { bigtableMetadataBuilder_.dispose(); bigtableMetadataBuilder_ = null; } + zone_ = ""; return this; } @@ -2771,6 +2870,9 @@ private void buildPartial0( : bigtableMetadataBuilder_.build(); to_bitField0_ |= 0x00000002; } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.zone_ = zone_; + } result.bitField0_ |= to_bitField0_; } @@ -2832,6 +2934,11 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigta if (other.hasBigtableMetadata()) { mergeBigtableMetadata(other.getBigtableMetadata()); } + if (!other.getZone().isEmpty()) { + zone_ = other.zone_; + bitField0_ |= 0x00000008; + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -2877,6 +2984,12 @@ public Builder mergeFrom( bitField0_ |= 0x00000004; break; } // case 34 + case 42: + { + zone_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 42 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -3407,6 +3520,127 @@ public Builder clearBigtableMetadata() { return bigtableMetadataBuilder_; } + private java.lang.Object zone_ = ""; + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The zone. + */ + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for zone. + */ + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The zone to set. + * @return This builder for chaining. + */ + public Builder setZone(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + zone_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearZone() { + zone_ = getDefaultInstance().getZone(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for zone to set. + * @return This builder for chaining. + */ + public Builder setZoneBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + zone_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceProto.java index 3d9ca8fab519..d5c73ca57eea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreAdminServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreName.java index 77f0f59ff6d3..5b4d83ea0b81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreOrBuilder.java index e7d887e9aa56..688e6d435edc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreProto.java index 77bb5efbac70..a8cd9fcf47ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -65,60 +65,68 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { static { java.lang.String[] descriptorData = { - "\n5google/cloud/aiplatform/v1/feature_onl" - + "ine_store.proto\022\032google.cloud.aiplatform" + "\n" + + "5google/cloud/aiplatform/v1/feature_online_store.proto\022\032google.cloud.aiplatform" + ".v1\032\037google/api/field_behavior.proto\032\031go" - + "ogle/api/resource.proto\0320google/cloud/ai" - + "platform/v1/encryption_spec.proto\0323googl" + + "ogle/api/resource.proto\0320google/cloud/aiplatform/v1/encryption_spec.proto\0323googl" + "e/cloud/aiplatform/v1/service_networking" - + ".proto\032\037google/protobuf/timestamp.proto\"" - + "\365\014\n\022FeatureOnlineStore\022K\n\010bigtable\030\010 \001(\013" - + "27.google.cloud.aiplatform.v1.FeatureOnl" - + "ineStore.BigtableH\000\022M\n\toptimized\030\014 \001(\01328" - + ".google.cloud.aiplatform.v1.FeatureOnlin" - + "eStore.OptimizedH\000\022\021\n\004name\030\001 \001(\tB\003\340A\010\0224\n" - + "\013create_time\030\003 \001(\0132\032.google.protobuf.Tim" - + "estampB\003\340A\003\0224\n\013update_time\030\004 \001(\0132\032.googl" - + "e.protobuf.TimestampB\003\340A\003\022\021\n\004etag\030\005 \001(\tB" - + "\003\340A\001\022O\n\006labels\030\006 \003(\0132:.google.cloud.aipl" - + "atform.v1.FeatureOnlineStore.LabelsEntry" - + "B\003\340A\001\022H\n\005state\030\007 \001(\01624.google.cloud.aipl" - + "atform.v1.FeatureOnlineStore.StateB\003\340A\003\022" - + "p\n\032dedicated_serving_endpoint\030\n \001(\0132G.go" - + "ogle.cloud.aiplatform.v1.FeatureOnlineSt" - + "ore.DedicatedServingEndpointB\003\340A\001\022H\n\017enc" - + "ryption_spec\030\r \001(\0132*.google.cloud.aiplat" - + "form.v1.EncryptionSpecB\003\340A\001\022\032\n\rsatisfies" - + "_pzs\030\017 \001(\010B\003\340A\003\022\032\n\rsatisfies_pzi\030\020 \001(\010B\003" - + "\340A\003\032\304\003\n\010Bigtable\022^\n\014auto_scaling\030\001 \001(\0132C" - + ".google.cloud.aiplatform.v1.FeatureOnlin" - + "eStore.Bigtable.AutoScalingB\003\340A\002\022*\n\035enab" - + "le_direct_bigtable_access\030\003 \001(\010B\003\340A\001\022h\n\021" - + "bigtable_metadata\030\004 \001(\0132H.google.cloud.a" - + "iplatform.v1.FeatureOnlineStore.Bigtable" - + ".BigtableMetadataB\003\340A\003\032l\n\013AutoScaling\022\033\n" - + "\016min_node_count\030\001 \001(\005B\003\340A\002\022\033\n\016max_node_c" - + "ount\030\002 \001(\005B\003\340A\002\022#\n\026cpu_utilization_targe" - + "t\030\003 \001(\005B\003\340A\001\032T\n\020BigtableMetadata\022\031\n\021tena" - + "nt_project_id\030\001 \001(\t\022\023\n\013instance_id\030\002 \001(\t" - + "\022\020\n\010table_id\030\003 \001(\t\032\013\n\tOptimized\032\313\001\n\030Dedi" - + "catedServingEndpoint\022(\n\033public_endpoint_" - + "domain_name\030\002 \001(\tB\003\340A\003\022d\n\036private_servic" - + "e_connect_config\030\003 \001(\01327.google.cloud.ai" - + "platform.v1.PrivateServiceConnectConfigB" - + "\003\340A\001\022\037\n\022service_attachment\030\004 \001(\tB\003\340A\003\032-\n" - + "\013LabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t" - + ":\0028\001\"8\n\005State\022\025\n\021STATE_UNSPECIFIED\020\000\022\n\n\006" - + "STABLE\020\001\022\014\n\010UPDATING\020\002:\206\001\352A\202\001\n,aiplatfor" - + "m.googleapis.com/FeatureOnlineStore\022Rpro" - + "jects/{project}/locations/{location}/fea" - + "tureOnlineStores/{feature_online_store}B" - + "\016\n\014storage_typeB\325\001\n\036com.google.cloud.aip" - + "latform.v1B\027FeatureOnlineStoreProtoP\001Z>c" - + "loud.google.com/go/aiplatform/apiv1/aipl" - + "atformpb;aiplatformpb\252\002\032Google.Cloud.AIP" - + "latform.V1\312\002\032Google\\Cloud\\AIPlatform\\V1\352" - + "\002\035Google::Cloud::AIPlatform::V1b\006proto3" + + ".proto\032\037google/protobuf/timestamp.proto\"\210\r\n" + + "\022FeatureOnlineStore\022K\n" + + "\010bigtable\030\010 \001(\013" + + "27.google.cloud.aiplatform.v1.FeatureOnlineStore.BigtableH\000\022M\n" + + "\toptimized\030\014 \001(\01328" + + ".google.cloud.aiplatform.v1.FeatureOnlineStore.OptimizedH\000\022\021\n" + + "\004name\030\001 \001(\tB\003\340A\010\0224\n" + + "\013create_time\030\003 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + + "\013update_time\030\004" + + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\021\n" + + "\004etag\030\005 \001(\tB\003\340A\001\022O\n" + + "\006labels\030\006 \003(\0132:.google.cloud.aipl" + + "atform.v1.FeatureOnlineStore.LabelsEntryB\003\340A\001\022H\n" + + "\005state\030\007 \001(\01624.google.cloud.aipl" + + "atform.v1.FeatureOnlineStore.StateB\003\340A\003\022p\n" + + "\032dedicated_serving_endpoint\030\n" + + " \001(\0132G.go" + + "ogle.cloud.aiplatform.v1.FeatureOnlineStore.DedicatedServingEndpointB\003\340A\001\022H\n" + + "\017encryption_spec\030\r" + + " \001(\0132*.google.cloud.aiplatform.v1.EncryptionSpecB\003\340A\001\022\032\n\r" + + "satisfies_pzs\030\017 \001(\010B\003\340A\003\022\032\n\r" + + "satisfies_pzi\030\020 \001(\010B\003\340A\003\032\327\003\n" + + "\010Bigtable\022^\n" + + "\014auto_scaling\030\001 \001(\0132C" + + ".google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.AutoScalingB\003\340A\002\022*\n" + + "\035enable_direct_bigtable_access\030\003 \001(\010B\003\340A\001\022h\n" + + "\021bigtable_metadata\030\004 \001(\0132H.google.cloud.a" + + "iplatform.v1.FeatureOnlineStore.Bigtable.BigtableMetadataB\003\340A\003\022\021\n" + + "\004zone\030\005 \001(\tB\003\340A\001\032l\n" + + "\013AutoScaling\022\033\n" + + "\016min_node_count\030\001 \001(\005B\003\340A\002\022\033\n" + + "\016max_node_count\030\002 \001(\005B\003\340A\002\022#\n" + + "\026cpu_utilization_target\030\003 \001(\005B\003\340A\001\032T\n" + + "\020BigtableMetadata\022\031\n" + + "\021tenant_project_id\030\001 \001(\t\022\023\n" + + "\013instance_id\030\002 \001(\t\022\020\n" + + "\010table_id\030\003 \001(\t\032\013\n" + + "\tOptimized\032\313\001\n" + + "\030DedicatedServingEndpoint\022(\n" + + "\033public_endpoint_domain_name\030\002 \001(\tB\003\340A\003\022d\n" + + "\036private_service_connect_config\030\003 \001(" + + "\01327.google.cloud.aiplatform.v1.PrivateServiceConnectConfigB\003\340A\001\022\037\n" + + "\022service_attachment\030\004 \001(\tB\003\340A\003\032-\n" + + "\013LabelsEntry\022\013\n" + + "\003key\030\001 \001(\t\022\r\n" + + "\005value\030\002 \001(\t:\0028\001\"8\n" + + "\005State\022\025\n" + + "\021STATE_UNSPECIFIED\020\000\022\n\n" + + "\006STABLE\020\001\022\014\n" + + "\010UPDATING\020\002:\206\001\352A\202\001\n" + + ",aiplatform.googleapis.com/FeatureOnlineStore\022Rprojects/{project}/locat" + + "ions/{location}/featureOnlineStores/{feature_online_store}B\016\n" + + "\014storage_typeB\325\001\n" + + "\036com.google.cloud.aiplatform.v1B\027FeatureOn" + + "lineStoreProtoP\001Z>cloud.google.com/go/aiplatform/apiv1/aiplatformpb;aiplatformpb" + + "\252\002\032Google.Cloud.AIPlatform.V1\312\002\032Google\\C" + + "loud\\AIPlatform\\V1\352\002\035Google::Cloud::AIPlatform::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -158,7 +166,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FeatureOnlineStore_Bigtable_descriptor, new java.lang.String[] { - "AutoScaling", "EnableDirectBigtableAccess", "BigtableMetadata", + "AutoScaling", "EnableDirectBigtableAccess", "BigtableMetadata", "Zone", }); internal_static_google_cloud_aiplatform_v1_FeatureOnlineStore_Bigtable_AutoScaling_descriptor = internal_static_google_cloud_aiplatform_v1_FeatureOnlineStore_Bigtable_descriptor diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceProto.java index e75b1a35a23e..4d011a2fee2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOnlineStoreServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOrBuilder.java index 92514e4145af..3cbbc5203d7c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureProto.java index ff72dce1d0f6..5d930b7a35ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceProto.java index 7f84127b3265..ab05991b9509 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureRegistryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelector.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelector.java index d44f48ef3686..0a05497221b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelector.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelector.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorOrBuilder.java index 72ab3cf56d9c..21d3882c3d86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorProto.java index 8f1e28e6f9c8..48be0a79a272 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureSelectorProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomaly.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomaly.java index 4ad0d70ee5a5..e2477da0cb8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomaly.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomaly.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomalyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomalyOrBuilder.java index bf6d217e3362..d1dec0effec8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomalyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureStatsAnomalyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValue.java index a6e3d444b139..7c70bc9bf3fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestination.java index e0b2a077d8be..ad6f284bc31e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestinationOrBuilder.java index e8932693096f..49a3c7b8c1c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueList.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueList.java index b5c34b890bf0..fb174f8cd77c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueList.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueListOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueListOrBuilder.java index 21cf056b68bf..5ec8f956a6bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueListOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueOrBuilder.java index a055606f18bc..03dd7b536524 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureView.java index 547e7ea5cb56..9e8ec55cf612 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataFormat.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataFormat.java index d8ea9af192d4..1f6d7a5f1a63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataFormat.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataFormat.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKey.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKey.java index 7eae4895df41..b1198833ea8f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKey.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKeyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKeyOrBuilder.java index 0f59090d4ec7..de2981bcf4f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKeyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDataKeyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequest.java index 370b9b9661e5..0a0bf6270ea4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequestOrBuilder.java index 991b3138c5e6..daa0c90d36ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponse.java index 9c21addf55ec..626ee441f655 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponseOrBuilder.java index 04541e80835e..ba7329443555 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewDirectWriteResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewName.java index e123ca80c776..f2f1f718e2c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewOrBuilder.java index b0de1c9c62dc..06eec48ae270 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewProto.java index 5869f7e7a389..c91ede3df86c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSync.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSync.java index d3821ab75537..91e5d358b2c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSync.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSync.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncName.java index 4ab753e1997c..26aba0780338 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncOrBuilder.java index 2ce31fb11126..fdfd9c400916 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncProto.java index 089adccd67fb..360aa1651447 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeatureViewSyncProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Featurestore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Featurestore.java index bddf2a57542e..7c4b9df4cdfc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Featurestore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Featurestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfig.java index d3798df1695f..cbb266972a41 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfigOrBuilder.java index 10a3dea33603..bfa5b10551d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringProto.java index 557a140e9ccf..1082bd8c69c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreMonitoringProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreName.java index 3328d494b953..12bc8d20ecdb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServiceProto.java index 6baa9003f991..d2349463f7d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOnlineServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOrBuilder.java index 8c7820fdb61e..bfaada82dab2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreProto.java index fa144ed953d4..ad2eee84f474 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceProto.java index 2c3d19bd6bed..8413d23be630 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FeaturestoreServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequest.java index e2f793e59dc7..f953ab584513 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequestOrBuilder.java index 86de192daf5c..3aebf121401f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponse.java index 991886cc3b8a..788dfed276f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponseOrBuilder.java index 92de798bf03a..03f643534ba2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FetchFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileData.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileData.java index 2886dcbae578..44b632924c73 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileData.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileDataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileDataOrBuilder.java index 08b04124308a..aeaf1d0f9c64 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileDataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatus.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatus.java index ed9ef80b30c8..5ce9104ef8a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatus.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatusOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatusOrBuilder.java index 072f629cf09d..614ba0a158da 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatusOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FileStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplit.java index a1f413dd0763..ac04bd9088f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplitOrBuilder.java index 64e8ac5980e9..18392a46c775 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FilterSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequest.java index 0cd36fe1ed45..fccdf0fa510f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequestOrBuilder.java index cadcdfc9bd4a..180525fb930e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponse.java index af303e793621..40b7abf824c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponseOrBuilder.java index 375388642e6d..744b7a9a4b40 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FindNeighborsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInput.java index 7d6dc02d11f7..062bd85be228 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInputOrBuilder.java index 079fdda5bddf..a84ca98e681e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstance.java index 475aa709fb63..238fe2e2eaac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstanceOrBuilder.java index dc97651d8b37..33fd9bf4dacd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResult.java index 4ea008aa2e9c..60a30be4f1ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResultOrBuilder.java index 7f6a48c885ee..6882dba6fb8c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencyResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpec.java index d614d3f3d14f..0f2ed56e8678 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpecOrBuilder.java index 9aa224c6a78a..20b59a11ede4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FluencySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplit.java index b7c2b2c3289c..98f0c22ef986 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplitOrBuilder.java index b8a21e5bdd84..5201dab112f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FractionSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInput.java index 30306849bfe9..79339c8f0d3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInputOrBuilder.java index acd47da40e5e..17817768a08e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstance.java index 0fcb5d86926e..dc300b636b03 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstanceOrBuilder.java index ef2b4b3d0c31..7b59953bbcd1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResult.java index e81d0b966dc7..9d49cc513ec5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResultOrBuilder.java index fb12f3ddce17..abab81cc55c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpec.java index ce4d46515bf9..3a7c84d96efe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpecOrBuilder.java index 2812e63fc0c4..112c767d4cbf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FulfillmentSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCall.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCall.java index 51f678286da9..cd9a87401258 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCall.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCall.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,6 +43,7 @@ private FunctionCall(com.google.protobuf.GeneratedMessageV3.Builder builder) private FunctionCall() { name_ = ""; + partialArgs_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -76,11 +77,11 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The name. */ @@ -101,11 +102,11 @@ public java.lang.String getName() { * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for name. */ @@ -129,8 +130,8 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -146,8 +147,8 @@ public boolean hasArgs() { * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -163,8 +164,8 @@ public com.google.protobuf.Struct getArgs() { * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -174,6 +175,123 @@ public com.google.protobuf.StructOrBuilder getArgsOrBuilder() { return args_ == null ? com.google.protobuf.Struct.getDefaultInstance() : args_; } + public static final int PARTIAL_ARGS_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private java.util.List partialArgs_; + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List getPartialArgsList() { + return partialArgs_; + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getPartialArgsOrBuilderList() { + return partialArgs_; + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public int getPartialArgsCount() { + return partialArgs_.size(); + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.PartialArg getPartialArgs(int index) { + return partialArgs_.get(index); + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.PartialArgOrBuilder getPartialArgsOrBuilder(int index) { + return partialArgs_.get(index); + } + + public static final int WILL_CONTINUE_FIELD_NUMBER = 5; + private boolean willContinue_ = false; + + /** + * + * + *
+   * Optional. Whether this is the last part of the FunctionCall.
+   * If true, another partial message for the current FunctionCall is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -194,6 +312,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(2, getArgs()); } + for (int i = 0; i < partialArgs_.size(); i++) { + output.writeMessage(4, partialArgs_.get(i)); + } + if (willContinue_ != false) { + output.writeBool(5, willContinue_); + } getUnknownFields().writeTo(output); } @@ -209,6 +333,12 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getArgs()); } + for (int i = 0; i < partialArgs_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, partialArgs_.get(i)); + } + if (willContinue_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(5, willContinue_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -230,6 +360,8 @@ public boolean equals(final java.lang.Object obj) { if (hasArgs()) { if (!getArgs().equals(other.getArgs())) return false; } + if (!getPartialArgsList().equals(other.getPartialArgsList())) return false; + if (getWillContinue() != other.getWillContinue()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -247,6 +379,12 @@ public int hashCode() { hash = (37 * hash) + ARGS_FIELD_NUMBER; hash = (53 * hash) + getArgs().hashCode(); } + if (getPartialArgsCount() > 0) { + hash = (37 * hash) + PARTIAL_ARGS_FIELD_NUMBER; + hash = (53 * hash) + getPartialArgsList().hashCode(); + } + hash = (37 * hash) + WILL_CONTINUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getWillContinue()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -391,6 +529,7 @@ private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getArgsFieldBuilder(); + getPartialArgsFieldBuilder(); } } @@ -404,6 +543,14 @@ public Builder clear() { argsBuilder_.dispose(); argsBuilder_ = null; } + if (partialArgsBuilder_ == null) { + partialArgs_ = java.util.Collections.emptyList(); + } else { + partialArgs_ = null; + partialArgsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); + willContinue_ = false; return this; } @@ -431,6 +578,7 @@ public com.google.cloud.aiplatform.v1.FunctionCall build() { public com.google.cloud.aiplatform.v1.FunctionCall buildPartial() { com.google.cloud.aiplatform.v1.FunctionCall result = new com.google.cloud.aiplatform.v1.FunctionCall(this); + buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } @@ -438,6 +586,18 @@ public com.google.cloud.aiplatform.v1.FunctionCall buildPartial() { return result; } + private void buildPartialRepeatedFields(com.google.cloud.aiplatform.v1.FunctionCall result) { + if (partialArgsBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0)) { + partialArgs_ = java.util.Collections.unmodifiableList(partialArgs_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.partialArgs_ = partialArgs_; + } else { + result.partialArgs_ = partialArgsBuilder_.build(); + } + } + private void buildPartial0(com.google.cloud.aiplatform.v1.FunctionCall result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { @@ -448,6 +608,9 @@ private void buildPartial0(com.google.cloud.aiplatform.v1.FunctionCall result) { result.args_ = argsBuilder_ == null ? args_ : argsBuilder_.build(); to_bitField0_ |= 0x00000001; } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.willContinue_ = willContinue_; + } result.bitField0_ |= to_bitField0_; } @@ -504,6 +667,36 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1.FunctionCall other) { if (other.hasArgs()) { mergeArgs(other.getArgs()); } + if (partialArgsBuilder_ == null) { + if (!other.partialArgs_.isEmpty()) { + if (partialArgs_.isEmpty()) { + partialArgs_ = other.partialArgs_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensurePartialArgsIsMutable(); + partialArgs_.addAll(other.partialArgs_); + } + onChanged(); + } + } else { + if (!other.partialArgs_.isEmpty()) { + if (partialArgsBuilder_.isEmpty()) { + partialArgsBuilder_.dispose(); + partialArgsBuilder_ = null; + partialArgs_ = other.partialArgs_; + bitField0_ = (bitField0_ & ~0x00000004); + partialArgsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getPartialArgsFieldBuilder() + : null; + } else { + partialArgsBuilder_.addAllMessages(other.partialArgs_); + } + } + } + if (other.getWillContinue() != false) { + setWillContinue(other.getWillContinue()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -542,6 +735,25 @@ public Builder mergeFrom( bitField0_ |= 0x00000002; break; } // case 18 + case 34: + { + com.google.cloud.aiplatform.v1.PartialArg m = + input.readMessage( + com.google.cloud.aiplatform.v1.PartialArg.parser(), extensionRegistry); + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.add(m); + } else { + partialArgsBuilder_.addMessage(m); + } + break; + } // case 34 + case 40: + { + willContinue_ = input.readBool(); + bitField0_ |= 0x00000008; + break; + } // case 40 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -567,11 +779,11 @@ public Builder mergeFrom( * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The name. */ @@ -591,11 +803,11 @@ public java.lang.String getName() { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for name. */ @@ -615,11 +827,11 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The name to set. * @return This builder for chaining. @@ -638,11 +850,11 @@ public Builder setName(java.lang.String value) { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return This builder for chaining. */ @@ -657,11 +869,11 @@ public Builder clearName() { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The bytes for name to set. * @return This builder for chaining. @@ -688,8 +900,8 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -704,8 +916,8 @@ public boolean hasArgs() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -724,8 +936,8 @@ public com.google.protobuf.Struct getArgs() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -748,8 +960,8 @@ public Builder setArgs(com.google.protobuf.Struct value) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -769,8 +981,8 @@ public Builder setArgs(com.google.protobuf.Struct.Builder builderForValue) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -798,8 +1010,8 @@ public Builder mergeArgs(com.google.protobuf.Struct value) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -819,8 +1031,8 @@ public Builder clearArgs() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -835,8 +1047,8 @@ public com.google.protobuf.Struct.Builder getArgsBuilder() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -853,8 +1065,8 @@ public com.google.protobuf.StructOrBuilder getArgsOrBuilder() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -875,6 +1087,508 @@ public com.google.protobuf.StructOrBuilder getArgsOrBuilder() { return argsBuilder_; } + private java.util.List partialArgs_ = + java.util.Collections.emptyList(); + + private void ensurePartialArgsIsMutable() { + if (!((bitField0_ & 0x00000004) != 0)) { + partialArgs_ = + new java.util.ArrayList(partialArgs_); + bitField0_ |= 0x00000004; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.PartialArg, + com.google.cloud.aiplatform.v1.PartialArg.Builder, + com.google.cloud.aiplatform.v1.PartialArgOrBuilder> + partialArgsBuilder_; + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List getPartialArgsList() { + if (partialArgsBuilder_ == null) { + return java.util.Collections.unmodifiableList(partialArgs_); + } else { + return partialArgsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public int getPartialArgsCount() { + if (partialArgsBuilder_ == null) { + return partialArgs_.size(); + } else { + return partialArgsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.PartialArg getPartialArgs(int index) { + if (partialArgsBuilder_ == null) { + return partialArgs_.get(index); + } else { + return partialArgsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setPartialArgs(int index, com.google.cloud.aiplatform.v1.PartialArg value) { + if (partialArgsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensurePartialArgsIsMutable(); + partialArgs_.set(index, value); + onChanged(); + } else { + partialArgsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setPartialArgs( + int index, com.google.cloud.aiplatform.v1.PartialArg.Builder builderForValue) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.set(index, builderForValue.build()); + onChanged(); + } else { + partialArgsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs(com.google.cloud.aiplatform.v1.PartialArg value) { + if (partialArgsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensurePartialArgsIsMutable(); + partialArgs_.add(value); + onChanged(); + } else { + partialArgsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs(int index, com.google.cloud.aiplatform.v1.PartialArg value) { + if (partialArgsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensurePartialArgsIsMutable(); + partialArgs_.add(index, value); + onChanged(); + } else { + partialArgsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs( + com.google.cloud.aiplatform.v1.PartialArg.Builder builderForValue) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.add(builderForValue.build()); + onChanged(); + } else { + partialArgsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs( + int index, com.google.cloud.aiplatform.v1.PartialArg.Builder builderForValue) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.add(index, builderForValue.build()); + onChanged(); + } else { + partialArgsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addAllPartialArgs( + java.lang.Iterable values) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, partialArgs_); + onChanged(); + } else { + partialArgsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearPartialArgs() { + if (partialArgsBuilder_ == null) { + partialArgs_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + } else { + partialArgsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder removePartialArgs(int index) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.remove(index); + onChanged(); + } else { + partialArgsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.PartialArg.Builder getPartialArgsBuilder(int index) { + return getPartialArgsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.PartialArgOrBuilder getPartialArgsOrBuilder(int index) { + if (partialArgsBuilder_ == null) { + return partialArgs_.get(index); + } else { + return partialArgsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getPartialArgsOrBuilderList() { + if (partialArgsBuilder_ != null) { + return partialArgsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(partialArgs_); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.PartialArg.Builder addPartialArgsBuilder() { + return getPartialArgsFieldBuilder() + .addBuilder(com.google.cloud.aiplatform.v1.PartialArg.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.PartialArg.Builder addPartialArgsBuilder(int index) { + return getPartialArgsFieldBuilder() + .addBuilder(index, com.google.cloud.aiplatform.v1.PartialArg.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getPartialArgsBuilderList() { + return getPartialArgsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.PartialArg, + com.google.cloud.aiplatform.v1.PartialArg.Builder, + com.google.cloud.aiplatform.v1.PartialArgOrBuilder> + getPartialArgsFieldBuilder() { + if (partialArgsBuilder_ == null) { + partialArgsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.PartialArg, + com.google.cloud.aiplatform.v1.PartialArg.Builder, + com.google.cloud.aiplatform.v1.PartialArgOrBuilder>( + partialArgs_, ((bitField0_ & 0x00000004) != 0), getParentForChildren(), isClean()); + partialArgs_ = null; + } + return partialArgsBuilder_; + } + + private boolean willContinue_; + + /** + * + * + *
+     * Optional. Whether this is the last part of the FunctionCall.
+     * If true, another partial message for the current FunctionCall is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + + /** + * + * + *
+     * Optional. Whether this is the last part of the FunctionCall.
+     * If true, another partial message for the current FunctionCall is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The willContinue to set. + * @return This builder for chaining. + */ + public Builder setWillContinue(boolean value) { + + willContinue_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Whether this is the last part of the FunctionCall.
+     * If true, another partial message for the current FunctionCall is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearWillContinue() { + bitField0_ = (bitField0_ & ~0x00000008); + willContinue_ = false; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallOrBuilder.java index 83d70d8ffc2a..f58d979181b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,11 +28,11 @@ public interface FunctionCallOrBuilder * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The name. */ @@ -42,11 +42,11 @@ public interface FunctionCallOrBuilder * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for name. */ @@ -56,8 +56,8 @@ public interface FunctionCallOrBuilder * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -70,8 +70,8 @@ public interface FunctionCallOrBuilder * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -84,11 +84,102 @@ public interface FunctionCallOrBuilder * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; */ com.google.protobuf.StructOrBuilder getArgsOrBuilder(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List getPartialArgsList(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1.PartialArg getPartialArgs(int index); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + int getPartialArgsCount(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List + getPartialArgsOrBuilderList(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1.PartialArgOrBuilder getPartialArgsOrBuilder(int index); + + /** + * + * + *
+   * Optional. Whether this is the last part of the FunctionCall.
+   * If true, another partial message for the current FunctionCall is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + boolean getWillContinue(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfig.java index fcd04be1ea4f..565f3486c6b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -382,6 +382,27 @@ public com.google.protobuf.ByteString getAllowedFunctionNamesBytes(int index) { return allowedFunctionNames_.getByteString(index); } + public static final int STREAM_FUNCTION_CALL_ARGUMENTS_FIELD_NUMBER = 4; + private boolean streamFunctionCallArguments_ = false; + + /** + * + * + *
+   * Optional. When set to true, arguments of a single function call will be
+   * streamed out in multiple parts/contents/responses. Partial parameter
+   * results will be returned in the [FunctionCall.partial_args] field.
+   * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The streamFunctionCallArguments. + */ + @java.lang.Override + public boolean getStreamFunctionCallArguments() { + return streamFunctionCallArguments_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -404,6 +425,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io com.google.protobuf.GeneratedMessageV3.writeString( output, 2, allowedFunctionNames_.getRaw(i)); } + if (streamFunctionCallArguments_ != false) { + output.writeBool(4, streamFunctionCallArguments_); + } getUnknownFields().writeTo(output); } @@ -425,6 +449,10 @@ public int getSerializedSize() { size += dataSize; size += 1 * getAllowedFunctionNamesList().size(); } + if (streamFunctionCallArguments_ != false) { + size += + com.google.protobuf.CodedOutputStream.computeBoolSize(4, streamFunctionCallArguments_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -443,6 +471,7 @@ public boolean equals(final java.lang.Object obj) { if (mode_ != other.mode_) return false; if (!getAllowedFunctionNamesList().equals(other.getAllowedFunctionNamesList())) return false; + if (getStreamFunctionCallArguments() != other.getStreamFunctionCallArguments()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -460,6 +489,8 @@ public int hashCode() { hash = (37 * hash) + ALLOWED_FUNCTION_NAMES_FIELD_NUMBER; hash = (53 * hash) + getAllowedFunctionNamesList().hashCode(); } + hash = (37 * hash) + STREAM_FUNCTION_CALL_ARGUMENTS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getStreamFunctionCallArguments()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -602,6 +633,7 @@ public Builder clear() { bitField0_ = 0; mode_ = 0; allowedFunctionNames_ = com.google.protobuf.LazyStringArrayList.emptyList(); + streamFunctionCallArguments_ = false; return this; } @@ -645,6 +677,9 @@ private void buildPartial0(com.google.cloud.aiplatform.v1.FunctionCallingConfig allowedFunctionNames_.makeImmutable(); result.allowedFunctionNames_ = allowedFunctionNames_; } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.streamFunctionCallArguments_ = streamFunctionCallArguments_; + } } @java.lang.Override @@ -706,6 +741,9 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1.FunctionCallingConfig ot } onChanged(); } + if (other.getStreamFunctionCallArguments() != false) { + setStreamFunctionCallArguments(other.getStreamFunctionCallArguments()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -745,6 +783,12 @@ public Builder mergeFrom( allowedFunctionNames_.add(s); break; } // case 18 + case 32: + { + streamFunctionCallArguments_ = input.readBool(); + bitField0_ |= 0x00000004; + break; + } // case 32 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -1081,6 +1125,71 @@ public Builder addAllowedFunctionNamesBytes(com.google.protobuf.ByteString value return this; } + private boolean streamFunctionCallArguments_; + + /** + * + * + *
+     * Optional. When set to true, arguments of a single function call will be
+     * streamed out in multiple parts/contents/responses. Partial parameter
+     * results will be returned in the [FunctionCall.partial_args] field.
+     * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The streamFunctionCallArguments. + */ + @java.lang.Override + public boolean getStreamFunctionCallArguments() { + return streamFunctionCallArguments_; + } + + /** + * + * + *
+     * Optional. When set to true, arguments of a single function call will be
+     * streamed out in multiple parts/contents/responses. Partial parameter
+     * results will be returned in the [FunctionCall.partial_args] field.
+     * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The streamFunctionCallArguments to set. + * @return This builder for chaining. + */ + public Builder setStreamFunctionCallArguments(boolean value) { + + streamFunctionCallArguments_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. When set to true, arguments of a single function call will be
+     * streamed out in multiple parts/contents/responses. Partial parameter
+     * results will be returned in the [FunctionCall.partial_args] field.
+     * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return This builder for chaining. + */ + public Builder clearStreamFunctionCallArguments() { + bitField0_ = (bitField0_ & ~0x00000004); + streamFunctionCallArguments_ = false; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfigOrBuilder.java index c27a1724e0c4..121d787b75b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionCallingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -119,4 +119,19 @@ public interface FunctionCallingConfigOrBuilder * @return The bytes of the allowedFunctionNames at the given index. */ com.google.protobuf.ByteString getAllowedFunctionNamesBytes(int index); + + /** + * + * + *
+   * Optional. When set to true, arguments of a single function call will be
+   * streamed out in multiple parts/contents/responses. Partial parameter
+   * results will be returned in the [FunctionCall.partial_args] field.
+   * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The streamFunctionCallArguments. + */ + boolean getStreamFunctionCallArguments(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclaration.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclaration.java index 4e1377de8edb..57ef4b9c4032 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclaration.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclaration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclarationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclarationOrBuilder.java index e04f074fa624..e150314bc4c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclarationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionDeclarationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponse.java index 14170f82515f..4f5fb0e56677 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlob.java index 98ad23edb307..e6025ad22756 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlobOrBuilder.java index 1f76347af2aa..3b6af9d3b1e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseBlobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileData.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileData.java index 246dd4e24659..92b59ec57a3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileData.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileDataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileDataOrBuilder.java index feb724e1f28a..ef6c8befd1e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileDataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseFileDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseOrBuilder.java index a0849ac04a12..2c3e34990bc6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePart.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePart.java index 79e1e00e8ba4..68ae2b6956ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePart.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePart.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePartOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePartOrBuilder.java index 4c76e932f2cf..0aff09173d9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePartOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/FunctionResponsePartOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestination.java index 6a2ad706848d..67b0866881f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestinationOrBuilder.java index 08b0f78223de..02a5b562dee0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSource.java index e7101ecba8bf..a359bdaed5e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSourceOrBuilder.java index 2280564b756d..cfb1868d0724 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfig.java index 4ca1c27961b4..dccf3cb75403 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfigOrBuilder.java index 5a1b0b22d632..7e75df4fb096 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiAdvancedFeaturesConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceProto.java index 0d837a8b6ba4..e531d3a309d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiCacheServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceProto.java index d0e92d3489d1..5e59db65870f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenAiTuningServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequest.java index 3f480acb9df0..ab49bef1fd3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequestOrBuilder.java index 92707d647501..c64c1c950f00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponse.java index e0cd130716c4..cd58e9586439 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponseOrBuilder.java index 9370045a0f35..2886f6af5745 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateContentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequest.java index cfe72cbaae0e..794da0017749 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequestOrBuilder.java index d13ec6bf4476..ace7278a8248 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponse.java index 2795d6c76390..a80c440052a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponseOrBuilder.java index bab7df215771..5b283ea7aa21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateFetchAccessTokenResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequest.java index ce6d43d91ae5..30cde861f545 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequestOrBuilder.java index 569710d1a7e4..7f7d63da9243 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponse.java index 046c34ae9f64..ba58258e5ec4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponseOrBuilder.java index 088e59fbeb4d..e4e73d3d5f40 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerateSyntheticDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfig.java index 2dec2e1dbf00..41a816dd2ae9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -4686,6 +4686,65 @@ public com.google.cloud.aiplatform.v1.GenerationConfig.RoutingConfig getRoutingC : routingConfig_; } + public static final int SPEECH_CONFIG_FIELD_NUMBER = 23; + private com.google.cloud.aiplatform.v1.SpeechConfig speechConfig_; + + /** + * + * + *
+   * Optional. The speech generation config.
+   * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the speechConfig field is set. + */ + @java.lang.Override + public boolean hasSpeechConfig() { + return ((bitField0_ & 0x00002000) != 0); + } + + /** + * + * + *
+   * Optional. The speech generation config.
+   * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The speechConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeechConfig getSpeechConfig() { + return speechConfig_ == null + ? com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance() + : speechConfig_; + } + + /** + * + * + *
+   * Optional. The speech generation config.
+   * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder getSpeechConfigOrBuilder() { + return speechConfig_ == null + ? com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance() + : speechConfig_; + } + public static final int THINKING_CONFIG_FIELD_NUMBER = 25; private com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig thinkingConfig_; @@ -4706,7 +4765,7 @@ public com.google.cloud.aiplatform.v1.GenerationConfig.RoutingConfig getRoutingC */ @java.lang.Override public boolean hasThinkingConfig() { - return ((bitField0_ & 0x00002000) != 0); + return ((bitField0_ & 0x00004000) != 0); } /** @@ -4770,7 +4829,7 @@ public com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig getThinkin */ @java.lang.Override public boolean hasImageConfig() { - return ((bitField0_ & 0x00004000) != 0); + return ((bitField0_ & 0x00008000) != 0); } /** @@ -4868,12 +4927,15 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io output.writeBool(18, responseLogprobs_); } if (((bitField0_ & 0x00002000) != 0)) { + output.writeMessage(23, getSpeechConfig()); + } + if (((bitField0_ & 0x00004000) != 0)) { output.writeMessage(25, getThinkingConfig()); } if (((bitField0_ & 0x00000800) != 0)) { output.writeMessage(28, getResponseJsonSchema()); } - if (((bitField0_ & 0x00004000) != 0)) { + if (((bitField0_ & 0x00008000) != 0)) { output.writeMessage(30, getImageConfig()); } getUnknownFields().writeTo(output); @@ -4933,12 +4995,15 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeBoolSize(18, responseLogprobs_); } if (((bitField0_ & 0x00002000) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(23, getSpeechConfig()); + } + if (((bitField0_ & 0x00004000) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(25, getThinkingConfig()); } if (((bitField0_ & 0x00000800) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(28, getResponseJsonSchema()); } - if (((bitField0_ & 0x00004000) != 0)) { + if (((bitField0_ & 0x00008000) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(30, getImageConfig()); } size += getUnknownFields().getSerializedSize(); @@ -5016,6 +5081,10 @@ public boolean equals(final java.lang.Object obj) { if (hasRoutingConfig()) { if (!getRoutingConfig().equals(other.getRoutingConfig())) return false; } + if (hasSpeechConfig() != other.hasSpeechConfig()) return false; + if (hasSpeechConfig()) { + if (!getSpeechConfig().equals(other.getSpeechConfig())) return false; + } if (hasThinkingConfig() != other.hasThinkingConfig()) return false; if (hasThinkingConfig()) { if (!getThinkingConfig().equals(other.getThinkingConfig())) return false; @@ -5093,6 +5162,10 @@ public int hashCode() { hash = (37 * hash) + ROUTING_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getRoutingConfig().hashCode(); } + if (hasSpeechConfig()) { + hash = (37 * hash) + SPEECH_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getSpeechConfig().hashCode(); + } if (hasThinkingConfig()) { hash = (37 * hash) + THINKING_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getThinkingConfig().hashCode(); @@ -5245,6 +5318,7 @@ private void maybeForceBuilderInitialization() { getResponseSchemaFieldBuilder(); getResponseJsonSchemaFieldBuilder(); getRoutingConfigFieldBuilder(); + getSpeechConfigFieldBuilder(); getThinkingConfigFieldBuilder(); getImageConfigFieldBuilder(); } @@ -5281,6 +5355,11 @@ public Builder clear() { routingConfigBuilder_.dispose(); routingConfigBuilder_ = null; } + speechConfig_ = null; + if (speechConfigBuilder_ != null) { + speechConfigBuilder_.dispose(); + speechConfigBuilder_ = null; + } thinkingConfig_ = null; if (thinkingConfigBuilder_ != null) { thinkingConfigBuilder_.dispose(); @@ -5393,14 +5472,19 @@ private void buildPartial0(com.google.cloud.aiplatform.v1.GenerationConfig resul to_bitField0_ |= 0x00001000; } if (((from_bitField0_ & 0x00008000) != 0)) { - result.thinkingConfig_ = - thinkingConfigBuilder_ == null ? thinkingConfig_ : thinkingConfigBuilder_.build(); + result.speechConfig_ = + speechConfigBuilder_ == null ? speechConfig_ : speechConfigBuilder_.build(); to_bitField0_ |= 0x00002000; } if (((from_bitField0_ & 0x00010000) != 0)) { + result.thinkingConfig_ = + thinkingConfigBuilder_ == null ? thinkingConfig_ : thinkingConfigBuilder_.build(); + to_bitField0_ |= 0x00004000; + } + if (((from_bitField0_ & 0x00020000) != 0)) { result.imageConfig_ = imageConfigBuilder_ == null ? imageConfig_ : imageConfigBuilder_.build(); - to_bitField0_ |= 0x00004000; + to_bitField0_ |= 0x00008000; } result.bitField0_ |= to_bitField0_; } @@ -5505,6 +5589,9 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1.GenerationConfig other) if (other.hasRoutingConfig()) { mergeRoutingConfig(other.getRoutingConfig()); } + if (other.hasSpeechConfig()) { + mergeSpeechConfig(other.getSpeechConfig()); + } if (other.hasThinkingConfig()) { mergeThinkingConfig(other.getThinkingConfig()); } @@ -5622,10 +5709,16 @@ public Builder mergeFrom( bitField0_ |= 0x00000040; break; } // case 144 + case 186: + { + input.readMessage(getSpeechConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00008000; + break; + } // case 186 case 202: { input.readMessage(getThinkingConfigFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; break; } // case 202 case 226: @@ -5638,7 +5731,7 @@ public Builder mergeFrom( case 242: { input.readMessage(getImageConfigFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; break; } // case 242 default: @@ -7717,6 +7810,219 @@ public Builder clearRoutingConfig() { return routingConfigBuilder_; } + private com.google.cloud.aiplatform.v1.SpeechConfig speechConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.SpeechConfig, + com.google.cloud.aiplatform.v1.SpeechConfig.Builder, + com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder> + speechConfigBuilder_; + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the speechConfig field is set. + */ + public boolean hasSpeechConfig() { + return ((bitField0_ & 0x00008000) != 0); + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The speechConfig. + */ + public com.google.cloud.aiplatform.v1.SpeechConfig getSpeechConfig() { + if (speechConfigBuilder_ == null) { + return speechConfig_ == null + ? com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance() + : speechConfig_; + } else { + return speechConfigBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setSpeechConfig(com.google.cloud.aiplatform.v1.SpeechConfig value) { + if (speechConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + speechConfig_ = value; + } else { + speechConfigBuilder_.setMessage(value); + } + bitField0_ |= 0x00008000; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setSpeechConfig( + com.google.cloud.aiplatform.v1.SpeechConfig.Builder builderForValue) { + if (speechConfigBuilder_ == null) { + speechConfig_ = builderForValue.build(); + } else { + speechConfigBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00008000; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder mergeSpeechConfig(com.google.cloud.aiplatform.v1.SpeechConfig value) { + if (speechConfigBuilder_ == null) { + if (((bitField0_ & 0x00008000) != 0) + && speechConfig_ != null + && speechConfig_ != com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance()) { + getSpeechConfigBuilder().mergeFrom(value); + } else { + speechConfig_ = value; + } + } else { + speechConfigBuilder_.mergeFrom(value); + } + if (speechConfig_ != null) { + bitField0_ |= 0x00008000; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearSpeechConfig() { + bitField0_ = (bitField0_ & ~0x00008000); + speechConfig_ = null; + if (speechConfigBuilder_ != null) { + speechConfigBuilder_.dispose(); + speechConfigBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.SpeechConfig.Builder getSpeechConfigBuilder() { + bitField0_ |= 0x00008000; + onChanged(); + return getSpeechConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder getSpeechConfigOrBuilder() { + if (speechConfigBuilder_ != null) { + return speechConfigBuilder_.getMessageOrBuilder(); + } else { + return speechConfig_ == null + ? com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance() + : speechConfig_; + } + } + + /** + * + * + *
+     * Optional. The speech generation config.
+     * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.SpeechConfig, + com.google.cloud.aiplatform.v1.SpeechConfig.Builder, + com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder> + getSpeechConfigFieldBuilder() { + if (speechConfigBuilder_ == null) { + speechConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.SpeechConfig, + com.google.cloud.aiplatform.v1.SpeechConfig.Builder, + com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder>( + getSpeechConfig(), getParentForChildren(), isClean()); + speechConfig_ = null; + } + return speechConfigBuilder_; + } + private com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig thinkingConfig_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig, @@ -7740,7 +8046,7 @@ public Builder clearRoutingConfig() { * @return Whether the thinkingConfig field is set. */ public boolean hasThinkingConfig() { - return ((bitField0_ & 0x00008000) != 0); + return ((bitField0_ & 0x00010000) != 0); } /** @@ -7791,7 +8097,7 @@ public Builder setThinkingConfig( } else { thinkingConfigBuilder_.setMessage(value); } - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); return this; } @@ -7816,7 +8122,7 @@ public Builder setThinkingConfig( } else { thinkingConfigBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); return this; } @@ -7837,7 +8143,7 @@ public Builder setThinkingConfig( public Builder mergeThinkingConfig( com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig value) { if (thinkingConfigBuilder_ == null) { - if (((bitField0_ & 0x00008000) != 0) + if (((bitField0_ & 0x00010000) != 0) && thinkingConfig_ != null && thinkingConfig_ != com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig @@ -7850,7 +8156,7 @@ public Builder mergeThinkingConfig( thinkingConfigBuilder_.mergeFrom(value); } if (thinkingConfig_ != null) { - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); } return this; @@ -7870,7 +8176,7 @@ public Builder mergeThinkingConfig( *
*/ public Builder clearThinkingConfig() { - bitField0_ = (bitField0_ & ~0x00008000); + bitField0_ = (bitField0_ & ~0x00010000); thinkingConfig_ = null; if (thinkingConfigBuilder_ != null) { thinkingConfigBuilder_.dispose(); @@ -7895,7 +8201,7 @@ public Builder clearThinkingConfig() { */ public com.google.cloud.aiplatform.v1.GenerationConfig.ThinkingConfig.Builder getThinkingConfigBuilder() { - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); return getThinkingConfigFieldBuilder().getBuilder(); } @@ -7975,7 +8281,7 @@ public Builder clearThinkingConfig() { * @return Whether the imageConfig field is set. */ public boolean hasImageConfig() { - return ((bitField0_ & 0x00010000) != 0); + return ((bitField0_ & 0x00020000) != 0); } /** @@ -8021,7 +8327,7 @@ public Builder setImageConfig(com.google.cloud.aiplatform.v1.ImageConfig value) } else { imageConfigBuilder_.setMessage(value); } - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); return this; } @@ -8044,7 +8350,7 @@ public Builder setImageConfig( } else { imageConfigBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); return this; } @@ -8062,7 +8368,7 @@ public Builder setImageConfig( */ public Builder mergeImageConfig(com.google.cloud.aiplatform.v1.ImageConfig value) { if (imageConfigBuilder_ == null) { - if (((bitField0_ & 0x00010000) != 0) + if (((bitField0_ & 0x00020000) != 0) && imageConfig_ != null && imageConfig_ != com.google.cloud.aiplatform.v1.ImageConfig.getDefaultInstance()) { getImageConfigBuilder().mergeFrom(value); @@ -8073,7 +8379,7 @@ public Builder mergeImageConfig(com.google.cloud.aiplatform.v1.ImageConfig value imageConfigBuilder_.mergeFrom(value); } if (imageConfig_ != null) { - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); } return this; @@ -8091,7 +8397,7 @@ public Builder mergeImageConfig(com.google.cloud.aiplatform.v1.ImageConfig value *
*/ public Builder clearImageConfig() { - bitField0_ = (bitField0_ & ~0x00010000); + bitField0_ = (bitField0_ & ~0x00020000); imageConfig_ = null; if (imageConfigBuilder_ != null) { imageConfigBuilder_.dispose(); @@ -8113,7 +8419,7 @@ public Builder clearImageConfig() { * */ public com.google.cloud.aiplatform.v1.ImageConfig.Builder getImageConfigBuilder() { - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); return getImageConfigFieldBuilder().getBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfigOrBuilder.java index 150bff4b4630..5ec07fce30ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenerationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -629,6 +629,49 @@ public interface GenerationConfigOrBuilder com.google.cloud.aiplatform.v1.GenerationConfig.RoutingConfigOrBuilder getRoutingConfigOrBuilder(); + /** + * + * + *
+   * Optional. The speech generation config.
+   * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the speechConfig field is set. + */ + boolean hasSpeechConfig(); + + /** + * + * + *
+   * Optional. The speech generation config.
+   * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The speechConfig. + */ + com.google.cloud.aiplatform.v1.SpeechConfig getSpeechConfig(); + + /** + * + * + *
+   * Optional. The speech generation config.
+   * 
+ * + * + * optional .google.cloud.aiplatform.v1.SpeechConfig speech_config = 23 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder getSpeechConfigOrBuilder(); + /** * * diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadata.java index 4ca421fb2ad4..e35ac479bfd8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadataOrBuilder.java index 06ea86fd4775..090323c58628 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenericOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSource.java index 5e1b6c9d0d90..dc637bd1f2a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSourceOrBuilder.java index 90f90c40affc..4c7e6dec5f05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GenieSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequest.java index 5cbc26bdbe23..3d2428ab623a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequestOrBuilder.java index fca43b007ed6..27b24f93d511 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetAnnotationSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequest.java index 9ed88db510de..f2e34f764d21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequestOrBuilder.java index caa75eba5b4a..795d6b1c77c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequest.java index adf1ba48aebe..e23bfbeb1f11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequestOrBuilder.java index 2918f7eee167..f0eb76c4bc18 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetBatchPredictionJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequest.java index 65ed4eccb549..4e4b435ea234 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequestOrBuilder.java index 456f683544b3..df1ba630e4c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCachedContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequest.java index e7459692e178..128d4e864af1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequestOrBuilder.java index 8f442555c05a..614ae7137e57 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetContextRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequest.java index e4375e8653e1..fce3c87f0d23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequestOrBuilder.java index 0325b7455c52..e2b81244da5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetCustomJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequest.java index 4bfd1f2aab26..e849c4129a9c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequestOrBuilder.java index 7d18a7ad31db..46598da37e40 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDataLabelingJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequest.java index c1376900ef72..cbea7fa9bc2d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequestOrBuilder.java index 20872a37f7c0..2aa461b843b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequest.java index 47f479c0a699..e1d2f1ba5a80 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequestOrBuilder.java index 4a12fc7e03ef..b100df6e0a46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDatasetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequest.java index 0ecebebabf4f..d947ccd51cef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequestOrBuilder.java index 2e5e5e3f0c9f..ba6c6e0ce8e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetDeploymentResourcePoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequest.java index c24df9726b38..6f58aa36262d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequestOrBuilder.java index d1a065dcc193..f6f8e5adc409 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequest.java index c3688dc4d40b..8dee7e955a37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequestOrBuilder.java index 02d395f155e1..019284bfd27e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetEntityTypeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequest.java index a8aa389428c3..326352ee2d50 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequestOrBuilder.java index 84438a5d19c9..30f949ef7c9d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetExecutionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequest.java index ef3180fa8631..8a8c016072f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequestOrBuilder.java index b8c5c9fb1719..5d04ca3f1474 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequest.java index 07b7e7c1f135..1528b4719b5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequestOrBuilder.java index 673e4c018bb4..4d44218d238e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureOnlineStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequest.java index f77aa4d7db95..ed44f2e881cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequestOrBuilder.java index 34a8b0052839..b9c89fac3c3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequest.java index f5b19bbbd700..4a17970926fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequestOrBuilder.java index 242f1e3f1513..b85dbc2891d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequest.java index 133c0308c476..362191c10e4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequestOrBuilder.java index b97b4e29fa9d..d1bb918230e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeatureViewSyncRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequest.java index a8866bbbc46c..cadca320c0c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequestOrBuilder.java index 423818866957..830562a00417 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetFeaturestoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequest.java index 5c42c558e887..9e3a9c0f14cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequestOrBuilder.java index eb7f5f778146..3c9d20565332 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetHyperparameterTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequest.java index 2bae7ad7cac5..737f1f5ffb3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequestOrBuilder.java index 34315a4c218b..626a6f4cb902 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequest.java index 423901b7e47f..2dba982b04a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequestOrBuilder.java index 8abe1131a532..70ad3a030705 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequest.java index 4016fc813412..d080288e9f8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequestOrBuilder.java index 7e10067110b5..5c7c5cc4f8d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataSchemaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequest.java index 778d5f1bec53..fd0922911290 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequestOrBuilder.java index f30dc60eca3a..411c212c35a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetMetadataStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequest.java index 1bdab27bb189..12378b0581ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequestOrBuilder.java index 054879daf5eb..472e2226c61a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequest.java index 6ed9360c8252..6bce48fde489 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequestOrBuilder.java index e08e0dc9fee9..2abce2f05130 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequest.java index 6016dfecdf35..19a7e1429b20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequestOrBuilder.java index 99ccf05d0a04..c9f884f426c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelEvaluationSliceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequest.java index 7133f2698977..641cd8485faa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequestOrBuilder.java index 898e98e5cda5..d69507807b29 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequest.java index 433c3f380343..54f1dbb0eb14 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequestOrBuilder.java index 3482f9cf903d..49f9b8bd5049 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequest.java index 914198fe21cd..8e232b53895b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequestOrBuilder.java index f35659514856..6485c25b93c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNasTrialDetailRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequest.java index f2532a44121f..6dc77ad8972f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequestOrBuilder.java index b75450bcf105..e03454b7bc81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookExecutionJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequest.java index 2486739760e0..384ee696b1ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequestOrBuilder.java index fb994532ef60..aab3f3ae0774 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequest.java index 76a6b6e45ae2..0f12fc9910b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequestOrBuilder.java index ca6002cd0509..4582250b36fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetNotebookRuntimeTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequest.java index a9e39cb82919..caa3c83d0c35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequestOrBuilder.java index 50a8d4a630e1..2129c803a951 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPersistentResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequest.java index e7d2a9937762..acc72976ffef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequestOrBuilder.java index 4e5958e8fecc..aec9c926a5b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPipelineJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequest.java index 885afb111aca..7b918ede693d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequestOrBuilder.java index 830331881b74..c99ecdcf3694 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetPublisherModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequest.java index b8eee8009260..98318f4121f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequestOrBuilder.java index d765886e3f41..e3ed3e645587 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagCorpusRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequest.java index b72e8d781083..3e98406620a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequestOrBuilder.java index a05c3e4b5fc7..d226e88f45cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagEngineConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequest.java index 93c817a1d384..d37ba6b56680 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequestOrBuilder.java index e0a058d78a86..cb23fff3f22f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetRagFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequest.java index 1ca79dfbad0b..7315e71b8fdc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequestOrBuilder.java index 88ac0da4f63e..a24578591b1d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequest.java index 4d556209fe85..134d523ab4dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequestOrBuilder.java index d6d3550b8f5b..e1f0d0621fd1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequest.java index 53d9b3667da3..7485469af1db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequestOrBuilder.java index a9ddaaf6ffe1..6af161c54f8f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetSpecialistPoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequest.java index 2f54956d0095..28dab4bb91a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequestOrBuilder.java index 2176e0675c64..16656b4d9435 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetStudyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequest.java index 5102ee639904..30717f6602d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequestOrBuilder.java index 8d884052cce5..5443531b9092 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardExperimentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequest.java index 650b0c7be0b1..5989b937bb0f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequestOrBuilder.java index acda91faac2d..0a3bdb887d17 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequest.java index 41630dcc0cbf..86f13dc1a5cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequestOrBuilder.java index 8ec6c22489e4..0ac4b3b42aa7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardRunRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequest.java index bda3191cc954..72e0f22242f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequestOrBuilder.java index 82b696234c58..7efc67748bf1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequest.java index 909aa4d1a4be..fb912a121c70 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequestOrBuilder.java index 48fb90d3715f..66c3054f9c98 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrainingPipelineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequest.java index 268ae98096f3..ffaafac371f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequestOrBuilder.java index ffcbf99b153f..d0cf8918da89 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTrialRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequest.java index 7b9fd05f783a..f34253924ed9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequestOrBuilder.java index 2368ae25278a..f5caaeec3f91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GetTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSource.java index 0a70990b97bf..c3f87f5353b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSourceOrBuilder.java index 482ccb9f3edc..0782d7af1ee6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleDriveSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMaps.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMaps.java index bd4c624c02ff..722ec578f07c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMaps.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMaps.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMapsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMapsOrBuilder.java index 8a6fec89ee1d..35f827573e91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMapsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleMapsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrieval.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrieval.java index b7377aa504e6..2c2a9547ff3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrieval.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrieval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrievalOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrievalOrBuilder.java index 2f3595b451ab..1825fb297f4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrievalOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GoogleSearchRetrievalOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInput.java index 20ebf7cd9c5c..f384a6ba6e09 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInputOrBuilder.java index 02f85819edb4..bf6138be671a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstance.java index 31e10d05ce3c..13ebac3cd7fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstanceOrBuilder.java index 097be5598af9..43a812ad13e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResult.java index fc9e7007cca4..3310e4fc2549 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResultOrBuilder.java index bacfa3ec9b0d..b4f0effe4d17 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpec.java index ac031ac7f337..e8221633b088 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpecOrBuilder.java index 688c6e970eee..385b0a9774d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundednessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunk.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunk.java index 772e1bc365e3..adeccb654b2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunk.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunk.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunkOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunkOrBuilder.java index 1a35eeb458fa..a81dafadfaa1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunkOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingChunkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadata.java index abec3e691776..a9a67bf6f678 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadataOrBuilder.java index ef6f664b4301..cc1eb0c71b98 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupport.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupport.java index 31cf5eb704bb..f2f666a738c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupport.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupportOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupportOrBuilder.java index d97ed92491da..982fbf94ce46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupportOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/GroundingSupportOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HarmCategory.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HarmCategory.java index bf24e4874148..07412d0a5898 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HarmCategory.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HarmCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJob.java index 244b0b04b997..34ad24050ac2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobName.java index 67b3236b8743..a3ab8e1fb2c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobOrBuilder.java index 555578f85b81..968af634bce0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobProto.java index f4a3de2beeea..11529dec7a96 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/HyperparameterTuningJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcher.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcher.java index 6bb939d36429..7d143b21cd95 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcher.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcherOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcherOrBuilder.java index 5c27e29d65f7..db1467619cac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcherOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IdMatcherOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfig.java index 3078e5b66afb..9fc660b8a843 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfigOrBuilder.java index fe7fbbfe7315..1618350edf6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImageConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfig.java index 9451f7b36b67..1c82aa7ea4a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfigOrBuilder.java index 20770e69d7e6..af842507ed3e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadata.java index 899e2e98a2b8..cee49e487c43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadataOrBuilder.java index b44509e67bfa..c5f1a9a1ea41 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequest.java index 94f5904e8cd4..3cd81a10c450 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequestOrBuilder.java index c4910a563d24..e043fafe1fd0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponse.java index 738da79fa3a1..8c1d021021a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponseOrBuilder.java index 3ed807cc94d2..264b0c6feee5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadata.java index c8c17ed61b42..b246c61157cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadataOrBuilder.java index 7a5ff8b852a5..84871cf1cad4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequest.java index 684830632529..2f730853f731 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequestOrBuilder.java index 34d0c07bd753..f685b1d0dde2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponse.java index d94e2bc1613a..a5ac2118f444 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponseOrBuilder.java index b2fe5c74cc4c..be35ef4f0ba6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequest.java index d1fe23a2194c..8b07db3ef7a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequestOrBuilder.java index 746c05bb214f..611a1408a5df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportModelEvaluationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfig.java index 57643b62e751..2d39704e9770 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfigOrBuilder.java index d44f6c4c830a..923707d1b452 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadata.java index 3700883c100e..d48a6e8384ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadataOrBuilder.java index 628bd28b62d3..c7e4787f9a7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequest.java index 29237a36aa44..7caf0b7a8414 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequestOrBuilder.java index 8df77a312d90..0b221f128089 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponse.java index 6d572dd861df..f2d753cf7681 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponseOrBuilder.java index 826a099af00c..63a63670042d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ImportRagFilesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Index.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Index.java index 50f380e6ddc6..8041ba0ac409 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Index.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Index.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapoint.java index 761188c9a0e0..b60fa8a8021b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapointOrBuilder.java index ac823277dd17..aa0ef752ebc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexDatapointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpoint.java index 0338a88895d2..5379f37dc237 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointName.java index be91f84199b3..121a6cb7935a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointOrBuilder.java index d7dace1f4a17..92d9cb8d7795 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointProto.java index bcc7bd45195f..21341778b94e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceProto.java index 1d0703b6e2be..e98b4ec79580 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexEndpointServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexName.java index f131d2e50ee4..6b50061df655 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexOrBuilder.java index f362367eb624..46111764e270 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpoints.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpoints.java index f04b7753a890..dc47583eb1d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpoints.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpointsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpointsOrBuilder.java index 0928e5a77196..cf51235bd107 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpointsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexPrivateEndpointsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexProto.java index 5d58159fe090..009131c6d97b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceProto.java index e461355aeefc..83dcee32c554 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStats.java index 3630d3697580..74eb94a51de3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStatsOrBuilder.java index 869adc6c0149..e3a9b92bc8e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IndexStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfig.java index 96bdb0f42056..1135128719ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfigOrBuilder.java index c5ccbb1c80fb..fc8ac7ba1030 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/InputDataConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64Array.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64Array.java index 47b63c2d7761..cd736c9867c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64Array.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64Array.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64ArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64ArrayOrBuilder.java index 2556b04f961f..af442db226b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64ArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Int64ArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttribution.java index f0a7e7bab435..78bea819c2b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttributionOrBuilder.java index c71cd91150aa..70804f883df4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IntegratedGradientsAttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IoProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IoProto.java index b1181f6d8a53..14a22982397f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IoProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/IoProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSource.java index 6f9acbe4072e..e9337d657ce7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSourceOrBuilder.java index adca72ef1cc2..db44334ea690 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JiraSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceProto.java index aa026fb0aada..58464b6b5b66 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobState.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobState.java index 03f7e99268ed..1e81b60528ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobState.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobStateProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobStateProto.java index c48de5b244ad..0275eb717cd1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobStateProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/JobStateProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReference.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReference.java index 5ffbeae37e1e..106f74c211bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReference.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReferenceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReferenceOrBuilder.java index b830dba65f47..e12b5f9e1e47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReferenceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LargeModelReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraph.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraph.java index ccbf7531cf12..7047f03486b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraph.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphOrBuilder.java index 4ca98ef0c0f0..37066793a6cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphProto.java index 230583beb5a9..45f2ff6729bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LineageSubgraphProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequest.java index f7a4df828256..9d3b791c894b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequestOrBuilder.java index 7019112f77c1..aeb91c443c6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponse.java index 080dea12e42e..bce309c33adc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponseOrBuilder.java index dfae05df3712..797d6ed90671 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListAnnotationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequest.java index 6c8168addc12..615566009fdf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequestOrBuilder.java index 618c77be76b7..3209b359f7f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponse.java index 1fad60c04f10..275a34a2b287 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponseOrBuilder.java index 8d54fc41dcb9..a012351eb59d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequest.java index 96dfd2ef636c..9c3392effb1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequestOrBuilder.java index 4071295ac696..9d4ba8c82b25 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponse.java index 5a23df703155..07bbaef78334 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponseOrBuilder.java index 370b3099934d..ba8efe03a86b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListBatchPredictionJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequest.java index ca465203689f..eb839717fb0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequestOrBuilder.java index fb03ef066709..31f8ba74f1f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponse.java index 51b86aa50f14..6c1ea66dcf65 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponseOrBuilder.java index 61ce07e74d90..884f5162912d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCachedContentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequest.java index 451cbe001616..9bdb093a9e4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequestOrBuilder.java index 9d6d58096066..0081bfdc13d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponse.java index a0e2da552661..b9f14e35fa9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponseOrBuilder.java index 7f93f82b1d80..61c07d6293a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListContextsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequest.java index 5969c0cc06b6..eea789236715 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequestOrBuilder.java index 8313aabe7940..cb5d3555aed2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponse.java index 0acda4103838..d1eef41084b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponseOrBuilder.java index e5df0933ebc8..9192325155f3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListCustomJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequest.java index a150fd748ac1..d0e057ec634f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequestOrBuilder.java index 265bef28db69..5a41679b66a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponse.java index 26c269b9bb45..e78b4d84e537 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponseOrBuilder.java index fa27f390e62b..aa622227d865 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataItemsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequest.java index 3653568340f8..02691cc288c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequestOrBuilder.java index 021271a7505b..5cb95dc2a1ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponse.java index a14039a81a50..8570f1ff9aa9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponseOrBuilder.java index 4ba621719732..c55a39079eb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDataLabelingJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequest.java index e9eaf79dbae4..7e5aa7375547 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequestOrBuilder.java index 03a193d03822..88591dc385f6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponse.java index 9756b16af8cf..263fc867e188 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponseOrBuilder.java index d50b2a370472..17c370213463 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequest.java index 36896324db4e..79d1b46fd2ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequestOrBuilder.java index cc9fee2a54b6..d40e1c90fbcd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponse.java index d50b392efe3c..8e32f2041bb9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponseOrBuilder.java index bd73d2cc32bb..e895c6ce1278 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDatasetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequest.java index 1361c3336bdb..2302d3c9720a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequestOrBuilder.java index e1ebaab9fef9..4bc702793608 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponse.java index 1873d1c1df20..5813d0b528fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponseOrBuilder.java index 35dc0ab06d34..82b0bedcd8dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListDeploymentResourcePoolsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequest.java index 1fa3fd1ef04d..1524403047e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequestOrBuilder.java index edc680386605..8765858a10d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponse.java index 183d8ba32518..35bd1ee92c5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponseOrBuilder.java index 01b394367457..5df003e13ed9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEndpointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequest.java index cf0f37bf43b7..1a4cbd87682a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequestOrBuilder.java index 6f75855a0f66..b4ea0ec5f475 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponse.java index a0739881175c..bef7a2c7afeb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponseOrBuilder.java index a6f90df08992..7e50f6d217a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListEntityTypesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequest.java index 967ac6c1ec31..b7012d7d2ac7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequestOrBuilder.java index 8780624ad771..36d9695a8ef4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponse.java index d585eebb7e7c..bf3112403903 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponseOrBuilder.java index 96160ec69d43..27cc1c86806e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListExecutionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequest.java index aec1904f36c6..b885b5399fe6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequestOrBuilder.java index 8a8bf866bcf9..e63358c5c89c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponse.java index 526d3e526750..14ceb4ddc338 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponseOrBuilder.java index 385314c379fd..9d16ee515b85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureGroupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequest.java index 441752efbec9..8e19f5c0541b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequestOrBuilder.java index eeb5d0a94ef5..76e56f785246 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponse.java index 7bbddebd6fc0..079691a821ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponseOrBuilder.java index e2cb5d0d2e6b..c77af4c8dc8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureOnlineStoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequest.java index 2668eb5b4658..99f098edac53 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequestOrBuilder.java index 679898aeb389..f124142d7ac6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponse.java index 3877e1eb9b88..a272ed181a88 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponseOrBuilder.java index 3cb437cf255a..64430af743d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewSyncsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequest.java index e35b631f8358..b0746154218a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequestOrBuilder.java index 41d9d382c45c..07d6e4fd0962 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponse.java index 9cfa4068be60..5dbd767f6941 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponseOrBuilder.java index 7680d762d466..b93a0cd0063f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeatureViewsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequest.java index 24b862cd935a..a1b1eef10a55 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequestOrBuilder.java index 4a9ac3b34029..564333297ae7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponse.java index fd92586ae12d..0bd6ffc01d7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponseOrBuilder.java index 233e929c6852..0dad64725208 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequest.java index 3747bb607f64..94e3bf878478 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequestOrBuilder.java index 60838d5a5133..eed8f60c6ed7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponse.java index 965c250b57f9..c5abdb96c231 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponseOrBuilder.java index 0816dd6af0df..89bcc71b495c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListFeaturestoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequest.java index 73f62559d9bd..e98a09147e26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequestOrBuilder.java index 6b66f4bd19b5..b5f0f23ceb94 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponse.java index ed6cf928134c..29c3f143a77c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponseOrBuilder.java index 6651fc2a06a3..63593d57b5d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListHyperparameterTuningJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequest.java index 4649f68594ce..1aca887de20c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequestOrBuilder.java index 47f8451f6951..57c499c8494c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponse.java index a3792009cced..b7c130e49a4c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponseOrBuilder.java index 55eb2f11d6e3..eb1d2c45ea62 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexEndpointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequest.java index 76462286af0d..f13709ef3674 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequestOrBuilder.java index d182ddbf4dcb..53de03ba9963 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponse.java index f2982e34ad1b..12f299d65a2d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponseOrBuilder.java index 92c9c45eb5e4..320b78838a71 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListIndexesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequest.java index 9e2ae74964de..8a4041e50cae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequestOrBuilder.java index 71bb042baaae..39eb4a51011b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponse.java index f4ee73270ea5..314e8a998f5e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponseOrBuilder.java index cc91485544f0..5311cedaf910 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataSchemasResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequest.java index bfef105f3296..50b9284c7805 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequestOrBuilder.java index a86ac73dc192..cb058df15fda 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponse.java index bad84419e527..bbe7d82293c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponseOrBuilder.java index 6389dd22e508..be55cb8188ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListMetadataStoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequest.java index 008b41ab0889..c07b34b99b4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java index 2acc6b949688..0b71c6186298 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponse.java index c8807c5c7619..a85fc0392fc0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java index 3b730bb7daa1..41f26137b320 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequest.java index 25cc1e757247..3946c2457841 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequestOrBuilder.java index af512089fe1f..39a96d1f98e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponse.java index b5749cde3d78..8554be57ec4e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponseOrBuilder.java index 64a87e42c425..28e08dbe5042 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationSlicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequest.java index 9f157aa56262..9636e4dc5b63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequestOrBuilder.java index 9a883dc62363..cb76226519a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponse.java index 030d39e4a8fd..cd7cec21fbb0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponseOrBuilder.java index e30203976b96..bf068d4f0413 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelEvaluationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequest.java index 8931e1ca488a..2e4b74e9b7cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequestOrBuilder.java index 6b70126dba5a..30c3201128c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponse.java index 850a7f192405..64e68a7c1886 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponseOrBuilder.java index 30dc3ddebc83..fb68aa16618c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionCheckpointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequest.java index f7cd4d8be68b..c3bc7a07cdc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequestOrBuilder.java index 876baf58d281..2c09a2b97fe8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponse.java index 61f82f654306..1eef46cf090f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponseOrBuilder.java index f5c20c665e4f..ab869f5070c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequest.java index 241824948b54..17868a5007c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequestOrBuilder.java index bcbb33e93539..381bbf719652 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponse.java index 5c4e32577bb4..b34687e9df46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponseOrBuilder.java index d5be897cb869..6a922fb50670 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequest.java index 4ca3278f7350..dd07068dfb4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequestOrBuilder.java index 3b87123d4122..0bd7a743f903 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponse.java index 6e094d214b77..d1a3db56dff9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponseOrBuilder.java index a7eb9f067e80..a5ae7f851d7c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequest.java index 76bb3fff8196..804684100ad4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequestOrBuilder.java index 9fb18346aec8..268718a51295 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponse.java index b91d182d38ec..f00ac58d7242 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponseOrBuilder.java index 5b346c51e740..33f60f61e25f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNasTrialDetailsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequest.java index 11bbef540c03..9fd01cf2fe10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequestOrBuilder.java index 783bc5a36716..64f8e94d8784 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponse.java index 9643b0a14cbb..188ceff978ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponseOrBuilder.java index fd4cff2f41a9..e5492784b066 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookExecutionJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequest.java index cefa73115a29..9b7457d768c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequestOrBuilder.java index 81d40b90c868..0f595180aabb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponse.java index acb7adcacc9e..c36629191a7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponseOrBuilder.java index eaf33d0cfcee..6bab0b2b3733 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimeTemplatesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequest.java index 8b7fbfa3e795..790097e18c45 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequestOrBuilder.java index dbad3630c19a..cb3b02a92827 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponse.java index fd2a5d04ca70..fa1bea3a9c58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponseOrBuilder.java index 16f9de1477cb..2d579c96dd57 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListNotebookRuntimesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequest.java index 0ca7f3654a14..83af5d1b640b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequestOrBuilder.java index 8ec1a60ca33f..7c5bf927887b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponse.java index ee6817757b1b..aa9ce1d76b22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponseOrBuilder.java index 5da6033ddc6f..8c0bbee061f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListOptimalTrialsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequest.java index 866bc7537913..e799e454edeb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequestOrBuilder.java index 7f8ee30666c8..e9d0337a2e0e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponse.java index 0650995c4628..3e5ebc91dfa9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponseOrBuilder.java index 78d7b7250562..be5275c49b30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPersistentResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequest.java index 611ccd6e4594..9c25066d6053 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequestOrBuilder.java index ba56dbbd38a8..89ec7d66421e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponse.java index 9e4de0db0ab1..440f9cef2e2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponseOrBuilder.java index 9d636f72dd1f..5173be32de1e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListPipelineJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequest.java index 72b993f1f193..771aa6a13ebc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequestOrBuilder.java index cf672f8d6e7d..944a461536f7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponse.java index b18fa09c3306..1b5319298cd1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponseOrBuilder.java index cc221f7d9f98..620b22f23ccb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagCorporaResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequest.java index 1797be113966..e8240314a3ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequestOrBuilder.java index ed5589cef10f..34ab196ee853 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponse.java index e0820b17d364..7a9db4cb0117 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponseOrBuilder.java index 1c9fcf61566a..325ebaa23572 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListRagFilesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequest.java index b96d628d8d88..d4ea15420585 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequestOrBuilder.java index 0f96b08f3252..152a7b5b1430 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponse.java index 3d9da77ec8a9..3d85bb367034 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponseOrBuilder.java index e4e461ed99d4..3aeff8ee6a60 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListReasoningEnginesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequest.java index 7346775a92e1..7322ed2ed932 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequestOrBuilder.java index 37670d96d9fd..9827cca682e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponse.java index 1d2f3743c00a..b2d7b7d5346c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponseOrBuilder.java index abeb1883a79b..99ea4d70637e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSavedQueriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequest.java index c07f39d39bd5..1914d9cce22b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequestOrBuilder.java index 1e4b0bf879ef..39f4f2102b83 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponse.java index f645fe5e755f..589362d0a6c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponseOrBuilder.java index f3b8dc562adb..cb1921b66e24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSchedulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequest.java index 56535e5462e4..6afa1407c994 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequestOrBuilder.java index d942cc43b884..1e2e103605ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponse.java index 5068622131e4..2f6e9a14ad20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponseOrBuilder.java index e654cbf5b3a6..312f0adb9155 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListSpecialistPoolsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequest.java index c83923bf019f..280380a06fee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequestOrBuilder.java index a24cb2dfdd3b..4ed52515b420 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponse.java index a7fe5f30e484..f77888c55f4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponseOrBuilder.java index 2d442ca4cce1..d75f9347ddea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListStudiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequest.java index 1be6d2e308a2..bd3997927184 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequestOrBuilder.java index dbbfed927b60..e962eefbc842 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponse.java index 4b62f56b03dd..624f3313d5e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponseOrBuilder.java index a91ead4d06cd..38301ccb6728 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardExperimentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequest.java index 1b30659f7ae8..c4bbde998f7c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequestOrBuilder.java index f5b10cd181bb..4bec6a555977 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponse.java index 026c719df24a..090bd94f2fa0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponseOrBuilder.java index 73c8d9cac7b1..11d34741c1b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardRunsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequest.java index 57d8d3b7b104..87beeb6ec37d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequestOrBuilder.java index 99bda0f888f2..b6d5e4dd761f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponse.java index e7b0e2d45593..84fa6d6c6ae9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponseOrBuilder.java index 0cebe08a6aa0..3186cc66c927 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardTimeSeriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequest.java index 4b5020a720ba..c609190fd192 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequestOrBuilder.java index aa6a7c31c01b..cb3aa015501d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponse.java index e1fea2af5504..4306755684cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponseOrBuilder.java index 9c7a5576cac1..fb6daf552013 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTensorboardsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequest.java index 2234f712048e..ecd2292101c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequestOrBuilder.java index 8af2d0d49335..7f4f42efa310 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponse.java index 6c9a671da346..7d2875cca753 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponseOrBuilder.java index 4a75ab31607a..e3d718671271 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrainingPipelinesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequest.java index d1d44838eda1..63a6a8c7d24e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequestOrBuilder.java index e4309f280b6a..d7378bcdd2f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponse.java index 6737e887ca69..ebe870915894 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponseOrBuilder.java index 3fe9d428af17..cea36a2508c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTrialsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequest.java index 1d7408a7697d..204a2c4fabf5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequestOrBuilder.java index 4388f84e9990..8deb94cf4a12 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponse.java index 540edec63145..8b439bef3365 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponseOrBuilder.java index 5802e4c1f4cf..92e24467248b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ListTuningJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceProto.java index 7cdb1ecd291a..309a254f165b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LlmUtilityServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LocationName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LocationName.java index faeeea64c445..d72afe996e9c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LocationName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResult.java index 75ab61002424..3c3ca4a61211 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResultOrBuilder.java index eb1ad0eba4c3..64da3115f1d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LogprobsResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequest.java index 0c35dfcf0854..512ee85fd4ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequestOrBuilder.java index df763d411c40..7cdc20ba9a2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LookupStudyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LustreMount.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LustreMount.java new file mode 100644 index 000000000000..cd58a8101129 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LustreMount.java @@ -0,0 +1,1207 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/machine_resources.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Represents a mount configuration for Lustre file system.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.LustreMount} + */ +public final class LustreMount extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.LustreMount) + LustreMountOrBuilder { + private static final long serialVersionUID = 0L; + + // Use LustreMount.newBuilder() to construct. + private LustreMount(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private LustreMount() { + instanceIp_ = ""; + volumeHandle_ = ""; + filesystem_ = ""; + mountPoint_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new LustreMount(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1_LustreMount_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1_LustreMount_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.LustreMount.class, + com.google.cloud.aiplatform.v1.LustreMount.Builder.class); + } + + public static final int INSTANCE_IP_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object instanceIp_ = ""; + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The instanceIp. + */ + @java.lang.Override + public java.lang.String getInstanceIp() { + java.lang.Object ref = instanceIp_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceIp_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for instanceIp. + */ + @java.lang.Override + public com.google.protobuf.ByteString getInstanceIpBytes() { + java.lang.Object ref = instanceIp_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceIp_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VOLUME_HANDLE_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object volumeHandle_ = ""; + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The volumeHandle. + */ + @java.lang.Override + public java.lang.String getVolumeHandle() { + java.lang.Object ref = volumeHandle_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + volumeHandle_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for volumeHandle. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVolumeHandleBytes() { + java.lang.Object ref = volumeHandle_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + volumeHandle_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int FILESYSTEM_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object filesystem_ = ""; + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The filesystem. + */ + @java.lang.Override + public java.lang.String getFilesystem() { + java.lang.Object ref = filesystem_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + filesystem_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for filesystem. + */ + @java.lang.Override + public com.google.protobuf.ByteString getFilesystemBytes() { + java.lang.Object ref = filesystem_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + filesystem_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int MOUNT_POINT_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object mountPoint_ = ""; + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The mountPoint. + */ + @java.lang.Override + public java.lang.String getMountPoint() { + java.lang.Object ref = mountPoint_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mountPoint_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for mountPoint. + */ + @java.lang.Override + public com.google.protobuf.ByteString getMountPointBytes() { + java.lang.Object ref = mountPoint_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mountPoint_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instanceIp_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, instanceIp_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(volumeHandle_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, volumeHandle_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filesystem_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, filesystem_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mountPoint_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, mountPoint_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instanceIp_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, instanceIp_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(volumeHandle_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, volumeHandle_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filesystem_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, filesystem_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mountPoint_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, mountPoint_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.LustreMount)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.LustreMount other = + (com.google.cloud.aiplatform.v1.LustreMount) obj; + + if (!getInstanceIp().equals(other.getInstanceIp())) return false; + if (!getVolumeHandle().equals(other.getVolumeHandle())) return false; + if (!getFilesystem().equals(other.getFilesystem())) return false; + if (!getMountPoint().equals(other.getMountPoint())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + INSTANCE_IP_FIELD_NUMBER; + hash = (53 * hash) + getInstanceIp().hashCode(); + hash = (37 * hash) + VOLUME_HANDLE_FIELD_NUMBER; + hash = (53 * hash) + getVolumeHandle().hashCode(); + hash = (37 * hash) + FILESYSTEM_FIELD_NUMBER; + hash = (53 * hash) + getFilesystem().hashCode(); + hash = (37 * hash) + MOUNT_POINT_FIELD_NUMBER; + hash = (53 * hash) + getMountPoint().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.LustreMount parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.LustreMount prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Represents a mount configuration for Lustre file system.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.LustreMount} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.LustreMount) + com.google.cloud.aiplatform.v1.LustreMountOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1_LustreMount_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1_LustreMount_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.LustreMount.class, + com.google.cloud.aiplatform.v1.LustreMount.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.LustreMount.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + instanceIp_ = ""; + volumeHandle_ = ""; + filesystem_ = ""; + mountPoint_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1_LustreMount_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.LustreMount getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.LustreMount.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.LustreMount build() { + com.google.cloud.aiplatform.v1.LustreMount result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.LustreMount buildPartial() { + com.google.cloud.aiplatform.v1.LustreMount result = + new com.google.cloud.aiplatform.v1.LustreMount(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.LustreMount result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.instanceIp_ = instanceIp_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.volumeHandle_ = volumeHandle_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.filesystem_ = filesystem_; + } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.mountPoint_ = mountPoint_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.LustreMount) { + return mergeFrom((com.google.cloud.aiplatform.v1.LustreMount) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.LustreMount other) { + if (other == com.google.cloud.aiplatform.v1.LustreMount.getDefaultInstance()) return this; + if (!other.getInstanceIp().isEmpty()) { + instanceIp_ = other.instanceIp_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.getVolumeHandle().isEmpty()) { + volumeHandle_ = other.volumeHandle_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getFilesystem().isEmpty()) { + filesystem_ = other.filesystem_; + bitField0_ |= 0x00000004; + onChanged(); + } + if (!other.getMountPoint().isEmpty()) { + mountPoint_ = other.mountPoint_; + bitField0_ |= 0x00000008; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + instanceIp_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + volumeHandle_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + filesystem_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 34: + { + mountPoint_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 34 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object instanceIp_ = ""; + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The instanceIp. + */ + public java.lang.String getInstanceIp() { + java.lang.Object ref = instanceIp_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceIp_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for instanceIp. + */ + public com.google.protobuf.ByteString getInstanceIpBytes() { + java.lang.Object ref = instanceIp_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceIp_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The instanceIp to set. + * @return This builder for chaining. + */ + public Builder setInstanceIp(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + instanceIp_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearInstanceIp() { + instanceIp_ = getDefaultInstance().getInstanceIp(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for instanceIp to set. + * @return This builder for chaining. + */ + public Builder setInstanceIpBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + instanceIp_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.lang.Object volumeHandle_ = ""; + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The volumeHandle. + */ + public java.lang.String getVolumeHandle() { + java.lang.Object ref = volumeHandle_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + volumeHandle_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for volumeHandle. + */ + public com.google.protobuf.ByteString getVolumeHandleBytes() { + java.lang.Object ref = volumeHandle_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + volumeHandle_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The volumeHandle to set. + * @return This builder for chaining. + */ + public Builder setVolumeHandle(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + volumeHandle_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearVolumeHandle() { + volumeHandle_ = getDefaultInstance().getVolumeHandle(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for volumeHandle to set. + * @return This builder for chaining. + */ + public Builder setVolumeHandleBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + volumeHandle_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object filesystem_ = ""; + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The filesystem. + */ + public java.lang.String getFilesystem() { + java.lang.Object ref = filesystem_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + filesystem_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for filesystem. + */ + public com.google.protobuf.ByteString getFilesystemBytes() { + java.lang.Object ref = filesystem_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + filesystem_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The filesystem to set. + * @return This builder for chaining. + */ + public Builder setFilesystem(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + filesystem_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearFilesystem() { + filesystem_ = getDefaultInstance().getFilesystem(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for filesystem to set. + * @return This builder for chaining. + */ + public Builder setFilesystemBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + filesystem_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + private java.lang.Object mountPoint_ = ""; + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The mountPoint. + */ + public java.lang.String getMountPoint() { + java.lang.Object ref = mountPoint_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mountPoint_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for mountPoint. + */ + public com.google.protobuf.ByteString getMountPointBytes() { + java.lang.Object ref = mountPoint_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mountPoint_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The mountPoint to set. + * @return This builder for chaining. + */ + public Builder setMountPoint(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + mountPoint_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearMountPoint() { + mountPoint_ = getDefaultInstance().getMountPoint(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for mountPoint to set. + * @return This builder for chaining. + */ + public Builder setMountPointBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + mountPoint_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.LustreMount) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.LustreMount) + private static final com.google.cloud.aiplatform.v1.LustreMount DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.LustreMount(); + } + + public static com.google.cloud.aiplatform.v1.LustreMount getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public LustreMount parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.LustreMount getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LustreMountOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LustreMountOrBuilder.java new file mode 100644 index 000000000000..9b5b085ce78d --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/LustreMountOrBuilder.java @@ -0,0 +1,132 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/machine_resources.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface LustreMountOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.LustreMount) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The instanceIp. + */ + java.lang.String getInstanceIp(); + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for instanceIp. + */ + com.google.protobuf.ByteString getInstanceIpBytes(); + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The volumeHandle. + */ + java.lang.String getVolumeHandle(); + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for volumeHandle. + */ + com.google.protobuf.ByteString getVolumeHandleBytes(); + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The filesystem. + */ + java.lang.String getFilesystem(); + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for filesystem. + */ + com.google.protobuf.ByteString getFilesystemBytes(); + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The mountPoint. + */ + java.lang.String getMountPoint(); + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for mountPoint. + */ + com.google.protobuf.ByteString getMountPointBytes(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineResourcesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineResourcesProto.java index d03efad738db..d7e06c08e165 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineResourcesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -60,6 +60,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1_NfsMount_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1_NfsMount_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_LustreMount_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_LustreMount_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1_AutoscalingMetricSpec_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -81,30 +85,31 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "2google/cloud/aiplatform/v1/machine_resources.proto\022\032google.cloud.aiplatform.v1" + "\032\037google/api/field_behavior.proto\0321googl" + "e/cloud/aiplatform/v1/accelerator_type.p" - + "roto\0325google/cloud/aiplatform/v1/reservation_affinity.proto\"\201\002\n" + + "roto\0325google/cloud/aiplatform/v1/reservation_affinity.proto\"\245\002\n" + "\013MachineSpec\022\031\n" + "\014machine_type\030\001 \001(\tB\003\340A\005\022J\n" + "\020accelerator_type\030\002" + " \001(\0162+.google.cloud.aiplatform.v1.AcceleratorTypeB\003\340A\005\022\031\n" - + "\021accelerator_count\030\003 \001(\005\022\031\n" + + "\021accelerator_count\030\003 \001(\005\022\"\n" + + "\022gpu_partition_size\030\007 \001(\tB\006\340A\005\340A\001\022\031\n" + "\014tpu_topology\030\004 \001(\tB\003\340A\005\022U\n" - + "\024reservation_affinity\030\005 \001(\0132/.google.cloud.ai" - + "platform.v1.ReservationAffinityB\006\340A\005\340A\001\"\260\002\n" + + "\024reservation_affinity\030\005" + + " \001(\0132/.google.cloud.aiplatform.v1.ReservationAffinityB\006\340A\005\340A\001\"\260\002\n" + "\022DedicatedResources\022E\n" - + "\014machine_spec\030\001" - + " \001(\0132\'.google.cloud.aiplatform.v1.MachineSpecB\006\340A\002\340A\005\022!\n" + + "\014machine_spec\030\001 \001(\013" + + "2\'.google.cloud.aiplatform.v1.MachineSpecB\006\340A\002\340A\005\022!\n" + "\021min_replica_count\030\002 \001(\005B\006\340A\002\340A\005\022\036\n" + "\021max_replica_count\030\003 \001(\005B\003\340A\005\022#\n" + "\026required_replica_count\030\t \001(\005B\003\340A\001\022X\n" - + "\030autoscaling_metric_specs\030\004 \003(\01321.google" - + ".cloud.aiplatform.v1.AutoscalingMetricSpecB\003\340A\005\022\021\n" + + "\030autoscaling_metric_specs\030\004 \003(\01321.google.clo" + + "ud.aiplatform.v1.AutoscalingMetricSpecB\003\340A\005\022\021\n" + "\004spot\030\005 \001(\010B\003\340A\001\"T\n" + "\022AutomaticResources\022\036\n" + "\021min_replica_count\030\001 \001(\005B\003\340A\005\022\036\n" + "\021max_replica_count\030\002 \001(\005B\003\340A\005\"\245\001\n" + "\027BatchDedicatedResources\022E\n" - + "\014machine_spec\030\001 \001" - + "(\0132\'.google.cloud.aiplatform.v1.MachineSpecB\006\340A\002\340A\005\022#\n" + + "\014machine_spec\030\001 \001(\0132\'" + + ".google.cloud.aiplatform.v1.MachineSpecB\006\340A\002\340A\005\022#\n" + "\026starting_replica_count\030\002 \001(\005B\003\340A\005\022\036\n" + "\021max_replica_count\030\003 \001(\005B\003\340A\005\"/\n" + "\021ResourcesConsumed\022\032\n\r" @@ -118,17 +123,21 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\010NfsMount\022\023\n" + "\006server\030\001 \001(\tB\003\340A\002\022\021\n" + "\004path\030\002 \001(\tB\003\340A\002\022\030\n" - + "\013mount_point\030\003 \001(\tB\003\340A\002\"A\n" + + "\013mount_point\030\003 \001(\tB\003\340A\002\"v\n" + + "\013LustreMount\022\030\n" + + "\013instance_ip\030\001 \001(\tB\003\340A\002\022\032\n\r" + + "volume_handle\030\002 \001(\tB\003\340A\002\022\027\n\n" + + "filesystem\030\003 \001(\tB\003\340A\002\022\030\n" + + "\013mount_point\030\004 \001(\tB\003\340A\002\"A\n" + "\025AutoscalingMetricSpec\022\030\n" + "\013metric_name\030\001 \001(\tB\003\340A\002\022\016\n" + "\006target\030\002 \001(\005\".\n" + "\020ShieldedVmConfig\022\032\n" + "\022enable_secure_boot\030\001 \001(\010B\323\001\n" - + "\036com.google.cloud.aiplatform.v1B\025MachineResourcesProtoP\001Z>cloud.goog" - + "le.com/go/aiplatform/apiv1/aiplatformpb;" - + "aiplatformpb\252\002\032Google.Cloud.AIPlatform.V" - + "1\312\002\032Google\\Cloud\\AIPlatform\\V1\352\002\035Google:" - + ":Cloud::AIPlatform::V1b\006proto3" + + "\036com.google.cloud.aiplatform.v1B\025MachineResourcesProtoP\001Z>cloud.google.c" + + "om/go/aiplatform/apiv1/aiplatformpb;aipl" + + "atformpb\252\002\032Google.Cloud.AIPlatform.V1\312\002\032" + + "Google\\Cloud\\AIPlatform\\V1\352\002\035Google::Cloud::AIPlatform::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -147,6 +156,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MachineType", "AcceleratorType", "AcceleratorCount", + "GpuPartitionSize", "TpuTopology", "ReservationAffinity", }); @@ -211,8 +221,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "Server", "Path", "MountPoint", }); - internal_static_google_cloud_aiplatform_v1_AutoscalingMetricSpec_descriptor = + internal_static_google_cloud_aiplatform_v1_LustreMount_descriptor = getDescriptor().getMessageTypes().get(8); + internal_static_google_cloud_aiplatform_v1_LustreMount_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1_LustreMount_descriptor, + new java.lang.String[] { + "InstanceIp", "VolumeHandle", "Filesystem", "MountPoint", + }); + internal_static_google_cloud_aiplatform_v1_AutoscalingMetricSpec_descriptor = + getDescriptor().getMessageTypes().get(9); internal_static_google_cloud_aiplatform_v1_AutoscalingMetricSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_AutoscalingMetricSpec_descriptor, @@ -220,7 +238,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MetricName", "Target", }); internal_static_google_cloud_aiplatform_v1_ShieldedVmConfig_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(10); internal_static_google_cloud_aiplatform_v1_ShieldedVmConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_ShieldedVmConfig_descriptor, diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpec.java index f4737e845e7a..e4370d2aafef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -42,6 +42,7 @@ private MachineSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) { private MachineSpec() { machineType_ = ""; acceleratorType_ = 0; + gpuPartitionSize_ = ""; tpuTopology_ = ""; } @@ -208,6 +209,89 @@ public int getAcceleratorCount() { return acceleratorCount_; } + public static final int GPU_PARTITION_SIZE_FIELD_NUMBER = 7; + + @SuppressWarnings("serial") + private volatile java.lang.Object gpuPartitionSize_ = ""; + + /** + * + * + *
+   * Optional. Immutable. The Nvidia GPU partition size.
+   *
+   * When specified, the requested accelerators will be partitioned into
+   * smaller GPU partitions. For example, if the request is for 8 units of
+   * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+   * create 8 * 7 = 56 partitioned MIG instances.
+   *
+   * The partition size must be a value supported by the requested accelerator.
+   * Refer to
+   * [Nvidia GPU
+   * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+   * for the available partition sizes.
+   *
+   * If set, the accelerator_count should be set to 1.
+   * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The gpuPartitionSize. + */ + @java.lang.Override + public java.lang.String getGpuPartitionSize() { + java.lang.Object ref = gpuPartitionSize_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + gpuPartitionSize_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. Immutable. The Nvidia GPU partition size.
+   *
+   * When specified, the requested accelerators will be partitioned into
+   * smaller GPU partitions. For example, if the request is for 8 units of
+   * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+   * create 8 * 7 = 56 partitioned MIG instances.
+   *
+   * The partition size must be a value supported by the requested accelerator.
+   * Refer to
+   * [Nvidia GPU
+   * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+   * for the available partition sizes.
+   *
+   * If set, the accelerator_count should be set to 1.
+   * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The bytes for gpuPartitionSize. + */ + @java.lang.Override + public com.google.protobuf.ByteString getGpuPartitionSizeBytes() { + java.lang.Object ref = gpuPartitionSize_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + gpuPartitionSize_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + public static final int TPU_TOPOLOGY_FIELD_NUMBER = 4; @SuppressWarnings("serial") @@ -357,6 +441,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(5, getReservationAffinity()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gpuPartitionSize_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, gpuPartitionSize_); + } getUnknownFields().writeTo(output); } @@ -383,6 +470,9 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getReservationAffinity()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gpuPartitionSize_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, gpuPartitionSize_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -402,6 +492,7 @@ public boolean equals(final java.lang.Object obj) { if (!getMachineType().equals(other.getMachineType())) return false; if (acceleratorType_ != other.acceleratorType_) return false; if (getAcceleratorCount() != other.getAcceleratorCount()) return false; + if (!getGpuPartitionSize().equals(other.getGpuPartitionSize())) return false; if (!getTpuTopology().equals(other.getTpuTopology())) return false; if (hasReservationAffinity() != other.hasReservationAffinity()) return false; if (hasReservationAffinity()) { @@ -424,6 +515,8 @@ public int hashCode() { hash = (53 * hash) + acceleratorType_; hash = (37 * hash) + ACCELERATOR_COUNT_FIELD_NUMBER; hash = (53 * hash) + getAcceleratorCount(); + hash = (37 * hash) + GPU_PARTITION_SIZE_FIELD_NUMBER; + hash = (53 * hash) + getGpuPartitionSize().hashCode(); hash = (37 * hash) + TPU_TOPOLOGY_FIELD_NUMBER; hash = (53 * hash) + getTpuTopology().hashCode(); if (hasReservationAffinity()) { @@ -582,6 +675,7 @@ public Builder clear() { machineType_ = ""; acceleratorType_ = 0; acceleratorCount_ = 0; + gpuPartitionSize_ = ""; tpuTopology_ = ""; reservationAffinity_ = null; if (reservationAffinityBuilder_ != null) { @@ -634,10 +728,13 @@ private void buildPartial0(com.google.cloud.aiplatform.v1.MachineSpec result) { result.acceleratorCount_ = acceleratorCount_; } if (((from_bitField0_ & 0x00000008) != 0)) { + result.gpuPartitionSize_ = gpuPartitionSize_; + } + if (((from_bitField0_ & 0x00000010) != 0)) { result.tpuTopology_ = tpuTopology_; } int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000010) != 0)) { + if (((from_bitField0_ & 0x00000020) != 0)) { result.reservationAffinity_ = reservationAffinityBuilder_ == null ? reservationAffinity_ @@ -703,9 +800,14 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1.MachineSpec other) { if (other.getAcceleratorCount() != 0) { setAcceleratorCount(other.getAcceleratorCount()); } + if (!other.getGpuPartitionSize().isEmpty()) { + gpuPartitionSize_ = other.gpuPartitionSize_; + bitField0_ |= 0x00000008; + onChanged(); + } if (!other.getTpuTopology().isEmpty()) { tpuTopology_ = other.tpuTopology_; - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; onChanged(); } if (other.hasReservationAffinity()) { @@ -758,16 +860,22 @@ public Builder mergeFrom( case 34: { tpuTopology_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; break; } // case 34 case 42: { input.readMessage( getReservationAffinityFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; break; } // case 42 + case 58: + { + gpuPartitionSize_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 58 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -1129,6 +1237,192 @@ public Builder clearAcceleratorCount() { return this; } + private java.lang.Object gpuPartitionSize_ = ""; + + /** + * + * + *
+     * Optional. Immutable. The Nvidia GPU partition size.
+     *
+     * When specified, the requested accelerators will be partitioned into
+     * smaller GPU partitions. For example, if the request is for 8 units of
+     * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+     * create 8 * 7 = 56 partitioned MIG instances.
+     *
+     * The partition size must be a value supported by the requested accelerator.
+     * Refer to
+     * [Nvidia GPU
+     * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+     * for the available partition sizes.
+     *
+     * If set, the accelerator_count should be set to 1.
+     * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The gpuPartitionSize. + */ + public java.lang.String getGpuPartitionSize() { + java.lang.Object ref = gpuPartitionSize_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + gpuPartitionSize_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. Immutable. The Nvidia GPU partition size.
+     *
+     * When specified, the requested accelerators will be partitioned into
+     * smaller GPU partitions. For example, if the request is for 8 units of
+     * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+     * create 8 * 7 = 56 partitioned MIG instances.
+     *
+     * The partition size must be a value supported by the requested accelerator.
+     * Refer to
+     * [Nvidia GPU
+     * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+     * for the available partition sizes.
+     *
+     * If set, the accelerator_count should be set to 1.
+     * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The bytes for gpuPartitionSize. + */ + public com.google.protobuf.ByteString getGpuPartitionSizeBytes() { + java.lang.Object ref = gpuPartitionSize_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + gpuPartitionSize_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. Immutable. The Nvidia GPU partition size.
+     *
+     * When specified, the requested accelerators will be partitioned into
+     * smaller GPU partitions. For example, if the request is for 8 units of
+     * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+     * create 8 * 7 = 56 partitioned MIG instances.
+     *
+     * The partition size must be a value supported by the requested accelerator.
+     * Refer to
+     * [Nvidia GPU
+     * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+     * for the available partition sizes.
+     *
+     * If set, the accelerator_count should be set to 1.
+     * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The gpuPartitionSize to set. + * @return This builder for chaining. + */ + public Builder setGpuPartitionSize(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + gpuPartitionSize_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Immutable. The Nvidia GPU partition size.
+     *
+     * When specified, the requested accelerators will be partitioned into
+     * smaller GPU partitions. For example, if the request is for 8 units of
+     * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+     * create 8 * 7 = 56 partitioned MIG instances.
+     *
+     * The partition size must be a value supported by the requested accelerator.
+     * Refer to
+     * [Nvidia GPU
+     * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+     * for the available partition sizes.
+     *
+     * If set, the accelerator_count should be set to 1.
+     * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return This builder for chaining. + */ + public Builder clearGpuPartitionSize() { + gpuPartitionSize_ = getDefaultInstance().getGpuPartitionSize(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Immutable. The Nvidia GPU partition size.
+     *
+     * When specified, the requested accelerators will be partitioned into
+     * smaller GPU partitions. For example, if the request is for 8 units of
+     * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+     * create 8 * 7 = 56 partitioned MIG instances.
+     *
+     * The partition size must be a value supported by the requested accelerator.
+     * Refer to
+     * [Nvidia GPU
+     * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+     * for the available partition sizes.
+     *
+     * If set, the accelerator_count should be set to 1.
+     * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The bytes for gpuPartitionSize to set. + * @return This builder for chaining. + */ + public Builder setGpuPartitionSizeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + gpuPartitionSize_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + private java.lang.Object tpuTopology_ = ""; /** @@ -1197,7 +1491,7 @@ public Builder setTpuTopology(java.lang.String value) { throw new NullPointerException(); } tpuTopology_ = value; - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; onChanged(); return this; } @@ -1216,7 +1510,7 @@ public Builder setTpuTopology(java.lang.String value) { */ public Builder clearTpuTopology() { tpuTopology_ = getDefaultInstance().getTpuTopology(); - bitField0_ = (bitField0_ & ~0x00000008); + bitField0_ = (bitField0_ & ~0x00000010); onChanged(); return this; } @@ -1240,7 +1534,7 @@ public Builder setTpuTopologyBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); tpuTopology_ = value; - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; onChanged(); return this; } @@ -1267,7 +1561,7 @@ public Builder setTpuTopologyBytes(com.google.protobuf.ByteString value) { * @return Whether the reservationAffinity field is set. */ public boolean hasReservationAffinity() { - return ((bitField0_ & 0x00000010) != 0); + return ((bitField0_ & 0x00000020) != 0); } /** @@ -1316,7 +1610,7 @@ public Builder setReservationAffinity( } else { reservationAffinityBuilder_.setMessage(value); } - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); return this; } @@ -1340,7 +1634,7 @@ public Builder setReservationAffinity( } else { reservationAffinityBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); return this; } @@ -1360,7 +1654,7 @@ public Builder setReservationAffinity( public Builder mergeReservationAffinity( com.google.cloud.aiplatform.v1.ReservationAffinity value) { if (reservationAffinityBuilder_ == null) { - if (((bitField0_ & 0x00000010) != 0) + if (((bitField0_ & 0x00000020) != 0) && reservationAffinity_ != null && reservationAffinity_ != com.google.cloud.aiplatform.v1.ReservationAffinity.getDefaultInstance()) { @@ -1372,7 +1666,7 @@ public Builder mergeReservationAffinity( reservationAffinityBuilder_.mergeFrom(value); } if (reservationAffinity_ != null) { - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); } return this; @@ -1391,7 +1685,7 @@ public Builder mergeReservationAffinity( * */ public Builder clearReservationAffinity() { - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); reservationAffinity_ = null; if (reservationAffinityBuilder_ != null) { reservationAffinityBuilder_.dispose(); @@ -1415,7 +1709,7 @@ public Builder clearReservationAffinity() { */ public com.google.cloud.aiplatform.v1.ReservationAffinity.Builder getReservationAffinityBuilder() { - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); return getReservationAffinityFieldBuilder().getBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpecOrBuilder.java index 00ef2f91247e..aa9a39b01f2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MachineSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -121,6 +121,62 @@ public interface MachineSpecOrBuilder */ int getAcceleratorCount(); + /** + * + * + *
+   * Optional. Immutable. The Nvidia GPU partition size.
+   *
+   * When specified, the requested accelerators will be partitioned into
+   * smaller GPU partitions. For example, if the request is for 8 units of
+   * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+   * create 8 * 7 = 56 partitioned MIG instances.
+   *
+   * The partition size must be a value supported by the requested accelerator.
+   * Refer to
+   * [Nvidia GPU
+   * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+   * for the available partition sizes.
+   *
+   * If set, the accelerator_count should be set to 1.
+   * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The gpuPartitionSize. + */ + java.lang.String getGpuPartitionSize(); + + /** + * + * + *
+   * Optional. Immutable. The Nvidia GPU partition size.
+   *
+   * When specified, the requested accelerators will be partitioned into
+   * smaller GPU partitions. For example, if the request is for 8 units of
+   * NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will
+   * create 8 * 7 = 56 partitioned MIG instances.
+   *
+   * The partition size must be a value supported by the requested accelerator.
+   * Refer to
+   * [Nvidia GPU
+   * Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions)
+   * for the available partition sizes.
+   *
+   * If set, the accelerator_count should be set to 1.
+   * 
+ * + * + * string gpu_partition_size = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The bytes for gpuPartitionSize. + */ + com.google.protobuf.ByteString getGpuPartitionSizeBytes(); + /** * * diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParameters.java index 94aca1fcc17f..440c02fb4977 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersOrBuilder.java index 6d2f9b6896a7..8a200e00711e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersProto.java index 08d2daf70d6e..4d10aae060ad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ManualBatchTuningParametersProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceProto.java index 09a3f4107128..fa9eacc43ac1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MatchServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Measurement.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Measurement.java index 466235aa9896..196930784fd6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Measurement.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Measurement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MeasurementOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MeasurementOrBuilder.java index 844bfa1f8e1e..25fe45d2da8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MeasurementOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MeasurementOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequest.java index acf2f4274a94..d0aa0e8dfa9b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequestOrBuilder.java index 62dafe4265dc..15ecef306b44 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MergeVersionAliasesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataProto.java index a4dea3d4289b..1d1470bf99e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchema.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchema.java index 6aefb6a226fd..ee519d17df24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchema.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaName.java index 0ddf1175229f..fe0ad0166c60 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaOrBuilder.java index 887a45eab007..50e84077b636 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaProto.java index 8332d3645d6b..e3150017f60a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataSchemaProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceProto.java index e163a4f32dd7..2811b58b512a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStore.java index 971fa66555d5..57927db7aebd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreName.java index 0e85799dbf3e..cdd7c48d63a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreOrBuilder.java index e646777879e0..9c6cfe96b3c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetadataStoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInput.java index b7e6eb504a05..a718f3064214 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInputOrBuilder.java index 7c63f50c638f..581d6ffae1c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstance.java index c76c4791b25a..0d07f64956cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstanceOrBuilder.java index 1dab34e25ac1..5d5dca877645 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResult.java index 80086d301319..f79114d1462b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResultOrBuilder.java index af9fbc17ece7..3b427aaf12a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpec.java index b4125d69c36b..60391cd13735 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpecOrBuilder.java index 8f696e01a89a..4360581ea8ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MetricxSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResource.java index dbf4143e17d1..81420fb4683b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceOrBuilder.java index 704abba339b9..08b9cebfef09 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceProto.java index 0d11df1f0bdd..489b80ead4c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigratableResourceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequest.java index 1ff381347887..89cdd4d3f6f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequestOrBuilder.java index e761008c36b6..b5c1f14d709c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponse.java index c2e3fa947826..6e99a62a4fd9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponseOrBuilder.java index 4c56f70937e4..a9dca9d83b81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrateResourceResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceProto.java index 857412540194..5936332f407f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MigrationServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Modality.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Modality.java index 6677aec990a0..7709e5de5a75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Modality.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Modality.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCount.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCount.java index cb7541e06183..0d3db8fa3c4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCount.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCountOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCountOrBuilder.java index 84b8ab914ba6..cf4ea6691059 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCountOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModalityTokenCountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Model.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Model.java index f7490529e2b9..b9c819ec1d69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Model.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Model.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfig.java index 66d7dbd6d374..88189c33cfba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfigOrBuilder.java index f19c85b48a67..688ce7b29244 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelArmorConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpec.java index efe46daa33d5..a7319138ba72 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpecOrBuilder.java index c37147c66a80..0a8a18b726cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelContainerSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTable.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTable.java index 12906e81bf50..77d942992e78 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTable.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java index f8a42a89d462..28d5c8e4568b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJob.java index b8bf74791c9e..bad011c2c712 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobName.java index 81db628e2b94..f078a7da15c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobOrBuilder.java index 3a0df6020b93..f645e9ec551d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobProto.java index 84dc15e3fe06..766de948929f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfig.java index a2159c83628c..81813a0af379 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java index 7d3fc761a7c4..04946250ad48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveType.java index 3ad678771ffb..8f6ac14a612e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringObjectiveType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfig.java index 3aa2dcfe29b9..4b8cf21cd34e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java index 49d3a815a636..905e22a0942e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluation.java index f7be355aaa9e..683520a8a64d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationName.java index b216aa8bd37a..5cb5d0c5f97f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationOrBuilder.java index 25e0e7d2e87f..3512b4a41dfc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationProto.java index ab8d3c0a656a..c337358afd39 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSlice.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSlice.java index 5ebd0aafa7e9..abab69e2f47a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSlice.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSlice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceName.java index d7ad7d7f5f05..c7fda35c8e8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceOrBuilder.java index c210201868ba..dab4e5b97f79 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceProto.java index 9200cb76666f..0cfa4a4eea2c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelEvaluationSliceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanation.java index 9a0558cae042..a3c16eb9cfc8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanationOrBuilder.java index 14b1b4e76b66..916475513b87 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelExplanationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceProto.java index 59ff234a767b..1a8bca3bfe7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSource.java index ba7fd4288508..5b731ae7c5e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSourceOrBuilder.java index ca4917ea5021..095326ac8c71 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelGardenSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfig.java index b112e48c5058..52b2d82c30e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfigOrBuilder.java index 612c72d03adf..6e2f8d11544a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringAlertConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfig.java index 2243e4f6b7c9..c07bd39f4658 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfigOrBuilder.java index bec002b07fd4..198278f5cc6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringObjectiveConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringProto.java index e55411a5d678..c5afa6a4664b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomalies.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomalies.java index a75efbd63245..a8f54b25e4d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomalies.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomalies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomaliesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomaliesOrBuilder.java index 0ed66a3d2d6a..0aee6b4ce96a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomaliesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelMonitoringStatsAnomaliesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelName.java index aee60033ace0..d0b77d3e509b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelOrBuilder.java index 8172db5d788f..5c825d948b2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelProto.java index 45990c0ee1a8..3d596132fd3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceProto.java index ba36592c7fb4..524d81ede4b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfo.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfo.java index dcf99ec34c78..9cbeaa9f166f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfo.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfoOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfoOrBuilder.java index 02c2abbb6feb..2cae8a8314b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfoOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelSourceInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpoint.java index 169bc58abcb7..bde75307b9aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpointOrBuilder.java index 831dc4a8ba56..213750fb1ffd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ModelVersionCheckpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MultiSpeakerVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MultiSpeakerVoiceConfig.java new file mode 100644 index 000000000000..cb8dd4a18dec --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MultiSpeakerVoiceConfig.java @@ -0,0 +1,1048 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Configuration for a multi-speaker text-to-speech request.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig} + */ +public final class MultiSpeakerVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) + MultiSpeakerVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use MultiSpeakerVoiceConfig.newBuilder() to construct. + private MultiSpeakerVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private MultiSpeakerVoiceConfig() { + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new MultiSpeakerVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder.class); + } + + public static final int SPEAKER_VOICE_CONFIGS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private java.util.List speakerVoiceConfigs_; + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getSpeakerVoiceConfigsList() { + return speakerVoiceConfigs_; + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getSpeakerVoiceConfigsOrBuilderList() { + return speakerVoiceConfigs_; + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public int getSpeakerVoiceConfigsCount() { + return speakerVoiceConfigs_.size(); + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig getSpeakerVoiceConfigs(int index) { + return speakerVoiceConfigs_.get(index); + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder getSpeakerVoiceConfigsOrBuilder( + int index) { + return speakerVoiceConfigs_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < speakerVoiceConfigs_.size(); i++) { + output.writeMessage(2, speakerVoiceConfigs_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < speakerVoiceConfigs_.size(); i++) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(2, speakerVoiceConfigs_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig other = + (com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) obj; + + if (!getSpeakerVoiceConfigsList().equals(other.getSpeakerVoiceConfigsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getSpeakerVoiceConfigsCount() > 0) { + hash = (37 * hash) + SPEAKER_VOICE_CONFIGS_FIELD_NUMBER; + hash = (53 * hash) + getSpeakerVoiceConfigsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for a multi-speaker text-to-speech request.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (speakerVoiceConfigsBuilder_ == null) { + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + } else { + speakerVoiceConfigs_ = null; + speakerVoiceConfigsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_MultiSpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig build() { + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig result = + new com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig result) { + if (speakerVoiceConfigsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + speakerVoiceConfigs_ = java.util.Collections.unmodifiableList(speakerVoiceConfigs_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.speakerVoiceConfigs_ = speakerVoiceConfigs_; + } else { + result.speakerVoiceConfigs_ = speakerVoiceConfigsBuilder_.build(); + } + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance()) + return this; + if (speakerVoiceConfigsBuilder_ == null) { + if (!other.speakerVoiceConfigs_.isEmpty()) { + if (speakerVoiceConfigs_.isEmpty()) { + speakerVoiceConfigs_ = other.speakerVoiceConfigs_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.addAll(other.speakerVoiceConfigs_); + } + onChanged(); + } + } else { + if (!other.speakerVoiceConfigs_.isEmpty()) { + if (speakerVoiceConfigsBuilder_.isEmpty()) { + speakerVoiceConfigsBuilder_.dispose(); + speakerVoiceConfigsBuilder_ = null; + speakerVoiceConfigs_ = other.speakerVoiceConfigs_; + bitField0_ = (bitField0_ & ~0x00000001); + speakerVoiceConfigsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getSpeakerVoiceConfigsFieldBuilder() + : null; + } else { + speakerVoiceConfigsBuilder_.addAllMessages(other.speakerVoiceConfigs_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 18: + { + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig m = + input.readMessage( + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.parser(), + extensionRegistry); + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(m); + } else { + speakerVoiceConfigsBuilder_.addMessage(m); + } + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List speakerVoiceConfigs_ = + java.util.Collections.emptyList(); + + private void ensureSpeakerVoiceConfigsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + speakerVoiceConfigs_ = + new java.util.ArrayList( + speakerVoiceConfigs_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder> + speakerVoiceConfigsBuilder_; + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getSpeakerVoiceConfigsList() { + if (speakerVoiceConfigsBuilder_ == null) { + return java.util.Collections.unmodifiableList(speakerVoiceConfigs_); + } else { + return speakerVoiceConfigsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public int getSpeakerVoiceConfigsCount() { + if (speakerVoiceConfigsBuilder_ == null) { + return speakerVoiceConfigs_.size(); + } else { + return speakerVoiceConfigsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig getSpeakerVoiceConfigs(int index) { + if (speakerVoiceConfigsBuilder_ == null) { + return speakerVoiceConfigs_.get(index); + } else { + return speakerVoiceConfigsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1.SpeakerVoiceConfig value) { + if (speakerVoiceConfigsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.set(index, value); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder builderForValue) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.set(index, builderForValue.build()); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs(com.google.cloud.aiplatform.v1.SpeakerVoiceConfig value) { + if (speakerVoiceConfigsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(value); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1.SpeakerVoiceConfig value) { + if (speakerVoiceConfigsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(index, value); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder builderForValue) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(builderForValue.build()); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder builderForValue) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(index, builderForValue.build()); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addAllSpeakerVoiceConfigs( + java.lang.Iterable values) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, speakerVoiceConfigs_); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearSpeakerVoiceConfigs() { + if (speakerVoiceConfigsBuilder_ == null) { + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder removeSpeakerVoiceConfigs(int index) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.remove(index); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder getSpeakerVoiceConfigsBuilder( + int index) { + return getSpeakerVoiceConfigsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder + getSpeakerVoiceConfigsOrBuilder(int index) { + if (speakerVoiceConfigsBuilder_ == null) { + return speakerVoiceConfigs_.get(index); + } else { + return speakerVoiceConfigsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getSpeakerVoiceConfigsOrBuilderList() { + if (speakerVoiceConfigsBuilder_ != null) { + return speakerVoiceConfigsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(speakerVoiceConfigs_); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder + addSpeakerVoiceConfigsBuilder() { + return getSpeakerVoiceConfigsFieldBuilder() + .addBuilder(com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder addSpeakerVoiceConfigsBuilder( + int index) { + return getSpeakerVoiceConfigsFieldBuilder() + .addBuilder( + index, com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getSpeakerVoiceConfigsBuilderList() { + return getSpeakerVoiceConfigsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder> + getSpeakerVoiceConfigsFieldBuilder() { + if (speakerVoiceConfigsBuilder_ == null) { + speakerVoiceConfigsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder>( + speakerVoiceConfigs_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + speakerVoiceConfigs_ = null; + } + return speakerVoiceConfigsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) + private static final com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public MultiSpeakerVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MultiSpeakerVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MultiSpeakerVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..2a8a64907fa2 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MultiSpeakerVoiceConfigOrBuilder.java @@ -0,0 +1,98 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface MultiSpeakerVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List getSpeakerVoiceConfigsList(); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig getSpeakerVoiceConfigs(int index); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + int getSpeakerVoiceConfigsCount(); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getSpeakerVoiceConfigsOrBuilderList(); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder getSpeakerVoiceConfigsOrBuilder( + int index); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadata.java index c37b0ec63323..0ef60e90e694 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadataOrBuilder.java index e13c8d955d26..ee49b1f8ceab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequest.java index a7aca917642d..2c3ac499e51a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequestOrBuilder.java index 32bf5af913de..2ee3b88a8611 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponse.java index 9efba6a1719a..a5b09439a3ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponseOrBuilder.java index 72710e673b70..38699ee8aa7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedIndexResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadata.java index 001c0e9f8350..0c667287fd00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadataOrBuilder.java index 1af25c7ccde0..88d252c6542c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequest.java index 7a64e78dd3aa..8b6af9792095 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequestOrBuilder.java index 5f1cba850811..e7e0ff831671 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponse.java index 7f12044723a6..5744bcf9c9b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponseOrBuilder.java index fcf121b0c564..5f0d3d2f09f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/MutateDeployedModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJob.java index a46e993c2815..d7f6d6312024 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobName.java index 9dd9336ef5d1..84f30b4e8b9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOrBuilder.java index 78d12fb498b3..a5c7b22ae844 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutput.java index 340e68baa768..e6e34a6042ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutputOrBuilder.java index 179a8d3460ee..dd3449dbb8e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobOutputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobProto.java index 3245d6c51293..aec44f894013 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpec.java index c2be29e53480..2f5ca7014200 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpecOrBuilder.java index 334ec558e2f8..ed0723dcd126 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasJobSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrial.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrial.java index fc147608500e..347e5188a760 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrial.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetail.java index 619803e5299c..9d224a31cd3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailName.java index 4d4b7499f10f..e8aa3bfd60d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailOrBuilder.java index 95780cc88f33..84c5106c6ef4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialOrBuilder.java index 8b131ab1123c..df9cd8a7e60e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NasTrialOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQuery.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQuery.java index ea670b75f50a..a508df07664b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQuery.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQueryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQueryOrBuilder.java index 5d559586033e..49f7308a1408 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQueryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadata.java index 9bf1ff4d5a28..9df5419db562 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadataOrBuilder.java index 35c32bf7cb70..dd87422a2e4c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborSearchOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighbors.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighbors.java index 31585dbd7c0e..adbcf5b060b6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighbors.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborsOrBuilder.java index 54c5728d4884..9c532b94e35b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NearestNeighborsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Neighbor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Neighbor.java index ec559f6d3154..25181845630d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Neighbor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Neighbor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NeighborOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NeighborOrBuilder.java index d1d619853423..cd6291e098a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NeighborOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NeighborOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpec.java index 6655859d1e3d..8edaf5142e6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecOrBuilder.java index 0e9f0237e479..d8c03a94575a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecProto.java index bf09e8d36b0f..94bb95482872 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NetworkSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMount.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMount.java index 24d8248c2878..b6c042928bd4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMount.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMountOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMountOrBuilder.java index d673569ee089..0a42a668d796 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMountOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NfsMountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfig.java index 5684cdf39ef9..bf9f9cd728d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigOrBuilder.java index 720e2fc3ec7c..969df60034d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigProto.java index ce873390b69a..f6f70b970879 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookEucConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJob.java index 7b4be758d478..ba9d28b7a67e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobName.java index 8ae3425ae0fd..b244e5eee858 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobOrBuilder.java index 0916c12e329a..8e0b2d8adeb9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobProto.java index 660a8f12b8fc..af6aa1bd7be6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobView.java index 8676296540cc..032de1afc57b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookExecutionJobView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfig.java index dfae91cf5864..5bc25acbac48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigOrBuilder.java index e21deec1795c..466fffe251ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigProto.java index facff5757031..681c798cc485 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookIdleShutdownConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntime.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntime.java index 42a1fc69bda6..dc8422ef001b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntime.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeName.java index aefb9c7bcceb..041007fe6f53 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeOrBuilder.java index 3937cef99914..6fa938f7dd23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeProto.java index 233564c05061..369b5214220b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplate.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplate.java index 2a6c2069897c..2d0ef6463d8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplate.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateName.java index 9df9a8751f66..c34c6336b0cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateOrBuilder.java index 468e218317b2..c2861ba1d54b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRef.java index ec79ff49a226..2b1e8da4a638 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefOrBuilder.java index 0fcc8247ab32..eca3b698e094 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefProto.java index f36b9ead58d2..464278a54c22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeTemplateRefProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeType.java index 61f8e04a0123..5061699a9eb3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookRuntimeType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceProto.java index a14c0f50c522..17d97787205f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfig.java index 5dd814525509..b0152f41311f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigOrBuilder.java index 6ad5e3d082e6..da884389a1fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigProto.java index 7dbd2187aa20..cca046de52ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/NotebookSoftwareConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OpenApiProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OpenApiProto.java index a39daf0a2690..907664670196 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OpenApiProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OpenApiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OperationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OperationProto.java index 8d3fc3040df5..0698f9f56cfe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OperationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OperationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpec.java index cb338e3cde83..f25ad6c61a1d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpecOrBuilder.java index ec559377c971..54d8b455e38d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/OutputFieldSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfig.java index a71b71454a21..32169ada4a04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfigOrBuilder.java index ccf771db32a7..171789766791 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationState.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationState.java index f1cd2398a4d1..5fd9c442f019 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationState.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PSCAutomationState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseChoice.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseChoice.java index 10ee2010a01a..92ebc4eae54d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseChoice.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseChoice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInput.java index 183045218d93..2aa8a24d1708 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInputOrBuilder.java index 55cfb0bf7bee..0c2ea3430fc6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstance.java index b745c7903fa1..d90b8997b487 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstanceOrBuilder.java index 3952424eec6e..c3947135766a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResult.java index 379dd323e4a5..a1527c7d31ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResultOrBuilder.java index a9bc5e9363b7..8ed898522646 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpec.java index 9c94a13cf569..ca6c613144d4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpecOrBuilder.java index 072f002ff4ad..9e415a50a027 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInput.java index ac2385c7d166..31066c891cc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInputOrBuilder.java index 4e6b8fff50bf..4315fc3eb94d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstance.java index 300a6cbe5914..7919264f0735 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java index 506aa3cb6056..3d9fdf1cb87a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResult.java index 7d70bfe3fc62..cb878c00c894 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResultOrBuilder.java index f12df5e43bb4..5ca2bc5bc96c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpec.java index 262dd8186a03..564ddd9d62af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java index d7607a45da29..956dbfd84a5e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInput.java index 984820e42d7a..7b170dc47501 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInputOrBuilder.java index 4787f6c6c071..279d2d1d2a92 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstance.java index 0c358c0d1a49..73056a5ea5d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstanceOrBuilder.java index ce3791bd980d..fca88642f09b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResult.java index ef415272f799..3c616bfb8472 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResultOrBuilder.java index 89ea1be73886..05f57e0450d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpec.java index d91d0cc7dc35..1a442e4a34e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpecOrBuilder.java index 79f16b0aa082..604d7aec3fb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PairwiseSummarizationQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Part.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Part.java index 2a3b3b0ddab3..f8dd65eb8a53 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Part.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Part.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartOrBuilder.java index 414cb298d335..5c822d31b774 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartialArg.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartialArg.java new file mode 100644 index 000000000000..55bec8db89b8 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartialArg.java @@ -0,0 +1,1560 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/tool.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Partial argument value of the function call.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.PartialArg} + */ +public final class PartialArg extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.PartialArg) + PartialArgOrBuilder { + private static final long serialVersionUID = 0L; + + // Use PartialArg.newBuilder() to construct. + private PartialArg(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private PartialArg() { + jsonPath_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new PartialArg(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ToolProto + .internal_static_google_cloud_aiplatform_v1_PartialArg_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ToolProto + .internal_static_google_cloud_aiplatform_v1_PartialArg_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.PartialArg.class, + com.google.cloud.aiplatform.v1.PartialArg.Builder.class); + } + + private int deltaCase_ = 0; + + @SuppressWarnings("serial") + private java.lang.Object delta_; + + public enum DeltaCase + implements + com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + NULL_VALUE(2), + NUMBER_VALUE(3), + STRING_VALUE(4), + BOOL_VALUE(5), + DELTA_NOT_SET(0); + private final int value; + + private DeltaCase(int value) { + this.value = value; + } + + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static DeltaCase valueOf(int value) { + return forNumber(value); + } + + public static DeltaCase forNumber(int value) { + switch (value) { + case 2: + return NULL_VALUE; + case 3: + return NUMBER_VALUE; + case 4: + return STRING_VALUE; + case 5: + return BOOL_VALUE; + case 0: + return DELTA_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public DeltaCase getDeltaCase() { + return DeltaCase.forNumber(deltaCase_); + } + + public static final int NULL_VALUE_FIELD_NUMBER = 2; + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the nullValue field is set. + */ + public boolean hasNullValue() { + return deltaCase_ == 2; + } + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The enum numeric value on the wire for nullValue. + */ + public int getNullValueValue() { + if (deltaCase_ == 2) { + return (java.lang.Integer) delta_; + } + return 0; + } + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The nullValue. + */ + public com.google.protobuf.NullValue getNullValue() { + if (deltaCase_ == 2) { + com.google.protobuf.NullValue result = + com.google.protobuf.NullValue.forNumber((java.lang.Integer) delta_); + return result == null ? com.google.protobuf.NullValue.UNRECOGNIZED : result; + } + return com.google.protobuf.NullValue.NULL_VALUE; + } + + public static final int NUMBER_VALUE_FIELD_NUMBER = 3; + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the numberValue field is set. + */ + @java.lang.Override + public boolean hasNumberValue() { + return deltaCase_ == 3; + } + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The numberValue. + */ + @java.lang.Override + public double getNumberValue() { + if (deltaCase_ == 3) { + return (java.lang.Double) delta_; + } + return 0D; + } + + public static final int STRING_VALUE_FIELD_NUMBER = 4; + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the stringValue field is set. + */ + public boolean hasStringValue() { + return deltaCase_ == 4; + } + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The stringValue. + */ + public java.lang.String getStringValue() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (deltaCase_ == 4) { + delta_ = s; + } + return s; + } + } + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for stringValue. + */ + public com.google.protobuf.ByteString getStringValueBytes() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (deltaCase_ == 4) { + delta_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int BOOL_VALUE_FIELD_NUMBER = 5; + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the boolValue field is set. + */ + @java.lang.Override + public boolean hasBoolValue() { + return deltaCase_ == 5; + } + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The boolValue. + */ + @java.lang.Override + public boolean getBoolValue() { + if (deltaCase_ == 5) { + return (java.lang.Boolean) delta_; + } + return false; + } + + public static final int JSON_PATH_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object jsonPath_ = ""; + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The jsonPath. + */ + @java.lang.Override + public java.lang.String getJsonPath() { + java.lang.Object ref = jsonPath_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + jsonPath_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for jsonPath. + */ + @java.lang.Override + public com.google.protobuf.ByteString getJsonPathBytes() { + java.lang.Object ref = jsonPath_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + jsonPath_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int WILL_CONTINUE_FIELD_NUMBER = 6; + private boolean willContinue_ = false; + + /** + * + * + *
+   * Optional. Whether this is not the last part of the same json_path.
+   * If true, another PartialArg message for the current json_path is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(jsonPath_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, jsonPath_); + } + if (deltaCase_ == 2) { + output.writeEnum(2, ((java.lang.Integer) delta_)); + } + if (deltaCase_ == 3) { + output.writeDouble(3, (double) ((java.lang.Double) delta_)); + } + if (deltaCase_ == 4) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, delta_); + } + if (deltaCase_ == 5) { + output.writeBool(5, (boolean) ((java.lang.Boolean) delta_)); + } + if (willContinue_ != false) { + output.writeBool(6, willContinue_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(jsonPath_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, jsonPath_); + } + if (deltaCase_ == 2) { + size += + com.google.protobuf.CodedOutputStream.computeEnumSize(2, ((java.lang.Integer) delta_)); + } + if (deltaCase_ == 3) { + size += + com.google.protobuf.CodedOutputStream.computeDoubleSize( + 3, (double) ((java.lang.Double) delta_)); + } + if (deltaCase_ == 4) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, delta_); + } + if (deltaCase_ == 5) { + size += + com.google.protobuf.CodedOutputStream.computeBoolSize( + 5, (boolean) ((java.lang.Boolean) delta_)); + } + if (willContinue_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(6, willContinue_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.PartialArg)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.PartialArg other = + (com.google.cloud.aiplatform.v1.PartialArg) obj; + + if (!getJsonPath().equals(other.getJsonPath())) return false; + if (getWillContinue() != other.getWillContinue()) return false; + if (!getDeltaCase().equals(other.getDeltaCase())) return false; + switch (deltaCase_) { + case 2: + if (getNullValueValue() != other.getNullValueValue()) return false; + break; + case 3: + if (java.lang.Double.doubleToLongBits(getNumberValue()) + != java.lang.Double.doubleToLongBits(other.getNumberValue())) return false; + break; + case 4: + if (!getStringValue().equals(other.getStringValue())) return false; + break; + case 5: + if (getBoolValue() != other.getBoolValue()) return false; + break; + case 0: + default: + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + JSON_PATH_FIELD_NUMBER; + hash = (53 * hash) + getJsonPath().hashCode(); + hash = (37 * hash) + WILL_CONTINUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getWillContinue()); + switch (deltaCase_) { + case 2: + hash = (37 * hash) + NULL_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getNullValueValue(); + break; + case 3: + hash = (37 * hash) + NUMBER_VALUE_FIELD_NUMBER; + hash = + (53 * hash) + + com.google.protobuf.Internal.hashLong( + java.lang.Double.doubleToLongBits(getNumberValue())); + break; + case 4: + hash = (37 * hash) + STRING_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getStringValue().hashCode(); + break; + case 5: + hash = (37 * hash) + BOOL_VALUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getBoolValue()); + break; + case 0: + default: + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.PartialArg parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.PartialArg prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Partial argument value of the function call.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.PartialArg} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.PartialArg) + com.google.cloud.aiplatform.v1.PartialArgOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ToolProto + .internal_static_google_cloud_aiplatform_v1_PartialArg_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ToolProto + .internal_static_google_cloud_aiplatform_v1_PartialArg_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.PartialArg.class, + com.google.cloud.aiplatform.v1.PartialArg.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.PartialArg.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + jsonPath_ = ""; + willContinue_ = false; + deltaCase_ = 0; + delta_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ToolProto + .internal_static_google_cloud_aiplatform_v1_PartialArg_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PartialArg getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.PartialArg.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PartialArg build() { + com.google.cloud.aiplatform.v1.PartialArg result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PartialArg buildPartial() { + com.google.cloud.aiplatform.v1.PartialArg result = + new com.google.cloud.aiplatform.v1.PartialArg(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + buildPartialOneofs(result); + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.PartialArg result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000010) != 0)) { + result.jsonPath_ = jsonPath_; + } + if (((from_bitField0_ & 0x00000020) != 0)) { + result.willContinue_ = willContinue_; + } + } + + private void buildPartialOneofs(com.google.cloud.aiplatform.v1.PartialArg result) { + result.deltaCase_ = deltaCase_; + result.delta_ = this.delta_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.PartialArg) { + return mergeFrom((com.google.cloud.aiplatform.v1.PartialArg) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.PartialArg other) { + if (other == com.google.cloud.aiplatform.v1.PartialArg.getDefaultInstance()) return this; + if (!other.getJsonPath().isEmpty()) { + jsonPath_ = other.jsonPath_; + bitField0_ |= 0x00000010; + onChanged(); + } + if (other.getWillContinue() != false) { + setWillContinue(other.getWillContinue()); + } + switch (other.getDeltaCase()) { + case NULL_VALUE: + { + setNullValueValue(other.getNullValueValue()); + break; + } + case NUMBER_VALUE: + { + setNumberValue(other.getNumberValue()); + break; + } + case STRING_VALUE: + { + deltaCase_ = 4; + delta_ = other.delta_; + onChanged(); + break; + } + case BOOL_VALUE: + { + setBoolValue(other.getBoolValue()); + break; + } + case DELTA_NOT_SET: + { + break; + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + jsonPath_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000010; + break; + } // case 10 + case 16: + { + int rawValue = input.readEnum(); + deltaCase_ = 2; + delta_ = rawValue; + break; + } // case 16 + case 25: + { + delta_ = input.readDouble(); + deltaCase_ = 3; + break; + } // case 25 + case 34: + { + java.lang.String s = input.readStringRequireUtf8(); + deltaCase_ = 4; + delta_ = s; + break; + } // case 34 + case 40: + { + delta_ = input.readBool(); + deltaCase_ = 5; + break; + } // case 40 + case 48: + { + willContinue_ = input.readBool(); + bitField0_ |= 0x00000020; + break; + } // case 48 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int deltaCase_ = 0; + private java.lang.Object delta_; + + public DeltaCase getDeltaCase() { + return DeltaCase.forNumber(deltaCase_); + } + + public Builder clearDelta() { + deltaCase_ = 0; + delta_ = null; + onChanged(); + return this; + } + + private int bitField0_; + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the nullValue field is set. + */ + @java.lang.Override + public boolean hasNullValue() { + return deltaCase_ == 2; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The enum numeric value on the wire for nullValue. + */ + @java.lang.Override + public int getNullValueValue() { + if (deltaCase_ == 2) { + return ((java.lang.Integer) delta_).intValue(); + } + return 0; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The enum numeric value on the wire for nullValue to set. + * @return This builder for chaining. + */ + public Builder setNullValueValue(int value) { + deltaCase_ = 2; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The nullValue. + */ + @java.lang.Override + public com.google.protobuf.NullValue getNullValue() { + if (deltaCase_ == 2) { + com.google.protobuf.NullValue result = + com.google.protobuf.NullValue.forNumber((java.lang.Integer) delta_); + return result == null ? com.google.protobuf.NullValue.UNRECOGNIZED : result; + } + return com.google.protobuf.NullValue.NULL_VALUE; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The nullValue to set. + * @return This builder for chaining. + */ + public Builder setNullValue(com.google.protobuf.NullValue value) { + if (value == null) { + throw new NullPointerException(); + } + deltaCase_ = 2; + delta_ = value.getNumber(); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return This builder for chaining. + */ + public Builder clearNullValue() { + if (deltaCase_ == 2) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the numberValue field is set. + */ + public boolean hasNumberValue() { + return deltaCase_ == 3; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The numberValue. + */ + public double getNumberValue() { + if (deltaCase_ == 3) { + return (java.lang.Double) delta_; + } + return 0D; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The numberValue to set. + * @return This builder for chaining. + */ + public Builder setNumberValue(double value) { + + deltaCase_ = 3; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearNumberValue() { + if (deltaCase_ == 3) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the stringValue field is set. + */ + @java.lang.Override + public boolean hasStringValue() { + return deltaCase_ == 4; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The stringValue. + */ + @java.lang.Override + public java.lang.String getStringValue() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (deltaCase_ == 4) { + delta_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for stringValue. + */ + @java.lang.Override + public com.google.protobuf.ByteString getStringValueBytes() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (deltaCase_ == 4) { + delta_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The stringValue to set. + * @return This builder for chaining. + */ + public Builder setStringValue(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + deltaCase_ = 4; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearStringValue() { + if (deltaCase_ == 4) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for stringValue to set. + * @return This builder for chaining. + */ + public Builder setStringValueBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + deltaCase_ = 4; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the boolValue field is set. + */ + public boolean hasBoolValue() { + return deltaCase_ == 5; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The boolValue. + */ + public boolean getBoolValue() { + if (deltaCase_ == 5) { + return (java.lang.Boolean) delta_; + } + return false; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The boolValue to set. + * @return This builder for chaining. + */ + public Builder setBoolValue(boolean value) { + + deltaCase_ = 5; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearBoolValue() { + if (deltaCase_ == 5) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + private java.lang.Object jsonPath_ = ""; + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The jsonPath. + */ + public java.lang.String getJsonPath() { + java.lang.Object ref = jsonPath_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + jsonPath_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for jsonPath. + */ + public com.google.protobuf.ByteString getJsonPathBytes() { + java.lang.Object ref = jsonPath_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + jsonPath_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The jsonPath to set. + * @return This builder for chaining. + */ + public Builder setJsonPath(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + jsonPath_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearJsonPath() { + jsonPath_ = getDefaultInstance().getJsonPath(); + bitField0_ = (bitField0_ & ~0x00000010); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for jsonPath to set. + * @return This builder for chaining. + */ + public Builder setJsonPathBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + jsonPath_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + private boolean willContinue_; + + /** + * + * + *
+     * Optional. Whether this is not the last part of the same json_path.
+     * If true, another PartialArg message for the current json_path is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + + /** + * + * + *
+     * Optional. Whether this is not the last part of the same json_path.
+     * If true, another PartialArg message for the current json_path is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The willContinue to set. + * @return This builder for chaining. + */ + public Builder setWillContinue(boolean value) { + + willContinue_ = value; + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Whether this is not the last part of the same json_path.
+     * If true, another PartialArg message for the current json_path is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearWillContinue() { + bitField0_ = (bitField0_ & ~0x00000020); + willContinue_ = false; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.PartialArg) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.PartialArg) + private static final com.google.cloud.aiplatform.v1.PartialArg DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.PartialArg(); + } + + public static com.google.cloud.aiplatform.v1.PartialArg getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public PartialArg parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PartialArg getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartialArgOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartialArgOrBuilder.java new file mode 100644 index 000000000000..9c35ce809cd2 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PartialArgOrBuilder.java @@ -0,0 +1,204 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/tool.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface PartialArgOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.PartialArg) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the nullValue field is set. + */ + boolean hasNullValue(); + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The enum numeric value on the wire for nullValue. + */ + int getNullValueValue(); + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The nullValue. + */ + com.google.protobuf.NullValue getNullValue(); + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the numberValue field is set. + */ + boolean hasNumberValue(); + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The numberValue. + */ + double getNumberValue(); + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the stringValue field is set. + */ + boolean hasStringValue(); + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The stringValue. + */ + java.lang.String getStringValue(); + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for stringValue. + */ + com.google.protobuf.ByteString getStringValueBytes(); + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the boolValue field is set. + */ + boolean hasBoolValue(); + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The boolValue. + */ + boolean getBoolValue(); + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The jsonPath. + */ + java.lang.String getJsonPath(); + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for jsonPath. + */ + com.google.protobuf.ByteString getJsonPathBytes(); + + /** + * + * + *
+   * Optional. Whether this is not the last part of the same json_path.
+   * If true, another PartialArg message for the current json_path is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + boolean getWillContinue(); + + com.google.cloud.aiplatform.v1.PartialArg.DeltaCase getDeltaCase(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequest.java index a5f7719e3187..4272a9b2411d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java index e03974e2f69d..1f174c2ebf8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequest.java index 20a8374f7ad2..040bd47b5126 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequestOrBuilder.java index da6cc5122e4d..d64d640c6a0e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PauseScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpec.java index cc2d7fafa981..ec94d5bb455f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpecOrBuilder.java index 50b0bb57963a..3ada5bdb4ebd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentDiskSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResource.java index 5137d311c3a3..904b7f23cab9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceName.java index d570a0e6a39e..30e2c4fce0ad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceOrBuilder.java index 9bdca9ffeb84..639efac194d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceProto.java index 43560afd9983..c8701a3e2984 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceProto.java index c25f628bd36c..68bce4c87cb4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PersistentResourceServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Pipeline.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Pipeline.java index ef4fc4db4747..50a0a28ab176 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Pipeline.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Pipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicy.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicy.java index 019ffb5f06c7..04ee771d3106 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicy.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicyProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicyProto.java index bbf9ad93ff7a..64d35a34dbd1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicyProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineFailurePolicyProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJob.java index 2a7a63d32f40..aca22b61d495 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetail.java index c0c2a4ddbb39..71c79e47e80e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetailOrBuilder.java index ae952d7b9764..4446404b9ea1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobName.java index 2931018b95ce..5f646ee6b83c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobOrBuilder.java index 22d8d9bd2ff5..5730248de787 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceProto.java index f90c8ed147cf..9a931ccbd17a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineState.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineState.java index a190ce5ab5e7..c8e60ed6314d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineState.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineStateProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineStateProto.java index 653da01a3ba1..d8a3fc84f0eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineStateProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineStateProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetail.java index 0187c4a2dafe..0fac4f26b376 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetailOrBuilder.java index e3002d5eefd4..6738f8dbf2ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetail.java index 5f7b81277c16..4272f5c03f3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetailOrBuilder.java index fcdf6938ff33..65438aa009c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTaskExecutorDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadata.java index 40e4729949f0..c35f33011534 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadataOrBuilder.java index 1938824c073a..a9258d644a32 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PipelineTemplateMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInput.java index 41927de00f9a..732c857aa9c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInputOrBuilder.java index 0be0cd0f2a2e..0e53e614e798 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstance.java index 7c6455b81a7e..e32e8127f98a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstanceOrBuilder.java index b774a2a21638..7b1947e2b67d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResult.java index 19b043bca64b..fc705083cd15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResultOrBuilder.java index a6fa75df4234..f9cbf6b29ae9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpec.java index 2b171c3a349f..7f7f98c9f2aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpecOrBuilder.java index c8bac162267c..a86d01324de2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PointwiseMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Port.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Port.java index da28dfdda9a0..d2953614b704 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Port.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Port.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PortOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PortOrBuilder.java index 7cc417924846..f1fee89ede10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PortOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PortOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfig.java index 36bc834ce53c..425708c130c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfigOrBuilder.java index d51281e32f52..0f907454d7f7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PostStartupScriptConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModel.java index 8a6a630f74b5..e78f49f7e182 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModelOrBuilder.java index 2329e5b9d76e..11b4db43898d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PreTunedModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrebuiltVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrebuiltVoiceConfig.java new file mode 100644 index 000000000000..4623a2f442ae --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrebuiltVoiceConfig.java @@ -0,0 +1,674 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Configuration for a prebuilt voice.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.PrebuiltVoiceConfig} + */ +public final class PrebuiltVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.PrebuiltVoiceConfig) + PrebuiltVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use PrebuiltVoiceConfig.newBuilder() to construct. + private PrebuiltVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private PrebuiltVoiceConfig() { + voiceName_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new PrebuiltVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.class, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder.class); + } + + private int bitField0_; + public static final int VOICE_NAME_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object voiceName_ = ""; + + /** + * + * + *
+   * The name of the prebuilt voice to use.
+   * 
+ * + * optional string voice_name = 1; + * + * @return Whether the voiceName field is set. + */ + @java.lang.Override + public boolean hasVoiceName() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * The name of the prebuilt voice to use.
+   * 
+ * + * optional string voice_name = 1; + * + * @return The voiceName. + */ + @java.lang.Override + public java.lang.String getVoiceName() { + java.lang.Object ref = voiceName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + voiceName_ = s; + return s; + } + } + + /** + * + * + *
+   * The name of the prebuilt voice to use.
+   * 
+ * + * optional string voice_name = 1; + * + * @return The bytes for voiceName. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVoiceNameBytes() { + java.lang.Object ref = voiceName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + voiceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, voiceName_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, voiceName_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig other = + (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) obj; + + if (hasVoiceName() != other.hasVoiceName()) return false; + if (hasVoiceName()) { + if (!getVoiceName().equals(other.getVoiceName())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasVoiceName()) { + hash = (37 * hash) + VOICE_NAME_FIELD_NUMBER; + hash = (53 * hash) + getVoiceName().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for a prebuilt voice.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.PrebuiltVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.PrebuiltVoiceConfig) + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.class, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + voiceName_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_PrebuiltVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig build() { + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig result = + new com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.voiceName_ = voiceName_; + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance()) + return this; + if (other.hasVoiceName()) { + voiceName_ = other.voiceName_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + voiceName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object voiceName_ = ""; + + /** + * + * + *
+     * The name of the prebuilt voice to use.
+     * 
+ * + * optional string voice_name = 1; + * + * @return Whether the voiceName field is set. + */ + public boolean hasVoiceName() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+     * The name of the prebuilt voice to use.
+     * 
+ * + * optional string voice_name = 1; + * + * @return The voiceName. + */ + public java.lang.String getVoiceName() { + java.lang.Object ref = voiceName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + voiceName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * The name of the prebuilt voice to use.
+     * 
+ * + * optional string voice_name = 1; + * + * @return The bytes for voiceName. + */ + public com.google.protobuf.ByteString getVoiceNameBytes() { + java.lang.Object ref = voiceName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + voiceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * The name of the prebuilt voice to use.
+     * 
+ * + * optional string voice_name = 1; + * + * @param value The voiceName to set. + * @return This builder for chaining. + */ + public Builder setVoiceName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + voiceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * The name of the prebuilt voice to use.
+     * 
+ * + * optional string voice_name = 1; + * + * @return This builder for chaining. + */ + public Builder clearVoiceName() { + voiceName_ = getDefaultInstance().getVoiceName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * The name of the prebuilt voice to use.
+     * 
+ * + * optional string voice_name = 1; + * + * @param value The bytes for voiceName to set. + * @return This builder for chaining. + */ + public Builder setVoiceNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + voiceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.PrebuiltVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.PrebuiltVoiceConfig) + private static final com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public PrebuiltVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrebuiltVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrebuiltVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..de6379182054 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrebuiltVoiceConfigOrBuilder.java @@ -0,0 +1,65 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface PrebuiltVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.PrebuiltVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The name of the prebuilt voice to use.
+   * 
+ * + * optional string voice_name = 1; + * + * @return Whether the voiceName field is set. + */ + boolean hasVoiceName(); + + /** + * + * + *
+   * The name of the prebuilt voice to use.
+   * 
+ * + * optional string voice_name = 1; + * + * @return The voiceName. + */ + java.lang.String getVoiceName(); + + /** + * + * + *
+   * The name of the prebuilt voice to use.
+   * 
+ * + * optional string voice_name = 1; + * + * @return The bytes for voiceName. + */ + com.google.protobuf.ByteString getVoiceNameBytes(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplit.java index 67286c21fe34..3cf95534b676 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplitOrBuilder.java index ef57283aa757..c4d1856c09f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredefinedSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequest.java index ab87e0d157f1..e9c9b2badf3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestOrBuilder.java index 703cf11dfd45..877f89801322 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfig.java index 447a00e5d569..a0c6d8a2ba79 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfigOrBuilder.java index 1550783ae1e7..f14d6f7bedce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictRequestResponseLoggingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponse.java index 7240cc98d38a..9e4224e51887 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponseOrBuilder.java index 199507e40c46..22890efc3991 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemata.java index e686d7f38e30..d4b71207722b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemataOrBuilder.java index 754168ceee90..1fcbc1cf2af9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictSchemataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceProto.java index 76f3a68c03e3..4c995983079c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PredictionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Presets.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Presets.java index a83d85d3c6e7..0f18fb3808c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Presets.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Presets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PresetsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PresetsOrBuilder.java index dbe9ba5adb8a..025cd875ca15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PresetsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PresetsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpoints.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpoints.java index d869288e4d76..aa8f49b1b42a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpoints.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpointsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpointsOrBuilder.java index 2a1285a9f92b..1d380fcbb6a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpointsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateEndpointsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfig.java index 8c50537916ca..aadf86ec5c84 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfigOrBuilder.java index 00fd50a8fd66..4197a6548cf4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PrivateServiceConnectConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Probe.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Probe.java index 55636836a2fd..4d274cbb572b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Probe.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Probe.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProbeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProbeOrBuilder.java index f979033a4601..60e7b1d64f75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProbeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProbeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProjectName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProjectName.java index a364138dec39..17f43caf9cd9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProjectName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ProjectName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpoints.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpoints.java index 468edb7fd5e5..424f5512fa01 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpoints.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpointsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpointsOrBuilder.java index 8f1dd592bb72..1a034fcf8333 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpointsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscAutomatedEndpointsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfig.java index f1a08223ac5f..c9808626d250 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfigOrBuilder.java index c4e220a1002c..9f3c443ff55d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PscInterfaceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModel.java index a8ee08b0aaad..5eef26c73cab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelName.java index da7f724b9226..616a75a08239 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelOrBuilder.java index 4efe44f0b99d..50afec0fb865 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelProto.java index 48f883eef077..23826ebdc5c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelView.java index d1dc51a433d2..8857159e37c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PublisherModelView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadata.java index 9154dbb7c589..7e53200fe927 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadataOrBuilder.java index e027ecac4a89..d4b3ccd1ea14 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequest.java index 4011ea8a0be5..157ebda704e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequestOrBuilder.java index c8525e387c0a..ada5f42e022b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponse.java index e87d34ce3d73..dfaad1012d7c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponseOrBuilder.java index a45e72e1fca0..9345be5e4f20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadata.java index 28a37b76d8b6..28ce01830329 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadataOrBuilder.java index 89e4db76f969..6edf7f337442 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequest.java index 3e566da976dd..1d366d521c50 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequestOrBuilder.java index 9d40975fd017..167edfead1ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponse.java index 4445b377f428..895b2ab50532 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponseOrBuilder.java index bf4b9091e4dd..27e9d272e129 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeContextsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadata.java index e7191398f8ed..139bfe8d778a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadataOrBuilder.java index be188b109110..231acf235b08 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequest.java index a1db9af6406d..8095820debde 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequestOrBuilder.java index 245031c36234..632d85df56d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponse.java index f534d443697a..7c14ec38b2c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponseOrBuilder.java index 8c12302492a2..3cee16286e2c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PurgeExecutionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpec.java index 0ad3caa06fef..b72b8bd294ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpecOrBuilder.java index 110641a56588..a17853769091 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/PythonPackageSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequest.java index c1994a06a1a4..356132f7aee8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequestOrBuilder.java index 4747b0136d75..a363bcebb3fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryArtifactLineageSubgraphRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequest.java index f81cbeeba0f0..14a5417ced38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequestOrBuilder.java index 9d350d86483c..295dd647678d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryContextLineageSubgraphRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequest.java index 64b1664cdb04..14631e53c5ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequestOrBuilder.java index e15d370b2c77..c112efd4f986 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponse.java index 59dd0a4efd39..79ca93bac814 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponseOrBuilder.java index 975c30e7a789..1af22bd4ca7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryDeployedModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequest.java index bade40284d78..48cd6e42ad03 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequestOrBuilder.java index 7ab3c3b7d9ed..34a572e447f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryExecutionInputsAndOutputsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequest.java index 8fa230f93d3f..09e85c2a59f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequestOrBuilder.java index 70ca3d4f8c97..1c64a997a606 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponse.java index 3a00fd6596c1..fc840adbb41a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponseOrBuilder.java index 843d8628bf18..430ba188e38d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QueryReasoningEngineResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInput.java index aec378a43c52..e912e7a5d9c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInputOrBuilder.java index 170aa2a1bdd4..904e9cd2839c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstance.java index 5a151c6e55f1..75dc049da82c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstanceOrBuilder.java index ad0a2dba2842..48b975cd59a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResult.java index cedffd9f3c09..d73b9179d1ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResultOrBuilder.java index dc80b3b1a2df..5a233e93346e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpec.java index 93e9b463886b..b9f728380a00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpecOrBuilder.java index a53ae67e7c42..4efce610b063 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringCorrectnessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInput.java index 66bed231b687..493b0b811b0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInputOrBuilder.java index aca9624715fd..bd8fb4b6a4ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstance.java index 6c03266dfebb..28c8cc0bff5c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java index 53a2131694cc..bfb49c1495e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResult.java index 0bd53ff12d81..515747429b43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResultOrBuilder.java index c8e2fa439810..0831bf8fb7dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpec.java index 0896a84f481c..7a23b894c252 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpecOrBuilder.java index a8275658dd8b..88db1f03a031 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringHelpfulnessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInput.java index 30241c37c642..9916056228d5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInputOrBuilder.java index d0d51ef2659b..a56d26397896 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstance.java index 1834d0e91692..02be36fbec4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstanceOrBuilder.java index 250c3d5171d3..1312b1a17771 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResult.java index 2741dbdb79ca..45c95712b9e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResultOrBuilder.java index a1680e3eccab..0605848d3440 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpec.java index 6f3455d2b110..dc0571da3126 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpecOrBuilder.java index 576ea407246a..4c898bb58ac2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInput.java index 0802eaf19340..5a13dba1a966 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInputOrBuilder.java index 95d9ceee1bbd..58d33b771c86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstance.java index 919ee703a74b..92b14c583d7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstanceOrBuilder.java index 58c59e916c70..e667997dd81a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResult.java index 013aa92a6e61..9baf410fd91c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResultOrBuilder.java index 29de6ea4326d..3a7318c8c1a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpec.java index f7ae4ab46f64..d77aee7a43a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpecOrBuilder.java index f36472fdac8d..2da22d9058e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/QuestionAnsweringRelevanceSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunk.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunk.java index 5a099e0a4ff6..36cd2b65a6bf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunk.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunk.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunkOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunkOrBuilder.java index e9cc316d76f7..5f53e575fe13 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunkOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagChunkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContexts.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContexts.java index dce723db55b2..1ab776b0ebe5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContexts.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContextsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContextsOrBuilder.java index 4ecc6b304897..600798d2b979 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContextsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagContextsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpus.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpus.java index 1f8b650f463c..b281e7c6165f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpus.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusName.java index ca389c34955d..42862d07680b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusOrBuilder.java index 068ccda5ddcc..fc6ab814878b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagCorpusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfig.java index 3897d7c2e436..38c4c6d94d82 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfigOrBuilder.java index 0175b2ad9ec9..6d42a8813644 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEmbeddingModelConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfig.java index 9f9ef05a5e1c..2348ac3fbbf3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigName.java index 817a132b61d4..3d0d7f44db6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigOrBuilder.java index dbc4db0aec98..7bdee5e83b92 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagEngineConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFile.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFile.java index 674d06af4f30..b07fe24f9586 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFile.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfig.java index 06fa254c9059..1cef7bde826d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfigOrBuilder.java index 7cc97ac295a0..f48fd19f3f63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileChunkingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileName.java index 53cf137387a3..3c88d809cd3e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileOrBuilder.java index 7150f14cdbed..764cd4f3a6f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfig.java index d0adf50b8202..9260456d970d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfigOrBuilder.java index 5af2d3a9ba83..232310b9c9d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileParsingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfig.java index dec29eb83bbc..8527c5079e8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfigOrBuilder.java index 3fb7467d6ed3..409b154661ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagFileTransformationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfig.java index 20d1a060a0a9..45fd80025e77 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfigOrBuilder.java index 89ba6ee6c338..9344ffc16b62 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagManagedDbConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQuery.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQuery.java index ade52cc92475..f425815ac753 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQuery.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQueryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQueryOrBuilder.java index 71c50452f66c..80906efd83ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQueryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfig.java index 36915e51ec7e..a83b7cb0b422 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfigOrBuilder.java index 621e78878323..6af76327b6bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagRetrievalConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfig.java index ec4644beecbb..9417cd71103b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfigOrBuilder.java index c34cb5c0b191..bee668b36ca8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RagVectorDbConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequest.java index 601de86a068b..562294da61ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequestOrBuilder.java index 3592f3307bd2..03f671302755 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpec.java index fbf7c01eeb6e..6d4a51a92aae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpecOrBuilder.java index 98634053988f..370ce8501d46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayLogsSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpec.java index 23572e3c33ee..677fce5141c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpecOrBuilder.java index dfce904da56f..808d3672fab5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RayMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpec.java index 46fb14186471..a530119b576e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpecOrBuilder.java index 537887cdefdd..07ad8125aa1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RaySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequest.java index b397b99f522a..4618327c204e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequestOrBuilder.java index 0a8f0bf1cc0c..527f6c373692 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponse.java index 0b08c3ae28e5..bce6c9e2183c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponseOrBuilder.java index 0a376394a354..b96439a4bd9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequest.java index 7f7fff6eebae..8c51b1863c55 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequestOrBuilder.java index 5905b7b3768a..cca9ba880461 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponse.java index 971732e09e39..2afe71f7c0bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponseOrBuilder.java index be85be40f7cc..639693c37830 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadIndexDatapointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequest.java index 2106233f3d63..100719de147e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequestOrBuilder.java index 93f37d883ab4..db4f26324662 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponse.java index 312751b5017b..a5db13bce0e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponseOrBuilder.java index c893e34c38b7..8fd24d1b7617 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardBlobDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequest.java index 748431b1157e..9e448692c7bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequestOrBuilder.java index 24e993d3db9f..d00e9405be5a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponse.java index 9bde4350447c..522c53683d32 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponseOrBuilder.java index 730008ef7c5f..07adfefcec0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardSizeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequest.java index 3c405d8b7793..c0c39174b4a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java index 4ff361e054a7..af8f2323cfed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponse.java index 40435836ac89..0793676956bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java index 5a9176c382d3..7c36c9c5379d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequest.java index b14be732b43e..aefbe6647c03 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequestOrBuilder.java index cca12df747fe..23c81a9ae37e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponse.java index 4fc03fc0a9e1..f42e3e9709e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponseOrBuilder.java index a6243335040d..e18c4a14fb35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReadTensorboardUsageResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngine.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngine.java index b1b28a863fd4..784a0b9adb45 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngine.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceProto.java index eb5c0d2167e5..a19082d97d6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineExecutionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineName.java index 01656b34804e..c37843dabd1e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineOrBuilder.java index b969cf6d1983..d3303e41762f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineProto.java index 1950026c1030..9b032c484f11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,6 +52,14 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_InlineSource_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_InlineSource_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -79,7 +87,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\037google/api/field_behavior.proto\032\031google" + "/api/resource.proto\0320google/cloud/aiplatform/v1/encryption_spec.proto\032(google/cl" + "oud/aiplatform/v1/env_var.proto\0323google/cloud/aiplatform/v1/service_networking.p" - + "roto\032\034google/protobuf/struct.proto\032\037google/protobuf/timestamp.proto\"\275\014\n" + + "roto\032\034google/protobuf/struct.proto\032\037google/protobuf/timestamp.proto\"\333\017\n" + "\023ReasoningEngineSpec\022Z\n" + "\020source_code_spec\030\013 \001(\0132>." + "google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpecH\000\022!\n" @@ -112,14 +120,25 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005value\030\002 \001(\t:\0028\001B\020\n" + "\016_min_instancesB\020\n" + "\016_max_instancesB\030\n" - + "\026_container_concurrency\032\250\003\n" + + "\026_container_concurrency\032\306\006\n" + "\016SourceCodeSpec\022d\n\r" + "inline_source\030\001 \001(\0132K.google.cloud.aiplatform.v1.Reasoning" - + "EngineSpec.SourceCodeSpec.InlineSourceH\000\022`\n" - + "\013python_spec\030\002 \001(\0132I.google.cloud.aip" - + "latform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpecH\001\032.\n" + + "EngineSpec.SourceCodeSpec.InlineSourceH\000\022y\n" + + "\030developer_connect_source\030\003 \001(\0132U.goo" + + "gle.cloud.aiplatform.v1.ReasoningEngineS" + + "pec.SourceCodeSpec.DeveloperConnectSourceH\000\022`\n" + + "\013python_spec\030\002 \001(\0132I.google.cloud." + + "aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpecH\001\032.\n" + "\014InlineSource\022\036\n" - + "\016source_archive\030\001 \001(\014B\006\340A\002\340A\004\032\202\001\n\n" + + "\016source_archive\030\001 \001(\014B\006\340A\002\340A\004\032\231\001\n" + + "\026DeveloperConnectConfig\022V\n" + + "\023git_repository_link\030\001 \001(\tB9\340A\002\372A3\n" + + "1developerconnect.googleapis.com/GitRepositoryLink\022\020\n" + + "\003dir\030\002 \001(\tB\003\340A\002\022\025\n" + + "\010revision\030\003 \001(\tB\003\340A\002\032\204\001\n" + + "\026DeveloperConnectSource\022j\n" + + "\006config\030\001 \001(\0132U.google.cloud.aiplatform.v1.ReasoningEngineSpec.So" + + "urceCodeSpec.DeveloperConnectConfigB\003\340A\002\032\202\001\n\n" + "PythonSpec\022\024\n" + "\007version\030\001 \001(\tB\003\340A\001\022\036\n" + "\021entrypoint_module\030\002 \001(\tB\003\340A\001\022\036\n" @@ -133,27 +152,29 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004name\030\001 \001(\tB\003\340A\010\022\031\n" + "\014display_name\030\002 \001(\tB\003\340A\002\022\030\n" + "\013description\030\007 \001(\tB\003\340A\001\022B\n" - + "\004spec\030\003" - + " \001(\0132/.google.cloud.aiplatform.v1.ReasoningEngineSpecB\003\340A\001\0224\n" + + "\004spec\030\003 \001(\0132/.google.clo" + + "ud.aiplatform.v1.ReasoningEngineSpecB\003\340A\001\0224\n" + "\013create_time\030\004 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + "\013update_time\030\005" + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\021\n" + "\004etag\030\006 \001(\tB\003\340A\001\022C\n" + "\017encryption_spec\030\013" + " \001(\0132*.google.cloud.aiplatform.v1.EncryptionSpec\022G\n" - + "\006labels\030\021 \003(\0132" - + "7.google.cloud.aiplatform.v1.ReasoningEngine.LabelsEntry\032-\n" + + "\006labels\030\021" + + " \003(\01327.google.cloud.aiplatform.v1.ReasoningEngine.LabelsEntry\032-\n" + "\013LabelsEntry\022\013\n" + "\003key\030\001 \001(\t\022\r\n" + "\005value\030\002 \001(\t:\0028\001:\237\001\352A\233\001\n" - + ")aiplatform.googleapis.com/ReasoningEngine\022Kproje" - + "cts/{project}/locations/{location}/reaso" - + "ningEngines/{reasoning_engine}*\020reasoningEngines2\017reasoningEngineB\322\001\n" - + "\036com.google.cloud.aiplatform.v1B\024ReasoningEnginePro" - + "toP\001Z>cloud.google.com/go/aiplatform/api" - + "v1/aiplatformpb;aiplatformpb\252\002\032Google.Cl" - + "oud.AIPlatform.V1\312\002\032Google\\Cloud\\AIPlatf" - + "orm\\V1\352\002\035Google::Cloud::AIPlatform::V1b\006proto3" + + ")aiplatform.googleapis.com/ReasoningEngine\022Kprojects/{project}/locations/{l" + + "ocation}/reasoningEngines/{reasoning_eng" + + "ine}*\020reasoningEngines2\017reasoningEngineB\364\002\n" + + "\036com.google.cloud.aiplatform.v1B\024ReasoningEngineProtoP\001Z>cloud.google.com/go/" + + "aiplatform/apiv1/aiplatformpb;aiplatform" + + "pb\252\002\032Google.Cloud.AIPlatform.V1\312\002\032Google" + + "\\Cloud\\AIPlatform\\V1\352\002\035Google::Cloud::AIPlatform::V1\352A\236\001\n" + + "1developerconnect.googleapis.com/GitRepositoryLink\022iprojects/{p" + + "roject}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_re" + + "pository_link}b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -225,7 +246,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_descriptor, new java.lang.String[] { - "InlineSource", "PythonSpec", "Source", "LanguageSpec", + "InlineSource", "DeveloperConnectSource", "PythonSpec", "Source", "LanguageSpec", }); internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_InlineSource_descriptor = internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_descriptor @@ -237,10 +258,30 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "SourceArchive", }); - internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor = + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor = internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_descriptor .getNestedTypes() .get(1); + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor, + new java.lang.String[] { + "GitRepositoryLink", "Dir", "Revision", + }); + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor = + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_descriptor + .getNestedTypes() + .get(2); + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor, + new java.lang.String[] { + "Config", + }); + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor = + internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_descriptor + .getNestedTypes() + .get(3); internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor, @@ -277,6 +318,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); registry.add(com.google.api.ResourceProto.resource); + registry.add(com.google.api.ResourceProto.resourceDefinition); + registry.add(com.google.api.ResourceProto.resourceReference); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.FieldBehaviorProto.getDescriptor(); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceProto.java index 46448151d00e..c0a390d82192 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpec.java index 29749c336ab2..6473e9c588d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -153,8 +153,9 @@ public interface PackageSpecOrBuilder * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -167,8 +168,9 @@ public interface PackageSpecOrBuilder * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -395,8 +397,9 @@ public com.google.protobuf.ByteString getRequirementsGcsUriBytes() { * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -420,8 +423,9 @@ public java.lang.String getPythonVersion() { * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1205,8 +1209,9 @@ public Builder setRequirementsGcsUriBytes(com.google.protobuf.ByteString value) * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1229,8 +1234,9 @@ public java.lang.String getPythonVersion() { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1253,8 +1259,9 @@ public com.google.protobuf.ByteString getPythonVersionBytes() { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1276,8 +1283,9 @@ public Builder setPythonVersion(java.lang.String value) { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1295,8 +1303,9 @@ public Builder clearPythonVersion() { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -4783,6 +4792,52 @@ public interface SourceCodeSpecOrBuilder com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.InlineSourceOrBuilder getInlineSourceOrBuilder(); + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return Whether the developerConnectSource field is set. + */ + boolean hasDeveloperConnectSource(); + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return The developerConnectSource. + */ + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + getDeveloperConnectSource(); + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder + getDeveloperConnectSourceOrBuilder(); + /** * * @@ -4886,8 +4941,7 @@ public interface InlineSourceOrBuilder * *
        * Required. Input only. The application source code archive, provided as
-       * a compressed tarball
-       * (.tar.gz) file.
+       * a compressed tarball (.tar.gz) file.
        * 
* * @@ -4955,8 +5009,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * *
        * Required. Input only. The application source code archive, provided as
-       * a compressed tarball
-       * (.tar.gz) file.
+       * a compressed tarball (.tar.gz) file.
        * 
* * @@ -5352,8 +5405,7 @@ public Builder mergeFrom( * *
          * Required. Input only. The application source code archive, provided as
-         * a compressed tarball
-         * (.tar.gz) file.
+         * a compressed tarball (.tar.gz) file.
          * 
* * @@ -5372,8 +5424,7 @@ public com.google.protobuf.ByteString getSourceArchive() { * *
          * Required. Input only. The application source code archive, provided as
-         * a compressed tarball
-         * (.tar.gz) file.
+         * a compressed tarball (.tar.gz) file.
          * 
* * @@ -5398,8 +5449,7 @@ public Builder setSourceArchive(com.google.protobuf.ByteString value) { * *
          * Required. Input only. The application source code archive, provided as
-         * a compressed tarball
-         * (.tar.gz) file.
+         * a compressed tarball (.tar.gz) file.
          * 
* * @@ -5484,273 +5534,180 @@ public com.google.protobuf.Parser getParserForType() { } } - public interface PythonSpecOrBuilder + public interface DeveloperConnectConfigOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) com.google.protobuf.MessageOrBuilder { /** * * *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The version. - */ - java.lang.String getVersion(); - - /** - * - * - *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for version. - */ - com.google.protobuf.ByteString getVersionBytes(); - - /** - * - * - *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The entrypointModule. + * @return The gitRepositoryLink. */ - java.lang.String getEntrypointModule(); + java.lang.String getGitRepositoryLink(); /** * * *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The bytes for entrypointModule. + * @return The bytes for gitRepositoryLink. */ - com.google.protobuf.ByteString getEntrypointModuleBytes(); + com.google.protobuf.ByteString getGitRepositoryLinkBytes(); /** * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The entrypointObject. + * @return The dir. */ - java.lang.String getEntrypointObject(); + java.lang.String getDir(); /** * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for entrypointObject. + * @return The bytes for dir. */ - com.google.protobuf.ByteString getEntrypointObjectBytes(); + com.google.protobuf.ByteString getDirBytes(); /** * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The requirementsFile. + * @return The revision. */ - java.lang.String getRequirementsFile(); + java.lang.String getRevision(); /** * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for requirementsFile. + * @return The bytes for revision. */ - com.google.protobuf.ByteString getRequirementsFileBytes(); + com.google.protobuf.ByteString getRevisionBytes(); } /** * * *
-     * Specification for running a Python application from source.
+     * Specifies the configuration for fetching source code from a Git
+     * repository that is managed by Developer Connect. This includes the
+     * repository, revision, and directory to use.
      * 
* * Protobuf type {@code - * google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec} + * google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig} */ - public static final class PythonSpec extends com.google.protobuf.GeneratedMessageV3 + public static final class DeveloperConnectConfig extends com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) - PythonSpecOrBuilder { + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + DeveloperConnectConfigOrBuilder { private static final long serialVersionUID = 0L; - // Use PythonSpec.newBuilder() to construct. - private PythonSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) { + // Use DeveloperConnectConfig.newBuilder() to construct. + private DeveloperConnectConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private PythonSpec() { - version_ = ""; - entrypointModule_ = ""; - entrypointObject_ = ""; - requirementsFile_ = ""; + private DeveloperConnectConfig() { + gitRepositoryLink_ = ""; + dir_ = ""; + revision_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { - return new PythonSpec(); + return new DeveloperConnectConfig(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.aiplatform.v1.ReasoningEngineProto - .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor; + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.aiplatform.v1.ReasoningEngineProto - .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_fieldAccessorTable + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec.class, - com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec.Builder - .class); - } - - public static final int VERSION_FIELD_NUMBER = 1; - - @SuppressWarnings("serial") - private volatile java.lang.Object version_ = ""; - - /** - * - * - *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The version. - */ - @java.lang.Override - public java.lang.String getVersion() { - java.lang.Object ref = version_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - version_ = s; - return s; - } - } - - /** - * - * - *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for version. - */ - @java.lang.Override - public com.google.protobuf.ByteString getVersionBytes() { - java.lang.Object ref = version_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - version_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.class, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder.class); } - public static final int ENTRYPOINT_MODULE_FIELD_NUMBER = 2; + public static final int GIT_REPOSITORY_LINK_FIELD_NUMBER = 1; @SuppressWarnings("serial") - private volatile java.lang.Object entrypointModule_ = ""; + private volatile java.lang.Object gitRepositoryLink_ = ""; /** * * *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The entrypointModule. + * @return The gitRepositoryLink. */ @java.lang.Override - public java.lang.String getEntrypointModule() { - java.lang.Object ref = entrypointModule_; + public java.lang.String getGitRepositoryLink() { + java.lang.Object ref = gitRepositoryLink_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - entrypointModule_ = s; + gitRepositoryLink_ = s; return s; } } @@ -5759,58 +5716,55 @@ public java.lang.String getEntrypointModule() { * * *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The bytes for entrypointModule. + * @return The bytes for gitRepositoryLink. */ @java.lang.Override - public com.google.protobuf.ByteString getEntrypointModuleBytes() { - java.lang.Object ref = entrypointModule_; + public com.google.protobuf.ByteString getGitRepositoryLinkBytes() { + java.lang.Object ref = gitRepositoryLink_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - entrypointModule_ = b; + gitRepositoryLink_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } - public static final int ENTRYPOINT_OBJECT_FIELD_NUMBER = 3; + public static final int DIR_FIELD_NUMBER = 2; @SuppressWarnings("serial") - private volatile java.lang.Object entrypointObject_ = ""; + private volatile java.lang.Object dir_ = ""; /** * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The entrypointObject. + * @return The dir. */ @java.lang.Override - public java.lang.String getEntrypointObject() { - java.lang.Object ref = entrypointObject_; + public java.lang.String getDir() { + java.lang.Object ref = dir_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - entrypointObject_ = s; + dir_ = s; return s; } } @@ -5819,54 +5773,53 @@ public java.lang.String getEntrypointObject() { * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for entrypointObject. + * @return The bytes for dir. */ @java.lang.Override - public com.google.protobuf.ByteString getEntrypointObjectBytes() { - java.lang.Object ref = entrypointObject_; + public com.google.protobuf.ByteString getDirBytes() { + java.lang.Object ref = dir_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - entrypointObject_ = b; + dir_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } - public static final int REQUIREMENTS_FILE_FIELD_NUMBER = 4; + public static final int REVISION_FIELD_NUMBER = 3; @SuppressWarnings("serial") - private volatile java.lang.Object requirementsFile_ = ""; + private volatile java.lang.Object revision_ = ""; /** * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The requirementsFile. + * @return The revision. */ @java.lang.Override - public java.lang.String getRequirementsFile() { - java.lang.Object ref = requirementsFile_; + public java.lang.String getRevision() { + java.lang.Object ref = revision_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - requirementsFile_ = s; + revision_ = s; return s; } } @@ -5875,21 +5828,21 @@ public java.lang.String getRequirementsFile() { * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for requirementsFile. + * @return The bytes for revision. */ @java.lang.Override - public com.google.protobuf.ByteString getRequirementsFileBytes() { - java.lang.Object ref = requirementsFile_; + public com.google.protobuf.ByteString getRevisionBytes() { + java.lang.Object ref = revision_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - requirementsFile_ = b; + revision_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; @@ -5910,14 +5863,2237 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, version_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gitRepositoryLink_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, gitRepositoryLink_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointModule_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, entrypointModule_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dir_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dir_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointObject_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, entrypointObject_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(revision_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, revision_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gitRepositoryLink_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, gitRepositoryLink_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dir_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dir_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(revision_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, revision_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + other = + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig) + obj; + + if (!getGitRepositoryLink().equals(other.getGitRepositoryLink())) return false; + if (!getDir().equals(other.getDir())) return false; + if (!getRevision().equals(other.getRevision())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + GIT_REPOSITORY_LINK_FIELD_NUMBER; + hash = (53 * hash) + getGitRepositoryLink().hashCode(); + hash = (37 * hash) + DIR_FIELD_NUMBER; + hash = (53 * hash) + getDir().hashCode(); + hash = (37 * hash) + REVISION_FIELD_NUMBER; + hash = (53 * hash) + getRevision().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+       * Specifies the configuration for fetching source code from a Git
+       * repository that is managed by Developer Connect. This includes the
+       * repository, revision, and directory to use.
+       * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.class, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder.class); + } + + // Construct using + // com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + gitRepositoryLink_ = ""; + dir_ = ""; + revision_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + build() { + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + buildPartial() { + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + result = + new com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.gitRepositoryLink_ = gitRepositoryLink_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.dir_ = dir_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.revision_ = revision_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, + java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig) { + return mergeFrom( + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig) + other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + other) { + if (other + == com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance()) return this; + if (!other.getGitRepositoryLink().isEmpty()) { + gitRepositoryLink_ = other.gitRepositoryLink_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.getDir().isEmpty()) { + dir_ = other.dir_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getRevision().isEmpty()) { + revision_ = other.revision_; + bitField0_ |= 0x00000004; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + gitRepositoryLink_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + dir_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + revision_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object gitRepositoryLink_ = ""; + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The gitRepositoryLink. + */ + public java.lang.String getGitRepositoryLink() { + java.lang.Object ref = gitRepositoryLink_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + gitRepositoryLink_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for gitRepositoryLink. + */ + public com.google.protobuf.ByteString getGitRepositoryLinkBytes() { + java.lang.Object ref = gitRepositoryLink_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + gitRepositoryLink_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The gitRepositoryLink to set. + * @return This builder for chaining. + */ + public Builder setGitRepositoryLink(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + gitRepositoryLink_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearGitRepositoryLink() { + gitRepositoryLink_ = getDefaultInstance().getGitRepositoryLink(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for gitRepositoryLink to set. + * @return This builder for chaining. + */ + public Builder setGitRepositoryLinkBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + gitRepositoryLink_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.lang.Object dir_ = ""; + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The dir. + */ + public java.lang.String getDir() { + java.lang.Object ref = dir_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dir_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for dir. + */ + public com.google.protobuf.ByteString getDirBytes() { + java.lang.Object ref = dir_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dir_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The dir to set. + * @return This builder for chaining. + */ + public Builder setDir(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + dir_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearDir() { + dir_ = getDefaultInstance().getDir(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for dir to set. + * @return This builder for chaining. + */ + public Builder setDirBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + dir_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object revision_ = ""; + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The revision. + */ + public java.lang.String getRevision() { + java.lang.Object ref = revision_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + revision_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for revision. + */ + public com.google.protobuf.ByteString getRevisionBytes() { + java.lang.Object ref = revision_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + revision_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The revision to set. + * @return This builder for chaining. + */ + public Builder setRevision(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + revision_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearRevision() { + revision_ = getDefaultInstance().getRevision(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for revision to set. + * @return This builder for chaining. + */ + public Builder setRevisionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + revision_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + private static final com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig(); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DeveloperConnectConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + + public interface DeveloperConnectSourceOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the config field is set. + */ + boolean hasConfig(); + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The config. + */ + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + getConfig(); + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder + getConfigOrBuilder(); + } + + /** + * + * + *
+     * Specifies source code to be fetched from a Git repository managed through
+     * the Developer Connect service.
+     * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource} + */ + public static final class DeveloperConnectSource extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + DeveloperConnectSourceOrBuilder { + private static final long serialVersionUID = 0L; + + // Use DeveloperConnectSource.newBuilder() to construct. + private DeveloperConnectSource(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private DeveloperConnectSource() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new DeveloperConnectSource(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.class, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder.class); + } + + private int bitField0_; + public static final int CONFIG_FIELD_NUMBER = 1; + private com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + config_; + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the config field is set. + */ + @java.lang.Override + public boolean hasConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The config. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getConfig() { + return config_ == null + ? com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder + getConfigOrBuilder() { + return config_ == null + ? com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getConfig()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getConfig()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + other = + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + obj; + + if (hasConfig() != other.hasConfig()) return false; + if (hasConfig()) { + if (!getConfig().equals(other.getConfig())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasConfig()) { + hash = (37 * hash) + CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getConfig().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+       * Specifies source code to be fetched from a Git repository managed through
+       * the Developer Connect service.
+       * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.class, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder.class); + } + + // Construct using + // com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getConfigFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + config_ = null; + if (configBuilder_ != null) { + configBuilder_.dispose(); + configBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + build() { + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + buildPartial() { + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + result = + new com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.config_ = configBuilder_ == null ? config_ : configBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, + java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) { + return mergeFrom( + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + other) { + if (other + == com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance()) return this; + if (other.hasConfig()) { + mergeConfig(other.getConfig()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage(getConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + config_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder> + configBuilder_; + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the config field is set. + */ + public boolean hasConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The config. + */ + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getConfig() { + if (configBuilder_ == null) { + return config_ == null + ? com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } else { + return configBuilder_.getMessage(); + } + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setConfig( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + value) { + if (configBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + config_ = value; + } else { + configBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setConfig( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + .Builder + builderForValue) { + if (configBuilder_ == null) { + config_ = builderForValue.build(); + } else { + configBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeConfig( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + value) { + if (configBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) + && config_ != null + && config_ + != com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance()) { + getConfigBuilder().mergeFrom(value); + } else { + config_ = value; + } + } else { + configBuilder_.mergeFrom(value); + } + if (config_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearConfig() { + bitField0_ = (bitField0_ & ~0x00000001); + config_ = null; + if (configBuilder_ != null) { + configBuilder_.dispose(); + configBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder + getConfigBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder + getConfigOrBuilder() { + if (configBuilder_ != null) { + return configBuilder_.getMessageOrBuilder(); + } else { + return config_ == null + ? com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder> + getConfigFieldBuilder() { + if (configBuilder_ == null) { + configBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder>( + getConfig(), getParentForChildren(), isClean()); + config_ = null; + } + return configBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + private static final com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource(); + } + + public static com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DeveloperConnectSource parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + + public interface PythonSpecOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The version. + */ + java.lang.String getVersion(); + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for version. + */ + com.google.protobuf.ByteString getVersionBytes(); + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointModule. + */ + java.lang.String getEntrypointModule(); + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointModule. + */ + com.google.protobuf.ByteString getEntrypointModuleBytes(); + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointObject. + */ + java.lang.String getEntrypointObject(); + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointObject. + */ + com.google.protobuf.ByteString getEntrypointObjectBytes(); + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The requirementsFile. + */ + java.lang.String getRequirementsFile(); + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for requirementsFile. + */ + com.google.protobuf.ByteString getRequirementsFileBytes(); + } + + /** + * + * + *
+     * Specification for running a Python application from source.
+     * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec} + */ + public static final class PythonSpec extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) + PythonSpecOrBuilder { + private static final long serialVersionUID = 0L; + + // Use PythonSpec.newBuilder() to construct. + private PythonSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private PythonSpec() { + version_ = ""; + entrypointModule_ = ""; + entrypointObject_ = ""; + requirementsFile_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new PythonSpec(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec.class, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec.Builder + .class); + } + + public static final int VERSION_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object version_ = ""; + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The version. + */ + @java.lang.Override + public java.lang.String getVersion() { + java.lang.Object ref = version_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + version_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for version. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVersionBytes() { + java.lang.Object ref = version_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + version_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ENTRYPOINT_MODULE_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object entrypointModule_ = ""; + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointModule. + */ + @java.lang.Override + public java.lang.String getEntrypointModule() { + java.lang.Object ref = entrypointModule_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + entrypointModule_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointModule. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEntrypointModuleBytes() { + java.lang.Object ref = entrypointModule_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + entrypointModule_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ENTRYPOINT_OBJECT_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object entrypointObject_ = ""; + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointObject. + */ + @java.lang.Override + public java.lang.String getEntrypointObject() { + java.lang.Object ref = entrypointObject_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + entrypointObject_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointObject. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEntrypointObjectBytes() { + java.lang.Object ref = entrypointObject_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + entrypointObject_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REQUIREMENTS_FILE_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object requirementsFile_ = ""; + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The requirementsFile. + */ + @java.lang.Override + public java.lang.String getRequirementsFile() { + java.lang.Object ref = requirementsFile_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + requirementsFile_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for requirementsFile. + */ + @java.lang.Override + public com.google.protobuf.ByteString getRequirementsFileBytes() { + java.lang.Object ref = requirementsFile_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + requirementsFile_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, version_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointModule_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, entrypointModule_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointObject_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, entrypointObject_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(requirementsFile_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, requirementsFile_); @@ -6916,6 +9092,7 @@ public enum SourceCase com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { INLINE_SOURCE(1), + DEVELOPER_CONNECT_SOURCE(3), SOURCE_NOT_SET(0); private final int value; @@ -6937,6 +9114,8 @@ public static SourceCase forNumber(int value) { switch (value) { case 1: return INLINE_SOURCE; + case 3: + return DEVELOPER_CONNECT_SOURCE; case 0: return SOURCE_NOT_SET; default: @@ -7066,6 +9245,75 @@ public boolean hasInlineSource() { .getDefaultInstance(); } + public static final int DEVELOPER_CONNECT_SOURCE_FIELD_NUMBER = 3; + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return Whether the developerConnectSource field is set. + */ + @java.lang.Override + public boolean hasDeveloperConnectSource() { + return sourceCase_ == 3; + } + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return The developerConnectSource. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + getDeveloperConnectSource() { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder + getDeveloperConnectSourceOrBuilder() { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + public static final int PYTHON_SPEC_FIELD_NUMBER = 2; /** @@ -7158,6 +9406,13 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) languageSpec_); } + if (sourceCase_ == 3) { + output.writeMessage( + 3, + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_); + } getUnknownFields().writeTo(output); } @@ -7181,6 +9436,14 @@ public int getSerializedSize() { (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) languageSpec_); } + if (sourceCase_ == 3) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 3, + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -7202,6 +9465,9 @@ public boolean equals(final java.lang.Object obj) { case 1: if (!getInlineSource().equals(other.getInlineSource())) return false; break; + case 3: + if (!getDeveloperConnectSource().equals(other.getDeveloperConnectSource())) return false; + break; case 0: default: } @@ -7229,6 +9495,10 @@ public int hashCode() { hash = (37 * hash) + INLINE_SOURCE_FIELD_NUMBER; hash = (53 * hash) + getInlineSource().hashCode(); break; + case 3: + hash = (37 * hash) + DEVELOPER_CONNECT_SOURCE_FIELD_NUMBER; + hash = (53 * hash) + getDeveloperConnectSource().hashCode(); + break; case 0: default: } @@ -7388,6 +9658,9 @@ public Builder clear() { if (inlineSourceBuilder_ != null) { inlineSourceBuilder_.clear(); } + if (developerConnectSourceBuilder_ != null) { + developerConnectSourceBuilder_.clear(); + } if (pythonSpecBuilder_ != null) { pythonSpecBuilder_.clear(); } @@ -7444,6 +9717,9 @@ private void buildPartialOneofs( if (sourceCase_ == 1 && inlineSourceBuilder_ != null) { result.source_ = inlineSourceBuilder_.build(); } + if (sourceCase_ == 3 && developerConnectSourceBuilder_ != null) { + result.source_ = developerConnectSourceBuilder_.build(); + } result.languageSpecCase_ = languageSpecCase_; result.languageSpec_ = this.languageSpec_; if (languageSpecCase_ == 2 && pythonSpecBuilder_ != null) { @@ -7508,6 +9784,11 @@ public Builder mergeFrom( mergeInlineSource(other.getInlineSource()); break; } + case DEVELOPER_CONNECT_SOURCE: + { + mergeDeveloperConnectSource(other.getDeveloperConnectSource()); + break; + } case SOURCE_NOT_SET: { break; @@ -7562,6 +9843,13 @@ public Builder mergeFrom( languageSpecCase_ = 2; break; } // case 18 + case 26: + { + input.readMessage( + getDeveloperConnectSourceFieldBuilder().getBuilder(), extensionRegistry); + sourceCase_ = 3; + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -7870,6 +10158,279 @@ public Builder clearInlineSource() { return inlineSourceBuilder_; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder> + developerConnectSourceBuilder_; + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return Whether the developerConnectSource field is set. + */ + @java.lang.Override + public boolean hasDeveloperConnectSource() { + return sourceCase_ == 3; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return The developerConnectSource. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDeveloperConnectSource() { + if (developerConnectSourceBuilder_ == null) { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } else { + if (sourceCase_ == 3) { + return developerConnectSourceBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder setDeveloperConnectSource( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + value) { + if (developerConnectSourceBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + source_ = value; + onChanged(); + } else { + developerConnectSourceBuilder_.setMessage(value); + } + sourceCase_ = 3; + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder setDeveloperConnectSource( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + .Builder + builderForValue) { + if (developerConnectSourceBuilder_ == null) { + source_ = builderForValue.build(); + onChanged(); + } else { + developerConnectSourceBuilder_.setMessage(builderForValue.build()); + } + sourceCase_ = 3; + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder mergeDeveloperConnectSource( + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + value) { + if (developerConnectSourceBuilder_ == null) { + if (sourceCase_ == 3 + && source_ + != com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance()) { + source_ = + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.newBuilder( + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_) + .mergeFrom(value) + .buildPartial(); + } else { + source_ = value; + } + onChanged(); + } else { + if (sourceCase_ == 3) { + developerConnectSourceBuilder_.mergeFrom(value); + } else { + developerConnectSourceBuilder_.setMessage(value); + } + } + sourceCase_ = 3; + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder clearDeveloperConnectSource() { + if (developerConnectSourceBuilder_ == null) { + if (sourceCase_ == 3) { + sourceCase_ = 0; + source_ = null; + onChanged(); + } + } else { + if (sourceCase_ == 3) { + sourceCase_ = 0; + source_ = null; + } + developerConnectSourceBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder + getDeveloperConnectSourceBuilder() { + return getDeveloperConnectSourceFieldBuilder().getBuilder(); + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder + getDeveloperConnectSourceOrBuilder() { + if ((sourceCase_ == 3) && (developerConnectSourceBuilder_ != null)) { + return developerConnectSourceBuilder_.getMessageOrBuilder(); + } else { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder> + getDeveloperConnectSourceFieldBuilder() { + if (developerConnectSourceBuilder_ == null) { + if (!(sourceCase_ == 3)) { + source_ = + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + developerConnectSourceBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder, + com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder>( + (com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_, + getParentForChildren(), + isClean()); + source_ = null; + } + sourceCase_ = 3; + onChanged(); + return developerConnectSourceBuilder_; + } + private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec, com.google.cloud.aiplatform.v1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec.Builder, diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpecOrBuilder.java index 7bf52b1912e5..5b972f2ab33d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReasoningEngineSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadata.java index 92219b812089..c240985afc95 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadataOrBuilder.java index 7d22eb959c9d..7d9f39cea465 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequest.java index cb04e06d6a9c..63459e808060 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequestOrBuilder.java index 0f19aad7a056..affa6d8e1239 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebaseTunedModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadata.java index 3fd1b6d26ef9..b69c957a74e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadataOrBuilder.java index 5482e559c6de..7620b8c372aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequest.java index ad6dcb61df28..c72339f30669 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequestOrBuilder.java index 301d3fb87e9d..f1bc2e0c2802 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RebootPersistentResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequest.java index e3a06534756e..77ebb50d285f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequestOrBuilder.java index b53f02c8e79c..791b31091d01 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponse.java index 475c16244a77..7c2334e21496 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponseOrBuilder.java index b09e18c6dab9..82c0b96af512 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveContextChildrenResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequest.java index b14e64947757..bbc124907dfa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequestOrBuilder.java index 010c3eee271a..e92d91d0fcf5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponse.java index 14e657d3776d..51fee65e0523 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponseOrBuilder.java index 6ddc3c8ba6b9..2f2a65e0e1cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RemoveDatapointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReplicatedVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReplicatedVoiceConfig.java new file mode 100644 index 000000000000..4cd0eb755b27 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReplicatedVoiceConfig.java @@ -0,0 +1,755 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * The configuration for the replicated voice to use.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.ReplicatedVoiceConfig} + */ +public final class ReplicatedVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.ReplicatedVoiceConfig) + ReplicatedVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ReplicatedVoiceConfig.newBuilder() to construct. + private ReplicatedVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ReplicatedVoiceConfig() { + mimeType_ = ""; + voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ReplicatedVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.class, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder.class); + } + + public static final int MIME_TYPE_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object mimeType_ = ""; + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mimeType. + */ + @java.lang.Override + public java.lang.String getMimeType() { + java.lang.Object ref = mimeType_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mimeType_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mimeType. + */ + @java.lang.Override + public com.google.protobuf.ByteString getMimeTypeBytes() { + java.lang.Object ref = mimeType_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mimeType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VOICE_SAMPLE_AUDIO_FIELD_NUMBER = 2; + private com.google.protobuf.ByteString voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + + /** + * + * + *
+   * Optional. The sample of the custom voice.
+   * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The voiceSampleAudio. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVoiceSampleAudio() { + return voiceSampleAudio_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mimeType_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, mimeType_); + } + if (!voiceSampleAudio_.isEmpty()) { + output.writeBytes(2, voiceSampleAudio_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mimeType_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, mimeType_); + } + if (!voiceSampleAudio_.isEmpty()) { + size += com.google.protobuf.CodedOutputStream.computeBytesSize(2, voiceSampleAudio_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig other = + (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) obj; + + if (!getMimeType().equals(other.getMimeType())) return false; + if (!getVoiceSampleAudio().equals(other.getVoiceSampleAudio())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + MIME_TYPE_FIELD_NUMBER; + hash = (53 * hash) + getMimeType().hashCode(); + hash = (37 * hash) + VOICE_SAMPLE_AUDIO_FIELD_NUMBER; + hash = (53 * hash) + getVoiceSampleAudio().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * The configuration for the replicated voice to use.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.ReplicatedVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.ReplicatedVoiceConfig) + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.class, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + mimeType_ = ""; + voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_ReplicatedVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig build() { + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig result = + new com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.mimeType_ = mimeType_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.voiceSampleAudio_ = voiceSampleAudio_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance()) + return this; + if (!other.getMimeType().isEmpty()) { + mimeType_ = other.mimeType_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.getVoiceSampleAudio() != com.google.protobuf.ByteString.EMPTY) { + setVoiceSampleAudio(other.getVoiceSampleAudio()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + mimeType_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + voiceSampleAudio_ = input.readBytes(); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object mimeType_ = ""; + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mimeType. + */ + public java.lang.String getMimeType() { + java.lang.Object ref = mimeType_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mimeType_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mimeType. + */ + public com.google.protobuf.ByteString getMimeTypeBytes() { + java.lang.Object ref = mimeType_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mimeType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The mimeType to set. + * @return This builder for chaining. + */ + public Builder setMimeType(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + mimeType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearMimeType() { + mimeType_ = getDefaultInstance().getMimeType(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for mimeType to set. + * @return This builder for chaining. + */ + public Builder setMimeTypeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + mimeType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.ByteString voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + + /** + * + * + *
+     * Optional. The sample of the custom voice.
+     * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The voiceSampleAudio. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVoiceSampleAudio() { + return voiceSampleAudio_; + } + + /** + * + * + *
+     * Optional. The sample of the custom voice.
+     * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The voiceSampleAudio to set. + * @return This builder for chaining. + */ + public Builder setVoiceSampleAudio(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + voiceSampleAudio_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The sample of the custom voice.
+     * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearVoiceSampleAudio() { + bitField0_ = (bitField0_ & ~0x00000002); + voiceSampleAudio_ = getDefaultInstance().getVoiceSampleAudio(); + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.ReplicatedVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.ReplicatedVoiceConfig) + private static final com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ReplicatedVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReplicatedVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReplicatedVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..26941ae639c7 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReplicatedVoiceConfigOrBuilder.java @@ -0,0 +1,71 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface ReplicatedVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.ReplicatedVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mimeType. + */ + java.lang.String getMimeType(); + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mimeType. + */ + com.google.protobuf.ByteString getMimeTypeBytes(); + + /** + * + * + *
+   * Optional. The sample of the custom voice.
+   * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The voiceSampleAudio. + */ + com.google.protobuf.ByteString getVoiceSampleAudio(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinity.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinity.java index e5a77905184d..426c8c848bf0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinity.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinity.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityOrBuilder.java index 4d446487f53a..3c189527f6d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityProto.java index 457db3b63d27..3752860f0fc8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ReservationAffinityProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePool.java index bc0eb6c0dec8..6ec7f373a97c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePoolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePoolOrBuilder.java index 22e7e1cd5dc5..a0cf2c4e816f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePoolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcePoolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntime.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntime.java index e722eeb3d04a..8e1118a06002 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntime.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeOrBuilder.java index 7f920dbdf624..c98d37b079c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpec.java index 58dff64e19c4..64c79c2c26b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpecOrBuilder.java index 9b9bfc23880e..68868f038722 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourceRuntimeSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumed.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumed.java index 287eb71f443c..17df2c837c82 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumed.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumedOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumedOrBuilder.java index ab83b49bf824..a8f7dc837b6f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumedOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResourcesConsumedOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadata.java index 630272d4719b..fcf393a83a70 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadataOrBuilder.java index c8d1b3cc6d80..89dbe58375c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequest.java index 75d6185263e9..c985738b4178 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequestOrBuilder.java index db784ab54561..0bfc8053babe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RestoreDatasetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequest.java index 0fe4234344b1..881876618ad6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java index a7df9814135d..cb8e10cb03c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequest.java index 4b65c3cd7a09..3f6e190138ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequestOrBuilder.java index 3c2da9a35ced..f404da6cf96c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ResumeScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Retrieval.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Retrieval.java index 7356e70bece0..0902b846dcf8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Retrieval.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Retrieval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -238,7 +238,7 @@ public com.google.cloud.aiplatform.v1.VertexRagStoreOrBuilder getVertexRagStoreO *
* * @deprecated google.cloud.aiplatform.v1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=386 + * google/cloud/aiplatform/v1/tool.proto;l=426 * @return The disableAttribution. */ @java.lang.Override @@ -1146,7 +1146,7 @@ public com.google.cloud.aiplatform.v1.VertexRagStoreOrBuilder getVertexRagStoreO *
* * @deprecated google.cloud.aiplatform.v1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=386 + * google/cloud/aiplatform/v1/tool.proto;l=426 * @return The disableAttribution. */ @java.lang.Override @@ -1167,7 +1167,7 @@ public boolean getDisableAttribution() { *
* * @deprecated google.cloud.aiplatform.v1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=386 + * google/cloud/aiplatform/v1/tool.proto;l=426 * @param value The disableAttribution to set. * @return This builder for chaining. */ @@ -1192,7 +1192,7 @@ public Builder setDisableAttribution(boolean value) { *
* * @deprecated google.cloud.aiplatform.v1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=386 + * google/cloud/aiplatform/v1/tool.proto;l=426 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfig.java index 3957d12cf2b2..36845389ef94 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfigOrBuilder.java index 4f8769828dae..7b2d5af82b09 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadata.java index c4189a580b24..106c5a657d37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadataOrBuilder.java index 6438975042db..9ed88c8d631c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalOrBuilder.java index c2efee1c3873..959aae0542b6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrievalOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -113,7 +113,7 @@ public interface RetrievalOrBuilder *
* * @deprecated google.cloud.aiplatform.v1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=386 + * google/cloud/aiplatform/v1/tool.proto;l=426 * @return The disableAttribution. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequest.java index a9b09b10f234..5268316a1e9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequestOrBuilder.java index c58f9d41b890..3113367a75e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponse.java index 1b6e4606f227..6254ab9a1047 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponseOrBuilder.java index 4b81da98bdef..fe7ce30a35b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RetrieveContextsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInput.java index 7c83d29dfdc9..f820cd7c194b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInputOrBuilder.java index 103bd6793601..d516758fd77c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstance.java index 895cd2199683..3d810b86b490 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstanceOrBuilder.java index 6e4e95dd23bc..ef3def9f370b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValue.java index 267fb2888533..4696bc22e5ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValueOrBuilder.java index 1abb48f07e7f..139ae8edd765 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResults.java index 36478749de3a..2c9e528e64d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResultsOrBuilder.java index 7b72e91d600d..29f677f61004 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpec.java index 7da2b378a984..b0526de7f97b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpecOrBuilder.java index cf9f2d0f3b3f..c95d3a780750 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/RougeSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInput.java index f832bb22b01a..6f1715cf7dae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInputOrBuilder.java index fcc79c535761..cdb742e48e0f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstance.java index 476c374bcc30..db182ba80c15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstanceOrBuilder.java index 4fa25a26ae06..56cd61949593 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRating.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRating.java index 7db339bd09e3..bf526a59b65d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRating.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRating.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRatingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRatingOrBuilder.java index 1a5f4fd75799..b358a5d3d455 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRatingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyRatingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResult.java index 6d207ae31b50..4860aca9b399 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResultOrBuilder.java index a5881a013308..c766999ce4bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetyResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySetting.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySetting.java index 32481d26cc6e..873ebfe0dd3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySetting.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySetting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySettingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySettingOrBuilder.java index d429938ea9f9..215a4263b1ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySettingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySettingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpec.java index 162d86503274..b992ba011f72 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpecOrBuilder.java index 904fab55f4f9..bd2a1ca07f21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SafetySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfig.java index 27a1819e4a03..330f548ce5f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfigOrBuilder.java index 8497a7ab6fa9..09c1fbae7c97 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampleConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttribution.java index 77c316d9f767..8627c0188bff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttributionOrBuilder.java index e34322da0681..abf8baa6038a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SampledShapleyAttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategy.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategy.java index 5b8bd668391e..a27a4dda001c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategy.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategyOrBuilder.java index 126aae88ec81..88ce6b9cf7bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SamplingStrategyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQuery.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQuery.java index 9a27c6b1b566..7345f8e8568f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQuery.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryName.java index e29a253036ff..4fe178a6d9a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryOrBuilder.java index c302a2177ae5..a639fc725900 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryProto.java index 9d22ebb0f13c..3b7a285ae982 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SavedQueryProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scalar.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scalar.java index 89935ae1bf7d..0adb47241a7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scalar.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scalar.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScalarOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScalarOrBuilder.java index b1134a3994dc..46b2f6495e55 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScalarOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScalarOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schedule.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schedule.java index 9eed3e0a5711..c726e0e72f3b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schedule.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleName.java index 7a7ae6229e18..3d63365f6ec6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleOrBuilder.java index 95efaa4fdeed..b1c0ccf3afd7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleProto.java index 005c042c9d48..8877906f1848 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceProto.java index 9d31fad48bd3..bcf962ab6170 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ScheduleServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scheduling.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scheduling.java index 5b4d92dbac56..58e9accdef17 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scheduling.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Scheduling.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchedulingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchedulingOrBuilder.java index 904518474ffe..545d62b899f3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchedulingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchedulingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schema.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schema.java index b6c3075d25bb..d492dda3cdc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schema.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Schema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchemaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchemaOrBuilder.java index 064dba3af216..5a38e3ebe6fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchemaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequest.java index b6cff921965d..28058e4a76f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequestOrBuilder.java index 46107d92eac0..f2f5bded7b4a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponse.java index 089b710e633c..c02ea4e2a64d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponseOrBuilder.java index 8aacd27df945..d6944a427b9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchDataItemsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPoint.java index 163e4d05de71..ae536d820d61 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPointOrBuilder.java index fd6c32756f11..fa0c30d703d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchEntryPointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequest.java index 1e2ae847493d..22d1344430dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequestOrBuilder.java index 287e840ac5e7..c5a5e03a9083 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponse.java index eb1f55e2639f..ce26d08dd197 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponseOrBuilder.java index 94217733e723..ddcf4614a8df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchFeaturesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequest.java index 45189990c9e4..6e8f6068c77e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequestOrBuilder.java index 1eaae0c159f6..87faf2bcf265 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponse.java index 5cceb9ba0885..25603e2f50c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponseOrBuilder.java index 77c26673e464..28adf731a69f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchMigratableResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java index a8b3f959a4b8..f3135603cfff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java index 0ea5e49801ac..06e47cc66f97 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java index d5ed87359b64..c92b3ab0929c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java index f95810d4c587..156d4513f8b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequest.java index 0203c4fe659e..cd66bd7428a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequestOrBuilder.java index e049ac869659..31ed01d29c61 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponse.java index 794c22d5af84..0dc6f2b899e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponseOrBuilder.java index 1dc172120d6f..175e0a9ce5cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SearchNearestEntitiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVar.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVar.java index 2d4cab79614e..293a6e452f43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVar.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVar.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVarOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVarOrBuilder.java index 1f61b7718b1b..fc475c30a9a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVarOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretEnvVarOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRef.java index 3afc2f6936f3..009bab25536a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRefOrBuilder.java index 7abd4a90db79..3f1531ee478b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SecretRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Segment.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Segment.java index b3ed81b42cf7..e0b9d0068258 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Segment.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Segment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SegmentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SegmentOrBuilder.java index 7f016ce8a50a..c220a0a036f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SegmentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpec.java index e8c319230f6c..a23fc0430acc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpecOrBuilder.java index 15ff2185a8c2..b2b8cabe98ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceAccountSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceNetworkingProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceNetworkingProto.java index ee5f76f6443f..3413a411d90b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceNetworkingProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ServiceNetworkingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSources.java index 58a94d093493..642c3c005821 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSourcesOrBuilder.java index 491c92221b1a..180c80b28363 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSourcesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SharePointSourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfig.java index 2e106d95da75..5ee7659bcebf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfigOrBuilder.java index 8d3a2f036841..20165bf77f27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ShieldedVmConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSource.java index 8f272766e589..bffb1627f65e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSourceOrBuilder.java index 5ef183e1973b..74cd98543faa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SlackSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfig.java index 963e4afdd1d8..632a670d04c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfigOrBuilder.java index 5279073cd964..a4920f8c95ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SmoothGradConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeakerVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeakerVoiceConfig.java new file mode 100644 index 000000000000..d705cc008783 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeakerVoiceConfig.java @@ -0,0 +1,958 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Configuration for a single speaker in a multi-speaker setup.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.SpeakerVoiceConfig} + */ +public final class SpeakerVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.SpeakerVoiceConfig) + SpeakerVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use SpeakerVoiceConfig.newBuilder() to construct. + private SpeakerVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private SpeakerVoiceConfig() { + speaker_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new SpeakerVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder.class); + } + + private int bitField0_; + public static final int SPEAKER_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object speaker_ = ""; + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The speaker. + */ + @java.lang.Override + public java.lang.String getSpeaker() { + java.lang.Object ref = speaker_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + speaker_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for speaker. + */ + @java.lang.Override + public com.google.protobuf.ByteString getSpeakerBytes() { + java.lang.Object ref = speaker_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + speaker_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VOICE_CONFIG_FIELD_NUMBER = 2; + private com.google.cloud.aiplatform.v1.VoiceConfig voiceConfig_; + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the voiceConfig field is set. + */ + @java.lang.Override + public boolean hasVoiceConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The voiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfig getVoiceConfig() { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder getVoiceConfigOrBuilder() { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(speaker_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, speaker_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getVoiceConfig()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(speaker_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, speaker_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getVoiceConfig()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.SpeakerVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig other = + (com.google.cloud.aiplatform.v1.SpeakerVoiceConfig) obj; + + if (!getSpeaker().equals(other.getSpeaker())) return false; + if (hasVoiceConfig() != other.hasVoiceConfig()) return false; + if (hasVoiceConfig()) { + if (!getVoiceConfig().equals(other.getVoiceConfig())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + SPEAKER_FIELD_NUMBER; + hash = (53 * hash) + getSpeaker().hashCode(); + if (hasVoiceConfig()) { + hash = (37 * hash) + VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getVoiceConfig().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.SpeakerVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for a single speaker in a multi-speaker setup.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.SpeakerVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.SpeakerVoiceConfig) + com.google.cloud.aiplatform.v1.SpeakerVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getVoiceConfigFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + speaker_ = ""; + voiceConfig_ = null; + if (voiceConfigBuilder_ != null) { + voiceConfigBuilder_.dispose(); + voiceConfigBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig build() { + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1.SpeakerVoiceConfig result = + new com.google.cloud.aiplatform.v1.SpeakerVoiceConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.SpeakerVoiceConfig result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.speaker_ = speaker_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.voiceConfig_ = + voiceConfigBuilder_ == null ? voiceConfig_ : voiceConfigBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.SpeakerVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1.SpeakerVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.SpeakerVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1.SpeakerVoiceConfig.getDefaultInstance()) + return this; + if (!other.getSpeaker().isEmpty()) { + speaker_ = other.speaker_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasVoiceConfig()) { + mergeVoiceConfig(other.getVoiceConfig()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + speaker_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + input.readMessage(getVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object speaker_ = ""; + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The speaker. + */ + public java.lang.String getSpeaker() { + java.lang.Object ref = speaker_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + speaker_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for speaker. + */ + public com.google.protobuf.ByteString getSpeakerBytes() { + java.lang.Object ref = speaker_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + speaker_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The speaker to set. + * @return This builder for chaining. + */ + public Builder setSpeaker(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + speaker_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearSpeaker() { + speaker_ = getDefaultInstance().getSpeaker(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for speaker to set. + * @return This builder for chaining. + */ + public Builder setSpeakerBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + speaker_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.cloud.aiplatform.v1.VoiceConfig voiceConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.VoiceConfig, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder> + voiceConfigBuilder_; + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the voiceConfig field is set. + */ + public boolean hasVoiceConfig() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The voiceConfig. + */ + public com.google.cloud.aiplatform.v1.VoiceConfig getVoiceConfig() { + if (voiceConfigBuilder_ == null) { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } else { + return voiceConfigBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setVoiceConfig(com.google.cloud.aiplatform.v1.VoiceConfig value) { + if (voiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + voiceConfig_ = value; + } else { + voiceConfigBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setVoiceConfig( + com.google.cloud.aiplatform.v1.VoiceConfig.Builder builderForValue) { + if (voiceConfigBuilder_ == null) { + voiceConfig_ = builderForValue.build(); + } else { + voiceConfigBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeVoiceConfig(com.google.cloud.aiplatform.v1.VoiceConfig value) { + if (voiceConfigBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) + && voiceConfig_ != null + && voiceConfig_ != com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance()) { + getVoiceConfigBuilder().mergeFrom(value); + } else { + voiceConfig_ = value; + } + } else { + voiceConfigBuilder_.mergeFrom(value); + } + if (voiceConfig_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearVoiceConfig() { + bitField0_ = (bitField0_ & ~0x00000002); + voiceConfig_ = null; + if (voiceConfigBuilder_ != null) { + voiceConfigBuilder_.dispose(); + voiceConfigBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.VoiceConfig.Builder getVoiceConfigBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder getVoiceConfigOrBuilder() { + if (voiceConfigBuilder_ != null) { + return voiceConfigBuilder_.getMessageOrBuilder(); + } else { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.VoiceConfig, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder> + getVoiceConfigFieldBuilder() { + if (voiceConfigBuilder_ == null) { + voiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.VoiceConfig, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder>( + getVoiceConfig(), getParentForChildren(), isClean()); + voiceConfig_ = null; + } + return voiceConfigBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.SpeakerVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.SpeakerVoiceConfig) + private static final com.google.cloud.aiplatform.v1.SpeakerVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.SpeakerVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1.SpeakerVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public SpeakerVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeakerVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeakerVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeakerVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..8eab047018d3 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeakerVoiceConfigOrBuilder.java @@ -0,0 +1,97 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface SpeakerVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.SpeakerVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The speaker. + */ + java.lang.String getSpeaker(); + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for speaker. + */ + com.google.protobuf.ByteString getSpeakerBytes(); + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the voiceConfig field is set. + */ + boolean hasVoiceConfig(); + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The voiceConfig. + */ + com.google.cloud.aiplatform.v1.VoiceConfig getVoiceConfig(); + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder getVoiceConfigOrBuilder(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPool.java index c839441227b5..516028671043 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolName.java index 86347c779296..9b6cab8a9806 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolOrBuilder.java index dd9eeeb86151..af45ccfa6e01 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolProto.java index fab61dfc6450..46b1d5454dd7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceProto.java index 978342dfc1e4..a8563dcf0d06 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpecialistPoolServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpec.java index a2ca87141cbf..6da0c529ce94 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpecOrBuilder.java index f9714e9268c4..8b09be7d56c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeculativeDecodingSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeechConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeechConfig.java new file mode 100644 index 000000000000..466c1e58b359 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeechConfig.java @@ -0,0 +1,1242 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Configuration for speech generation.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.SpeechConfig} + */ +public final class SpeechConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.SpeechConfig) + SpeechConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use SpeechConfig.newBuilder() to construct. + private SpeechConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private SpeechConfig() { + languageCode_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new SpeechConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeechConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeechConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.SpeechConfig.class, + com.google.cloud.aiplatform.v1.SpeechConfig.Builder.class); + } + + private int bitField0_; + public static final int VOICE_CONFIG_FIELD_NUMBER = 1; + private com.google.cloud.aiplatform.v1.VoiceConfig voiceConfig_; + + /** + * + * + *
+   * The configuration for the voice to use.
+   * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + * + * @return Whether the voiceConfig field is set. + */ + @java.lang.Override + public boolean hasVoiceConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * The configuration for the voice to use.
+   * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + * + * @return The voiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfig getVoiceConfig() { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + + /** + * + * + *
+   * The configuration for the voice to use.
+   * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder getVoiceConfigOrBuilder() { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + + public static final int LANGUAGE_CODE_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object languageCode_ = ""; + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The languageCode. + */ + @java.lang.Override + public java.lang.String getLanguageCode() { + java.lang.Object ref = languageCode_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + languageCode_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for languageCode. + */ + @java.lang.Override + public com.google.protobuf.ByteString getLanguageCodeBytes() { + java.lang.Object ref = languageCode_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + languageCode_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int MULTI_SPEAKER_VOICE_CONFIG_FIELD_NUMBER = 3; + private com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multiSpeakerVoiceConfig_; + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return Whether the multiSpeakerVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasMultiSpeakerVoiceConfig() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return The multiSpeakerVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig getMultiSpeakerVoiceConfig() { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder + getMultiSpeakerVoiceConfigOrBuilder() { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getVoiceConfig()); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(languageCode_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, languageCode_); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(3, getMultiSpeakerVoiceConfig()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getVoiceConfig()); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(languageCode_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, languageCode_); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(3, getMultiSpeakerVoiceConfig()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.SpeechConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.SpeechConfig other = + (com.google.cloud.aiplatform.v1.SpeechConfig) obj; + + if (hasVoiceConfig() != other.hasVoiceConfig()) return false; + if (hasVoiceConfig()) { + if (!getVoiceConfig().equals(other.getVoiceConfig())) return false; + } + if (!getLanguageCode().equals(other.getLanguageCode())) return false; + if (hasMultiSpeakerVoiceConfig() != other.hasMultiSpeakerVoiceConfig()) return false; + if (hasMultiSpeakerVoiceConfig()) { + if (!getMultiSpeakerVoiceConfig().equals(other.getMultiSpeakerVoiceConfig())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasVoiceConfig()) { + hash = (37 * hash) + VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getVoiceConfig().hashCode(); + } + hash = (37 * hash) + LANGUAGE_CODE_FIELD_NUMBER; + hash = (53 * hash) + getLanguageCode().hashCode(); + if (hasMultiSpeakerVoiceConfig()) { + hash = (37 * hash) + MULTI_SPEAKER_VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getMultiSpeakerVoiceConfig().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.SpeechConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for speech generation.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.SpeechConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.SpeechConfig) + com.google.cloud.aiplatform.v1.SpeechConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeechConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeechConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.SpeechConfig.class, + com.google.cloud.aiplatform.v1.SpeechConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.SpeechConfig.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getVoiceConfigFieldBuilder(); + getMultiSpeakerVoiceConfigFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + voiceConfig_ = null; + if (voiceConfigBuilder_ != null) { + voiceConfigBuilder_.dispose(); + voiceConfigBuilder_ = null; + } + languageCode_ = ""; + multiSpeakerVoiceConfig_ = null; + if (multiSpeakerVoiceConfigBuilder_ != null) { + multiSpeakerVoiceConfigBuilder_.dispose(); + multiSpeakerVoiceConfigBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_SpeechConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeechConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeechConfig build() { + com.google.cloud.aiplatform.v1.SpeechConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeechConfig buildPartial() { + com.google.cloud.aiplatform.v1.SpeechConfig result = + new com.google.cloud.aiplatform.v1.SpeechConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.SpeechConfig result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.voiceConfig_ = + voiceConfigBuilder_ == null ? voiceConfig_ : voiceConfigBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.languageCode_ = languageCode_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.multiSpeakerVoiceConfig_ = + multiSpeakerVoiceConfigBuilder_ == null + ? multiSpeakerVoiceConfig_ + : multiSpeakerVoiceConfigBuilder_.build(); + to_bitField0_ |= 0x00000002; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.SpeechConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1.SpeechConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.SpeechConfig other) { + if (other == com.google.cloud.aiplatform.v1.SpeechConfig.getDefaultInstance()) return this; + if (other.hasVoiceConfig()) { + mergeVoiceConfig(other.getVoiceConfig()); + } + if (!other.getLanguageCode().isEmpty()) { + languageCode_ = other.languageCode_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (other.hasMultiSpeakerVoiceConfig()) { + mergeMultiSpeakerVoiceConfig(other.getMultiSpeakerVoiceConfig()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage(getVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + languageCode_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + input.readMessage( + getMultiSpeakerVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000004; + break; + } // case 26 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private com.google.cloud.aiplatform.v1.VoiceConfig voiceConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.VoiceConfig, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder> + voiceConfigBuilder_; + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + * + * @return Whether the voiceConfig field is set. + */ + public boolean hasVoiceConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + * + * @return The voiceConfig. + */ + public com.google.cloud.aiplatform.v1.VoiceConfig getVoiceConfig() { + if (voiceConfigBuilder_ == null) { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } else { + return voiceConfigBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + public Builder setVoiceConfig(com.google.cloud.aiplatform.v1.VoiceConfig value) { + if (voiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + voiceConfig_ = value; + } else { + voiceConfigBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + public Builder setVoiceConfig( + com.google.cloud.aiplatform.v1.VoiceConfig.Builder builderForValue) { + if (voiceConfigBuilder_ == null) { + voiceConfig_ = builderForValue.build(); + } else { + voiceConfigBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + public Builder mergeVoiceConfig(com.google.cloud.aiplatform.v1.VoiceConfig value) { + if (voiceConfigBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) + && voiceConfig_ != null + && voiceConfig_ != com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance()) { + getVoiceConfigBuilder().mergeFrom(value); + } else { + voiceConfig_ = value; + } + } else { + voiceConfigBuilder_.mergeFrom(value); + } + if (voiceConfig_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + public Builder clearVoiceConfig() { + bitField0_ = (bitField0_ & ~0x00000001); + voiceConfig_ = null; + if (voiceConfigBuilder_ != null) { + voiceConfigBuilder_.dispose(); + voiceConfigBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + public com.google.cloud.aiplatform.v1.VoiceConfig.Builder getVoiceConfigBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + public com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder getVoiceConfigOrBuilder() { + if (voiceConfigBuilder_ != null) { + return voiceConfigBuilder_.getMessageOrBuilder(); + } else { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + } + + /** + * + * + *
+     * The configuration for the voice to use.
+     * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.VoiceConfig, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder> + getVoiceConfigFieldBuilder() { + if (voiceConfigBuilder_ == null) { + voiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.VoiceConfig, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder>( + getVoiceConfig(), getParentForChildren(), isClean()); + voiceConfig_ = null; + } + return voiceConfigBuilder_; + } + + private java.lang.Object languageCode_ = ""; + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The languageCode. + */ + public java.lang.String getLanguageCode() { + java.lang.Object ref = languageCode_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + languageCode_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for languageCode. + */ + public com.google.protobuf.ByteString getLanguageCodeBytes() { + java.lang.Object ref = languageCode_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + languageCode_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The languageCode to set. + * @return This builder for chaining. + */ + public Builder setLanguageCode(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + languageCode_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearLanguageCode() { + languageCode_ = getDefaultInstance().getLanguageCode(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for languageCode to set. + * @return This builder for chaining. + */ + public Builder setLanguageCodeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + languageCode_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multiSpeakerVoiceConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder> + multiSpeakerVoiceConfigBuilder_; + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return Whether the multiSpeakerVoiceConfig field is set. + */ + public boolean hasMultiSpeakerVoiceConfig() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return The multiSpeakerVoiceConfig. + */ + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig getMultiSpeakerVoiceConfig() { + if (multiSpeakerVoiceConfigBuilder_ == null) { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } else { + return multiSpeakerVoiceConfigBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder setMultiSpeakerVoiceConfig( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig value) { + if (multiSpeakerVoiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + multiSpeakerVoiceConfig_ = value; + } else { + multiSpeakerVoiceConfigBuilder_.setMessage(value); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder setMultiSpeakerVoiceConfig( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder builderForValue) { + if (multiSpeakerVoiceConfigBuilder_ == null) { + multiSpeakerVoiceConfig_ = builderForValue.build(); + } else { + multiSpeakerVoiceConfigBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder mergeMultiSpeakerVoiceConfig( + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig value) { + if (multiSpeakerVoiceConfigBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0) + && multiSpeakerVoiceConfig_ != null + && multiSpeakerVoiceConfig_ + != com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance()) { + getMultiSpeakerVoiceConfigBuilder().mergeFrom(value); + } else { + multiSpeakerVoiceConfig_ = value; + } + } else { + multiSpeakerVoiceConfigBuilder_.mergeFrom(value); + } + if (multiSpeakerVoiceConfig_ != null) { + bitField0_ |= 0x00000004; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder clearMultiSpeakerVoiceConfig() { + bitField0_ = (bitField0_ & ~0x00000004); + multiSpeakerVoiceConfig_ = null; + if (multiSpeakerVoiceConfigBuilder_ != null) { + multiSpeakerVoiceConfigBuilder_.dispose(); + multiSpeakerVoiceConfigBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder + getMultiSpeakerVoiceConfigBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getMultiSpeakerVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder + getMultiSpeakerVoiceConfigOrBuilder() { + if (multiSpeakerVoiceConfigBuilder_ != null) { + return multiSpeakerVoiceConfigBuilder_.getMessageOrBuilder(); + } else { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder> + getMultiSpeakerVoiceConfigFieldBuilder() { + if (multiSpeakerVoiceConfigBuilder_ == null) { + multiSpeakerVoiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder>( + getMultiSpeakerVoiceConfig(), getParentForChildren(), isClean()); + multiSpeakerVoiceConfig_ = null; + } + return multiSpeakerVoiceConfigBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.SpeechConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.SpeechConfig) + private static final com.google.cloud.aiplatform.v1.SpeechConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.SpeechConfig(); + } + + public static com.google.cloud.aiplatform.v1.SpeechConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public SpeechConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.SpeechConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeechConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeechConfigOrBuilder.java new file mode 100644 index 000000000000..301596f90aca --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SpeechConfigOrBuilder.java @@ -0,0 +1,133 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface SpeechConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.SpeechConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The configuration for the voice to use.
+   * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + * + * @return Whether the voiceConfig field is set. + */ + boolean hasVoiceConfig(); + + /** + * + * + *
+   * The configuration for the voice to use.
+   * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + * + * @return The voiceConfig. + */ + com.google.cloud.aiplatform.v1.VoiceConfig getVoiceConfig(); + + /** + * + * + *
+   * The configuration for the voice to use.
+   * 
+ * + * .google.cloud.aiplatform.v1.VoiceConfig voice_config = 1; + */ + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder getVoiceConfigOrBuilder(); + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The languageCode. + */ + java.lang.String getLanguageCode(); + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for languageCode. + */ + com.google.protobuf.ByteString getLanguageCodeBytes(); + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return Whether the multiSpeakerVoiceConfig field is set. + */ + boolean hasMultiSpeakerVoiceConfig(); + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return The multiSpeakerVoiceConfig. + */ + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig getMultiSpeakerVoiceConfig(); + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + com.google.cloud.aiplatform.v1.MultiSpeakerVoiceConfigOrBuilder + getMultiSpeakerVoiceConfigOrBuilder(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadata.java index 0914a99274c2..392875e69164 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadataOrBuilder.java index a61924b1a911..ceb096acf57f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequest.java index e1a41624f9d5..dfb0ab36ee90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequestOrBuilder.java index d3da93ad4221..04ee691a3f0b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponse.java index e198df5bda81..58f438d5f82e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponseOrBuilder.java index e17bd1a87e3c..55bde11fbd53 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StartNotebookRuntimeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadata.java index a0f554a70723..3340b2f49abe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadataOrBuilder.java index 702f82a5bf0a..2a24c3bc0d10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequest.java index 40a3287b1725..ebe42135c165 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequestOrBuilder.java index a748b0008e21..c5c536c45fe5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponse.java index c11489003e07..9fc5eae9c8f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponseOrBuilder.java index 1f51726a2539..e62f1cf36b55 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopNotebookRuntimeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequest.java index 60a79c514563..006c091c3fa0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequestOrBuilder.java index efd759a471c0..57ba333cebda 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StopTrialRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplit.java index 19ad196d2313..0713fae333a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplitOrBuilder.java index a81e583df6c1..68006ada15bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StratifiedSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequest.java index 08e68ee2cc31..4f96e591bd7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequestOrBuilder.java index bdb9a195d767..92ee818f2de6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponse.java index a61971984bd2..e21bcc5aae61 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponseOrBuilder.java index 1e2065148585..7a5c262aeb5b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequest.java index 154eefd5f8c5..b3929fe70ee7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequestOrBuilder.java index 780d5efe8b36..96e3c0fea93b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponse.java index 1c53f943e61c..9c805711b311 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponseOrBuilder.java index a5753bcc3def..75d7ec1f9564 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamDirectRawPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequest.java index b3ae5c83ab91..bca616213ee3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequestOrBuilder.java index 9b0c81295462..fdb0b1964f37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamQueryReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequest.java index 300dcc66ec73..febc77c3d8a2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequestOrBuilder.java index b6e749bb5454..6fb0254ffe6a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequest.java index ed9710180e8f..db25805d788f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequestOrBuilder.java index da75354c2708..d7ea9d70dfb6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponse.java index 5571ba106d34..af5dcb04a3bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponseOrBuilder.java index 8e79e744720c..4978e1804344 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequest.java index 9ce1113d128e..5816490ae6ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequestOrBuilder.java index 3ed4b32c892f..71875230dbdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponse.java index 076339bd44c8..5a77088e8eb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponseOrBuilder.java index ae0d5e519fc4..fd3ed5b52e53 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingRawPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequest.java index 64d691a7ea28..87bbaab9f2e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequestOrBuilder.java index a45539beec44..f8fe2da07cc5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StreamingReadFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArray.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArray.java index 9ed05d61ecbd..cdae9192c925 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArray.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArrayOrBuilder.java index f83b373ff90c..e2fc4de0ee91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StringArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValue.java index b4bed8e89a1d..24c2d13786f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValueOrBuilder.java index e7aac111160a..9c4909907cd5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructFieldValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValue.java index 1fef174e8eef..9fc7b02b8022 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValueOrBuilder.java index aebe17a86413..23c0ba11406c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StructValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Study.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Study.java index ad18382a13f3..279350072451 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Study.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Study.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyName.java index 06af78359359..ef374ad4d149 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyOrBuilder.java index 69587e2e3387..a9ab92a759ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyProto.java index 618291ab0a02..c47b10018775 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpec.java index 308fed46c9ae..2cc191d7780d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpecOrBuilder.java index 559611b5d4a5..2119c5e0ec67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraint.java index 62cbee7168f0..f09164bec552 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraintOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraintOrBuilder.java index df82471565f7..0334f5fcb0e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraintOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/StudyTimeConstraintOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadata.java index 00da2fb8c95a..6cfa84fa135a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadataOrBuilder.java index 4d90446883fc..b044ade46467 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequest.java index 71614e826ccd..52ab9f8629b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequestOrBuilder.java index 8d1bb2502f3e..350636792340 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponse.java index ecc592a682f2..0ff0510fe10e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponseOrBuilder.java index 018db217363a..3402c9969696 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SuggestTrialsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInput.java index 939184eeedfa..d7a53777f10f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInputOrBuilder.java index b022ba15a179..c961e167fd25 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstance.java index 9441af225af0..d5b84940665d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstanceOrBuilder.java index f6ff18cb81f8..b628f5f2683b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResult.java index 689dda2b198b..b7f5b2f618e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResultOrBuilder.java index e32747ff35c5..592319bd6795 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpec.java index 47c5233806a8..49b22f81b58e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpecOrBuilder.java index f854e5a2cc1e..fff9d9605029 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationHelpfulnessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInput.java index 7b2ec9b0b71b..9e35a1d48ac5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInputOrBuilder.java index f795af8bf654..ff703c8358b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstance.java index 692ef36763ec..dc9b70760ae8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstanceOrBuilder.java index 97f9e4bc04e3..a01934c97930 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResult.java index 1ae94ff1b471..534ce6bb9610 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResultOrBuilder.java index b0fe2567200f..be3617dbdbff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpec.java index a87c8affdb91..03814152a4f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpecOrBuilder.java index e8504cf1929f..ecc431d325bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInput.java index 27fb5e50478f..2f7c93b88d58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInputOrBuilder.java index 5931befb2678..379a0e78509e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstance.java index 2c37d452bb37..0311b5f80295 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstanceOrBuilder.java index 2f70cd24befe..a84a9ac8e817 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResult.java index b59fa1f014e0..c30828b18731 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResultOrBuilder.java index bb26616672f3..320f29919f85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbosityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpec.java index d2f8b781b567..411fb3b4a72e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpecOrBuilder.java index b9454a91442a..470c9a7b4576 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SummarizationVerbositySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParameters.java index 617347568c4d..4bfc512b94ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParametersOrBuilder.java index 4a4f1eb2e7c7..9bc30de17bcf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedHyperParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStats.java index 048e3fb96d8a..67b056d49d42 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStatsOrBuilder.java index ac692affe123..b2e02dc613e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDataStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistribution.java index e80216f74072..d9e8980fc0e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistributionOrBuilder.java index 8b6b7739d6aa..bba7388b2de8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningDatasetDistributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpec.java index f376958ff7ef..75fc9d4a3044 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpecOrBuilder.java index 0f77f17f0485..ea361b6c0351 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SupervisedTuningSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequest.java index f7a1cd1a028d..364c211f8d51 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequestOrBuilder.java index 4ef59fef0718..f9d0086f765f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponse.java index 9d7fe57954f3..621de73f51bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponseOrBuilder.java index b0ecaa585d13..47f3b6fb46be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyncFeatureViewResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExample.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExample.java index e9e27fff7014..77f88b30ed6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExample.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExample.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExampleOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExampleOrBuilder.java index 4ab5bd6fc8e7..d858644c0a26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExampleOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticExampleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticField.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticField.java index b02d60de3bc1..e31599794600 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticField.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticField.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticFieldOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticFieldOrBuilder.java index c95c3d7a44fc..2b70796cd297 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticFieldOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/SyntheticFieldOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestination.java index 96e1d7ba6e9e..f7fdff77ffbd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestinationOrBuilder.java index 8e3b2284a344..39cb5e3687e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TFRecordDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategy.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategy.java index e45c3f1ac65a..9b9e0c921274 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategy.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategyOrBuilder.java index 7c642457d2bb..7bce4d274cdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TaskDescriptionStrategyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensor.java index 31c9ce1277dd..d66fc59d21f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorOrBuilder.java index d1dc147afeaf..50e2f14ac190 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensorboard.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensorboard.java index 2255d29f7363..cc88553be450 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensorboard.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlob.java index 88246fc1c5d9..f38b2bc44432 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobOrBuilder.java index fff0906cee90..b5f3216fa954 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequence.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequence.java index 12819a08f8d0..d1883c6ff50d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequence.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequence.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequenceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequenceOrBuilder.java index 8ca8a295f7a2..d9464f344c5d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequenceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardBlobSequenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardDataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardDataProto.java index 1f616ac7533b..1d711c3380eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardDataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardDataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperiment.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperiment.java index 11b40ae79689..1b6923c327b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperiment.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentName.java index b6bcb4943cf9..06edf5f5a7a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentOrBuilder.java index 37671e0b6c7c..c1368c6c9736 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentProto.java index b06ba42aeff5..5652de3b162e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardExperimentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardName.java index 01f408e70a1c..047090b53115 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardOrBuilder.java index 05e6264220c4..8ec65514b18b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardProto.java index 1639c2e57d63..66fba0cef0ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRun.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRun.java index adc31cfc2fd2..bf1df3ffcf2a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRun.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunName.java index e45be890f1ee..55abdd0376d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunOrBuilder.java index 71512feba6d1..c78b2bd1e57e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunProto.java index 37b2414f1e77..891b42286c00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardRunProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceProto.java index 69d68e27c6b4..97a3f6c6318d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensor.java index a2c9393f0160..4fa26d2f2177 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensorOrBuilder.java index f0003d8a280e..6622be1cf8ad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTensorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeries.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeries.java index 486dd16ddfe0..2ab67ba293c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeries.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesName.java index 6d7c71c7209a..87689b3ba6b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesOrBuilder.java index 4d2eca9d96ce..9951e30faa58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesProto.java index abfcc66bab3a..2dee60eada38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TensorboardTimeSeriesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfig.java index aa3d3432727d..e6a7a7875b6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfigOrBuilder.java index bcce664011b2..8b5eb958e5d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ThresholdConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesData.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesData.java index 181ea31ad27e..45edf5c9a427 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesData.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataOrBuilder.java index 19fce0fa6dde..5538f25da3ad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPoint.java index 1c399a096f48..69ef1d7341ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPointOrBuilder.java index b13a7b8a9970..d19a7214ce72 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimeSeriesDataPointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplit.java index 07513f6005d3..dc88a52ef6d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplitOrBuilder.java index 2eb806f724ad..a5b210aedf3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TimestampSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfo.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfo.java index d8041e8607bf..37c0d0b34398 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfo.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfoOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfoOrBuilder.java index 7fd25ed95acf..4e72b3667cd5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfoOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TokensInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tool.java index a962df5b2821..2053962af45d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Tool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -3613,7 +3613,7 @@ public com.google.cloud.aiplatform.v1.Tool.CodeExecutionOrBuilder getCodeExecuti : codeExecution_; } - public static final int URL_CONTEXT_FIELD_NUMBER = 8; + public static final int URL_CONTEXT_FIELD_NUMBER = 10; private com.google.cloud.aiplatform.v1.UrlContext urlContext_; /** @@ -3624,7 +3624,7 @@ public com.google.cloud.aiplatform.v1.Tool.CodeExecutionOrBuilder getCodeExecuti *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the urlContext field is set. @@ -3642,7 +3642,7 @@ public boolean hasUrlContext() { *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The urlContext. @@ -3662,7 +3662,7 @@ public com.google.cloud.aiplatform.v1.UrlContext getUrlContext() { *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ @java.lang.Override @@ -3773,7 +3773,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io output.writeMessage(7, getGoogleSearch()); } if (((bitField0_ & 0x00000040) != 0)) { - output.writeMessage(8, getUrlContext()); + output.writeMessage(10, getUrlContext()); } if (((bitField0_ & 0x00000080) != 0)) { output.writeMessage(11, getComputerUse()); @@ -3811,7 +3811,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getGoogleSearch()); } if (((bitField0_ & 0x00000040) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, getUrlContext()); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(10, getUrlContext()); } if (((bitField0_ & 0x00000080) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(11, getComputerUse()); @@ -4387,12 +4387,12 @@ public Builder mergeFrom( bitField0_ |= 0x00000004; break; } // case 58 - case 66: + case 82: { input.readMessage(getUrlContextFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000080; break; - } // case 66 + } // case 82 case 90: { input.readMessage(getComputerUseFieldBuilder().getBuilder(), extensionRegistry); @@ -6355,7 +6355,7 @@ public com.google.cloud.aiplatform.v1.Tool.CodeExecutionOrBuilder getCodeExecuti *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the urlContext field is set. @@ -6372,7 +6372,7 @@ public boolean hasUrlContext() { *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The urlContext. @@ -6395,7 +6395,7 @@ public com.google.cloud.aiplatform.v1.UrlContext getUrlContext() { *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setUrlContext(com.google.cloud.aiplatform.v1.UrlContext value) { @@ -6420,7 +6420,7 @@ public Builder setUrlContext(com.google.cloud.aiplatform.v1.UrlContext value) { *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setUrlContext( @@ -6443,7 +6443,7 @@ public Builder setUrlContext( *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder mergeUrlContext(com.google.cloud.aiplatform.v1.UrlContext value) { @@ -6473,7 +6473,7 @@ public Builder mergeUrlContext(com.google.cloud.aiplatform.v1.UrlContext value) *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder clearUrlContext() { @@ -6495,7 +6495,7 @@ public Builder clearUrlContext() { *
* * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.cloud.aiplatform.v1.UrlContext.Builder getUrlContextBuilder() { @@ -6512,7 +6512,7 @@ public com.google.cloud.aiplatform.v1.UrlContext.Builder getUrlContextBuilder() * * * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.cloud.aiplatform.v1.UrlContextOrBuilder getUrlContextOrBuilder() { @@ -6533,7 +6533,7 @@ public com.google.cloud.aiplatform.v1.UrlContextOrBuilder getUrlContextOrBuilder * * * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ private com.google.protobuf.SingleFieldBuilderV3< diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInput.java index 5ac24faabc84..50c06175e73f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInputOrBuilder.java index 31dc90836029..078abd8c7e04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstance.java index fd41d018e9e5..9f72a0c026c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstanceOrBuilder.java index bfd6b59af4cd..d4aec9f3d4dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValue.java index c2cab7f683b4..587cfd7c1160 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValueOrBuilder.java index a008692bcbc6..a1ca2e89b912 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResults.java index 946b7351cc87..0081ab3c8b22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResultsOrBuilder.java index 51a02816382a..770fa6f94298 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpec.java index d676866463f8..a204369826eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpecOrBuilder.java index 7e693fb20141..f3b1dd4a3765 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolCallValidSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfig.java index 1a47270f6cfb..03dc79bf4426 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfigOrBuilder.java index 22964b363aa9..b28ac9f0233c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInput.java index 1d90ccbcaba1..5595b134efa8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInputOrBuilder.java index 8c3f251dc0f4..e0ccefa27885 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstance.java index e1cd7c91c81b..6d7c1cdd4d8f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstanceOrBuilder.java index 5ca1e3b44c2e..6824a31cdd70 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValue.java index 4c42771d96da..f8045549602a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValueOrBuilder.java index 16fd2576823b..6d30cc772478 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResults.java index a6a22948d5d5..1d465fe23313 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResultsOrBuilder.java index f0549cedd1b5..fbc6c4ab1ed8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpec.java index 6f573aa2177f..fb4aa088f371 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpecOrBuilder.java index 499b9aa249ba..d94bd895d3d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolNameMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolOrBuilder.java index 7fbb5bb59854..be64696b9c54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -421,7 +421,7 @@ com.google.cloud.aiplatform.v1.FunctionDeclarationOrBuilder getFunctionDeclarati * * * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the urlContext field is set. @@ -436,7 +436,7 @@ com.google.cloud.aiplatform.v1.FunctionDeclarationOrBuilder getFunctionDeclarati * * * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The urlContext. @@ -451,7 +451,7 @@ com.google.cloud.aiplatform.v1.FunctionDeclarationOrBuilder getFunctionDeclarati * * * - * .google.cloud.aiplatform.v1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ com.google.cloud.aiplatform.v1.UrlContextOrBuilder getUrlContextOrBuilder(); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInput.java index 6f71e5f1063c..47ed26b66121 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInputOrBuilder.java index 0ba7a1a9ef0d..08fa964dd63a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstance.java index 6d68dfbdffb2..bc2b801ad6c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstanceOrBuilder.java index 2185e53c5409..21577bd6f77d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValue.java index 81178cfcec16..6184733538d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValueOrBuilder.java index 55d676db8e09..486562f7fea7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResults.java index 6a57c6d4e652..1da60d1bd74c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResultsOrBuilder.java index adb872990f60..afed9e4d9142 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpec.java index 60823efda885..d2a176923fb6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpecOrBuilder.java index 35acafc3b41e..6e00b9ff044b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKVMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInput.java index f6c5582762a6..ebddeadc9ffc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInputOrBuilder.java index 9112216c54b6..4ba86c07719b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstance.java index 5d6267adb85c..6175badf2117 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstanceOrBuilder.java index e808524e6229..9e67e29b648b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValue.java index aaa595c01335..846df8a667db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValueOrBuilder.java index 6298225eefee..71228a09993c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResults.java index e137c19fd2a7..f3018749763f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResultsOrBuilder.java index 13d69880c402..6574da8321b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpec.java index 9cf27269981d..602f1068943e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpecOrBuilder.java index 43ebf00bfffb..4d779b9523e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolParameterKeyMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolProto.java index 7c6a7a7e3bc2..f772cc43d7d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ToolProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,6 +56,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1_FunctionCall_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1_FunctionCall_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1_PartialArg_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1_PartialArg_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1_FunctionResponsePart_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -162,7 +166,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\032google.cloud.aiplatform.v1\032\037google/api/" + "field_behavior.proto\032\031google/api/resourc" + "e.proto\032(google/cloud/aiplatform/v1/open" - + "api.proto\032\034google/protobuf/struct.proto\032\030google/type/latlng.proto\"\237\n\n" + + "api.proto\032\034google/protobuf/struct.proto\032\030google/type/latlng.proto\"\253\n\n" + "\004Tool\022S\n" + "\025function_declarations\030\001 \003(\0132/.google.cloud" + ".aiplatform.v1.FunctionDeclarationB\003\340A\001\022=\n" @@ -178,8 +182,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\001(\0132/.google.cloud.aiplatform.v1.EnterpriseWebSearchB\003\340A\001\022K\n" + "\016code_execution\030\004 \001(" + "\0132..google.cloud.aiplatform.v1.Tool.CodeExecutionB\003\340A\001\022@\n" - + "\013url_context\030\010 \001(\0132&.go" - + "ogle.cloud.aiplatform.v1.UrlContextB\003\340A\001\022G\n" + + "\013url_context\030\n" + + " \001(\0132&.google.cloud.aiplatform.v1.UrlContextB\003\340A\001\022G\n" + "\014computer_use\030\013" + " \001(\0132,.google.cloud.aiplatform.v1.Tool.ComputerUseB\003\340A\001\032\241\001\n" + "\014GoogleSearch\022\034\n" @@ -203,7 +207,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024BLOCK_HIGH_AND_ABOVE\0202\022\032\n" + "\026BLOCK_HIGHER_AND_ABOVE\0207\022\035\n" + "\031BLOCK_VERY_HIGH_AND_ABOVE\020<\022\035\n" - + "\031BLOCK_ONLY_EXTREMELY_HIGH\020d\"\014\n\n" + + "\031BLOCK_ONLY_EXTREMELY_HIGH\020dJ\004\010\010\020\tJ\004\010\t\020\n" + + "\"\014\n\n" + "UrlContext\"\262\002\n" + "\023FunctionDeclaration\022\021\n" + "\004name\030\001 \001(\tB\003\340A\002\022\030\n" @@ -211,18 +216,30 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "parameters\030\003 \001(\0132\".google.cloud.aiplatform.v1.SchemaB\003\340A\001\022;\n" + "\026parameters_json_schema\030\005" + " \001(\0132\026.google.protobuf.ValueB\003\340A\001\0229\n" - + "\010response\030\004 \001" - + "(\0132\".google.cloud.aiplatform.v1.SchemaB\003\340A\001\0229\n" + + "\010response\030\004" + + " \001(\0132\".google.cloud.aiplatform.v1.SchemaB\003\340A\001\0229\n" + "\024response_json_schema\030\006" - + " \001(\0132\026.google.protobuf.ValueB\003\340A\001\"M\n" + + " \001(\0132\026.google.protobuf.ValueB\003\340A\001\"\254\001\n" + "\014FunctionCall\022\021\n" - + "\004name\030\001 \001(\tB\003\340A\002\022*\n" - + "\004args\030\002 \001(\0132\027.google.protobuf.StructB\003\340A\001\"\262\001\n" + + "\004name\030\001 \001(\tB\003\340A\001\022*\n" + + "\004args\030\002 \001(\0132\027.google.protobuf.StructB\003\340A\001\022A\n" + + "\014partial_args\030\004" + + " \003(\0132&.google.cloud.aiplatform.v1.PartialArgB\003\340A\001\022\032\n\r" + + "will_continue\030\005 \001(\010B\003\340A\001\"\325\001\n\n" + + "PartialArg\0225\n\n" + + "null_value\030\002" + + " \001(\0162\032.google.protobuf.NullValueB\003\340A\001H\000\022\033\n" + + "\014number_value\030\003 \001(\001B\003\340A\001H\000\022\033\n" + + "\014string_value\030\004 \001(\tB\003\340A\001H\000\022\031\n\n" + + "bool_value\030\005 \001(\010B\003\340A\001H\000\022\026\n" + + "\tjson_path\030\001 \001(\tB\003\340A\002\022\032\n\r" + + "will_continue\030\006 \001(\010B\003\340A\001B\007\n" + + "\005delta\"\262\001\n" + "\024FunctionResponsePart\022G\n" - + "\013inline_data\030\001 \001(\01320.google.clo" - + "ud.aiplatform.v1.FunctionResponseBlobH\000\022I\n" - + "\tfile_data\030\002" - + " \001(\01324.google.cloud.aiplatform.v1.FunctionResponseFileDataH\000B\006\n" + + "\013inline_data\030\001 \001(\01320.google" + + ".cloud.aiplatform.v1.FunctionResponseBlobH\000\022I\n" + + "\tfile_data\030\002 \001(\01324.google.cloud.ai" + + "platform.v1.FunctionResponseFileDataH\000B\006\n" + "\004data\"\\\n" + "\024FunctionResponseBlob\022\026\n" + "\tmime_type\030\001 \001(\tB\003\340A\002\022\021\n" @@ -235,18 +252,18 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\020FunctionResponse\022\021\n" + "\004name\030\001 \001(\tB\003\340A\002\022.\n" + "\010response\030\002 \001(\0132\027.google.protobuf.StructB\003\340A\002\022D\n" - + "\005parts\030\004" - + " \003(\01320.google.cloud.aiplatform.v1.FunctionResponsePartB\003\340A\001\"\241\001\n" + + "\005parts\030\004 \003(\01320.google.cloud" + + ".aiplatform.v1.FunctionResponsePartB\003\340A\001\"\241\001\n" + "\016ExecutableCode\022J\n" - + "\010language\030\001 \001(\01623.goog" - + "le.cloud.aiplatform.v1.ExecutableCode.LanguageB\003\340A\002\022\021\n" + + "\010language\030\001 \001(\01623." + + "google.cloud.aiplatform.v1.ExecutableCode.LanguageB\003\340A\002\022\021\n" + "\004code\030\002 \001(\tB\003\340A\002\"0\n" + "\010Language\022\030\n" + "\024LANGUAGE_UNSPECIFIED\020\000\022\n\n" + "\006PYTHON\020\001\"\340\001\n" + "\023CodeExecutionResult\022M\n" - + "\007outcome\030\001 \001(" - + "\01627.google.cloud.aiplatform.v1.CodeExecutionResult.OutcomeB\003\340A\002\022\023\n" + + "\007outcome\030\001" + + " \001(\01627.google.cloud.aiplatform.v1.CodeExecutionResult.OutcomeB\003\340A\002\022\023\n" + "\006output\030\002 \001(\tB\003\340A\001\"e\n" + "\007Outcome\022\027\n" + "\023OUTCOME_UNSPECIFIED\020\000\022\016\n\n" @@ -261,15 +278,14 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\023disable_attribution\030\003 \001(\010B\005\030\001\340A\001B\010\n" + "\006source\"\252\003\n" + "\016VertexRagStore\022R\n\r" - + "rag_resources\030\004 \003(\01326.goog" - + "le.cloud.aiplatform.v1.VertexRagStore.RagResourceB\003\340A\001\022$\n" + + "rag_resources\030\004 \003(\01326." + + "google.cloud.aiplatform.v1.VertexRagStore.RagResourceB\003\340A\001\022$\n" + "\020similarity_top_k\030\002 \001(\005B\005\030\001\340A\001H\000\210\001\001\022-\n" + "\031vector_distance_threshold\030\003" + " \001(\001B\005\030\001\340A\001H\001\210\001\001\022Q\n" + "\024rag_retrieval_config\030\006" + " \001(\0132..google.cloud.aiplatform.v1.RagRetrievalConfigB\003\340A\001\032i\n" - + "\013RagResource\022?\n" - + "\n" + + "\013RagResource\022?\n\n" + "rag_corpus\030\001 \001(\tB+\340A\001\372A%\n" + "#aiplatform.googleapis.com/RagCorpus\022\031\n" + "\014rag_file_ids\030\002 \003(\tB\003\340A\001B\023\n" @@ -280,8 +296,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\006engine\030\002 \001(\tB\003\340A\001\022\030\n" + "\013max_results\030\003 \001(\005B\003\340A\001\022\023\n" + "\006filter\030\004 \001(\tB\003\340A\001\022R\n" - + "\020data_store_specs\030\005 \003(\01328." - + "google.cloud.aiplatform.v1.VertexAISearch.DataStoreSpec\0328\n\r" + + "\020data_store_specs\030\005 \003(" + + "\01328.google.cloud.aiplatform.v1.VertexAISearch.DataStoreSpec\0328\n\r" + "DataStoreSpec\022\022\n\n" + "data_store\030\001 \001(\t\022\023\n" + "\006filter\030\002 \001(\tB\003\340A\001\"m\n" @@ -292,12 +308,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "enable_widget\030\001 \001(\010B\003\340A\001\"\250\001\n" + "\023EnterpriseWebSearch\022\034\n" + "\017exclude_domains\030\001 \003(\tB\003\340A\001\022[\n" - + "\023blocking_confidence\030\002 \001(\01624.google.c" - + "loud.aiplatform.v1.Tool.PhishBlockThresholdB\003\340A\001H\000\210\001\001B\026\n" + + "\023blocking_confidence\030\002 \001(\01624.goog" + + "le.cloud.aiplatform.v1.Tool.PhishBlockThresholdB\003\340A\001H\000\210\001\001B\026\n" + "\024_blocking_confidence\"\312\001\n" + "\026DynamicRetrievalConfig\022E\n" - + "\004mode\030\001 \001(\01627" - + ".google.cloud.aiplatform.v1.DynamicRetrievalConfig.Mode\022#\n" + + "\004mode\030\001 \001" + + "(\01627.google.cloud.aiplatform.v1.DynamicRetrievalConfig.Mode\022#\n" + "\021dynamic_threshold\030\002 \001(\002B\003\340A\001H\000\210\001\001\".\n" + "\004Mode\022\024\n" + "\020MODE_UNSPECIFIED\020\000\022\020\n" @@ -307,11 +323,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\027function_calling_config\030\001" + " \001(\01321.google.cloud.aiplatform.v1.FunctionCallingConfigB\003\340A\001\022J\n" + "\020retrieval_config\030\002" - + " \001(\0132+.google.cloud.aiplatform.v1.RetrievalConfigB\003\340A\001\"\302\001\n" + + " \001(\0132+.google.cloud.aiplatform.v1.RetrievalConfigB\003\340A\001\"\357\001\n" + "\025FunctionCallingConfig\022I\n" - + "\004mode\030\001 \001(\01626.google.cloud.ai" - + "platform.v1.FunctionCallingConfig.ModeB\003\340A\001\022#\n" - + "\026allowed_function_names\030\002 \003(\tB\003\340A\001\"9\n" + + "\004mode\030\001 \001(\01626.google.clou" + + "d.aiplatform.v1.FunctionCallingConfig.ModeB\003\340A\001\022#\n" + + "\026allowed_function_names\030\002 \003(\tB\003\340A\001\022+\n" + + "\036stream_function_call_arguments\030\004 \001(\010B\003\340A\001\"9\n" + "\004Mode\022\024\n" + "\020MODE_UNSPECIFIED\020\000\022\010\n" + "\004AUTO\020\001\022\007\n" @@ -319,25 +336,26 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004NONE\020\003\"v\n" + "\017RetrievalConfig\022)\n" + "\007lat_lng\030\001 \001(\0132\023.google.type.LatLngH\000\210\001\001\022\032\n\r" - + "language_code\030\002 \001(\tH\001\210\001\001B\n\n" + + "language_code\030\002 \001(\tH\001\210\001\001B\n" + + "\n" + "\010_lat_lngB\020\n" + "\016_language_code\"\252\005\n" + "\022RagRetrievalConfig\022\022\n" + "\005top_k\030\001 \001(\005B\003\340A\001\022J\n" - + "\006filter\030\003 \001(\01325" - + ".google.cloud.aiplatform.v1.RagRetrievalConfig.FilterB\003\340A\001\022L\n" - + "\007ranking\030\004 \001(\01326.go" - + "ogle.cloud.aiplatform.v1.RagRetrievalConfig.RankingB\003\340A\001\032\223\001\n" + + "\006filter\030\003" + + " \001(\01325.google.cloud.aiplatform.v1.RagRetrievalConfig.FilterB\003\340A\001\022L\n" + + "\007ranking\030\004" + + " \001(\01326.google.cloud.aiplatform.v1.RagRetrievalConfig.RankingB\003\340A\001\032\223\001\n" + "\006Filter\022(\n" + "\031vector_distance_threshold\030\003 \001(\001B\003\340A\001H\000\022*\n" + "\033vector_similarity_threshold\030\004 \001(\001B\003\340A\001H\000\022\034\n" + "\017metadata_filter\030\002 \001(\tB\003\340A\001B\025\n" + "\023vector_db_threshold\032\317\002\n" + "\007Ranking\022_\n" - + "\014rank_service\030\001 \001(\013" - + "2B.google.cloud.aiplatform.v1.RagRetrievalConfig.Ranking.RankServiceB\003\340A\001H\000\022[\n\n" - + "llm_ranker\030\003 \001(\0132@.google.cloud.aiplatfor" - + "m.v1.RagRetrievalConfig.Ranking.LlmRankerB\003\340A\001H\000\032:\n" + + "\014rank_service\030\001 \001(\0132B.google.cloud.aiplatform.v1.R" + + "agRetrievalConfig.Ranking.RankServiceB\003\340A\001H\000\022[\n\n" + + "llm_ranker\030\003 \001(\0132@.google.cloud." + + "aiplatform.v1.RagRetrievalConfig.Ranking.LlmRankerB\003\340A\001H\000\032:\n" + "\013RankService\022\034\n\n" + "model_name\030\001 \001(\tB\003\340A\001H\000\210\001\001B\r\n" + "\013_model_name\0328\n" @@ -345,11 +363,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "model_name\030\001 \001(\tB\003\340A\001H\000\210\001\001B\r\n" + "\013_model_nameB\020\n" + "\016ranking_configB\307\001\n" - + "\036com.google.cloud.aiplatform.v1B\tToolProtoP\001Z>cloud." - + "google.com/go/aiplatform/apiv1/aiplatfor" - + "mpb;aiplatformpb\252\002\032Google.Cloud.AIPlatfo" - + "rm.V1\312\002\032Google\\Cloud\\AIPlatform\\V1\352\002\035Goo" - + "gle::Cloud::AIPlatform::V1b\006proto3" + + "\036com.google.cloud.aiplatform.v1B\tToolProtoP" + + "\001Z>cloud.google.com/go/aiplatform/apiv1/" + + "aiplatformpb;aiplatformpb\252\002\032Google.Cloud" + + ".AIPlatform.V1\312\002\032Google\\Cloud\\AIPlatform" + + "\\V1\352\002\035Google::Cloud::AIPlatform::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -424,10 +442,24 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FunctionCall_descriptor, new java.lang.String[] { - "Name", "Args", + "Name", "Args", "PartialArgs", "WillContinue", }); - internal_static_google_cloud_aiplatform_v1_FunctionResponsePart_descriptor = + internal_static_google_cloud_aiplatform_v1_PartialArg_descriptor = getDescriptor().getMessageTypes().get(4); + internal_static_google_cloud_aiplatform_v1_PartialArg_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1_PartialArg_descriptor, + new java.lang.String[] { + "NullValue", + "NumberValue", + "StringValue", + "BoolValue", + "JsonPath", + "WillContinue", + "Delta", + }); + internal_static_google_cloud_aiplatform_v1_FunctionResponsePart_descriptor = + getDescriptor().getMessageTypes().get(5); internal_static_google_cloud_aiplatform_v1_FunctionResponsePart_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FunctionResponsePart_descriptor, @@ -435,7 +467,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "InlineData", "FileData", "Data", }); internal_static_google_cloud_aiplatform_v1_FunctionResponseBlob_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(6); internal_static_google_cloud_aiplatform_v1_FunctionResponseBlob_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FunctionResponseBlob_descriptor, @@ -443,7 +475,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MimeType", "Data", "DisplayName", }); internal_static_google_cloud_aiplatform_v1_FunctionResponseFileData_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(7); internal_static_google_cloud_aiplatform_v1_FunctionResponseFileData_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FunctionResponseFileData_descriptor, @@ -451,7 +483,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MimeType", "FileUri", "DisplayName", }); internal_static_google_cloud_aiplatform_v1_FunctionResponse_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(8); internal_static_google_cloud_aiplatform_v1_FunctionResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FunctionResponse_descriptor, @@ -459,7 +491,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", "Response", "Parts", }); internal_static_google_cloud_aiplatform_v1_ExecutableCode_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(9); internal_static_google_cloud_aiplatform_v1_ExecutableCode_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_ExecutableCode_descriptor, @@ -467,7 +499,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Language", "Code", }); internal_static_google_cloud_aiplatform_v1_CodeExecutionResult_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(10); internal_static_google_cloud_aiplatform_v1_CodeExecutionResult_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_CodeExecutionResult_descriptor, @@ -475,7 +507,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Outcome", "Output", }); internal_static_google_cloud_aiplatform_v1_Retrieval_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(11); internal_static_google_cloud_aiplatform_v1_Retrieval_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_Retrieval_descriptor, @@ -483,7 +515,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "VertexAiSearch", "VertexRagStore", "DisableAttribution", "Source", }); internal_static_google_cloud_aiplatform_v1_VertexRagStore_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(12); internal_static_google_cloud_aiplatform_v1_VertexRagStore_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_VertexRagStore_descriptor, @@ -501,7 +533,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "RagCorpus", "RagFileIds", }); internal_static_google_cloud_aiplatform_v1_VertexAISearch_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(13); internal_static_google_cloud_aiplatform_v1_VertexAISearch_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_VertexAISearch_descriptor, @@ -519,7 +551,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "DataStore", "Filter", }); internal_static_google_cloud_aiplatform_v1_GoogleSearchRetrieval_descriptor = - getDescriptor().getMessageTypes().get(13); + getDescriptor().getMessageTypes().get(14); internal_static_google_cloud_aiplatform_v1_GoogleSearchRetrieval_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_GoogleSearchRetrieval_descriptor, @@ -527,7 +559,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "DynamicRetrievalConfig", }); internal_static_google_cloud_aiplatform_v1_GoogleMaps_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(15); internal_static_google_cloud_aiplatform_v1_GoogleMaps_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_GoogleMaps_descriptor, @@ -535,7 +567,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "EnableWidget", }); internal_static_google_cloud_aiplatform_v1_EnterpriseWebSearch_descriptor = - getDescriptor().getMessageTypes().get(15); + getDescriptor().getMessageTypes().get(16); internal_static_google_cloud_aiplatform_v1_EnterpriseWebSearch_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_EnterpriseWebSearch_descriptor, @@ -543,7 +575,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "ExcludeDomains", "BlockingConfidence", }); internal_static_google_cloud_aiplatform_v1_DynamicRetrievalConfig_descriptor = - getDescriptor().getMessageTypes().get(16); + getDescriptor().getMessageTypes().get(17); internal_static_google_cloud_aiplatform_v1_DynamicRetrievalConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_DynamicRetrievalConfig_descriptor, @@ -551,7 +583,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Mode", "DynamicThreshold", }); internal_static_google_cloud_aiplatform_v1_ToolConfig_descriptor = - getDescriptor().getMessageTypes().get(17); + getDescriptor().getMessageTypes().get(18); internal_static_google_cloud_aiplatform_v1_ToolConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_ToolConfig_descriptor, @@ -559,15 +591,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "FunctionCallingConfig", "RetrievalConfig", }); internal_static_google_cloud_aiplatform_v1_FunctionCallingConfig_descriptor = - getDescriptor().getMessageTypes().get(18); + getDescriptor().getMessageTypes().get(19); internal_static_google_cloud_aiplatform_v1_FunctionCallingConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_FunctionCallingConfig_descriptor, new java.lang.String[] { - "Mode", "AllowedFunctionNames", + "Mode", "AllowedFunctionNames", "StreamFunctionCallArguments", }); internal_static_google_cloud_aiplatform_v1_RetrievalConfig_descriptor = - getDescriptor().getMessageTypes().get(19); + getDescriptor().getMessageTypes().get(20); internal_static_google_cloud_aiplatform_v1_RetrievalConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_RetrievalConfig_descriptor, @@ -575,7 +607,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "LatLng", "LanguageCode", }); internal_static_google_cloud_aiplatform_v1_RagRetrievalConfig_descriptor = - getDescriptor().getMessageTypes().get(20); + getDescriptor().getMessageTypes().get(21); internal_static_google_cloud_aiplatform_v1_RagRetrievalConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1_RagRetrievalConfig_descriptor, diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfig.java index 087763330625..5bfdbb8d4945 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfigOrBuilder.java index 1a621c85bb0d..882100d3ba53 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipeline.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipeline.java index 8249d3f8da4f..dc53e7723dae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipeline.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineName.java index 5082fe990184..7eb73783b6a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineOrBuilder.java index 6828ea975c41..e6809d709aa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineProto.java index b1ebaca4cb6d..c942c8f860e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrainingPipelineProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Trial.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Trial.java index 4cfec37a6ce4..b75e27ab7dda 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Trial.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Trial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContext.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContext.java index 38c25266ebdc..966225efb396 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContext.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContextOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContextOrBuilder.java index 72fc95511894..c4571e070dae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContextOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialContextOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialName.java index d35c3e29be55..4b1b71ce91b1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialOrBuilder.java index d53da7f2d053..7ec5f2f95fec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TrialOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModel.java index 5bf291180fd0..6e9f2634fd8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpoint.java index 30bddc6b6576..83ec478e8fe0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpointOrBuilder.java index 77da1867d583..c2ff48077895 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelCheckpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelOrBuilder.java index a73865c1cc08..a75fc25d6c90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRef.java index 641abaa05666..8d1e83cf37d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRefOrBuilder.java index 52ee9fc44a11..683a9b933edf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TunedModelRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStats.java index 4fc8b40fcd34..e35806dc0314 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStatsOrBuilder.java index 61e68f40cc65..0fcb6772ddc2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningDataStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJob.java index 2cb9a029e31b..2118a21a799a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobName.java index 3175a9b4bdd9..961cec6ce037 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobOrBuilder.java index 13b5094e4595..2ab2cc07db98 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobProto.java index dc3e991e724e..95d9d3a40516 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TuningJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Type.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Type.java index f82d32245b09..98e86466f1e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Type.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Type.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TypesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TypesProto.java index b21bb8b79c67..bef083d4882b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TypesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/TypesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadata.java index 1b2e9c064a0d..0bb3076519b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadataOrBuilder.java index 7a227886b3c7..f1e816d962b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequest.java index 90dad71c6f1f..9c43a0e27d20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequestOrBuilder.java index 5cf527d1edc7..dba7d9a4aabc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponse.java index 43ec61ab26d3..3f17b913b944 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponseOrBuilder.java index 37ff838e7ee9..f690af073fef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployIndexResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadata.java index 915d82d9bcc1..2bb47fb71d3a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadataOrBuilder.java index a1b1f15c81dd..8616aa49ae62 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequest.java index b2b077cc0871..ac7e0d637210 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequestOrBuilder.java index fbefb0cbac2b..940706589230 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponse.java index e51a998af65f..270bc83aec47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponseOrBuilder.java index f3ae7af51e36..13b9bd25ed07 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UndeployModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModel.java index b3d92adbe978..23a0fe7b2875 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelOrBuilder.java index 0bf83fbb7544..f7a4dbe28f9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelProto.java index 2126c23b6f25..6d237b50bef7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UnmanagedContainerModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequest.java index 8f82bf822590..b7b5037872c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequestOrBuilder.java index 6d2f4fb9a2ba..fd8a2daf04b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequest.java index 214ec0e718ac..3f8f04257879 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequestOrBuilder.java index e5daa064e4e0..177a182498e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateCachedContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequest.java index bb8bfc8e71a1..5380a776893e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequestOrBuilder.java index b94f19a21bfe..a9f5c6119809 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateContextRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequest.java index cb8d64176ef4..775a5aa1fcee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequestOrBuilder.java index 05430eb19f68..4f561d710682 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequest.java index e3c0ead4ae25..248dbb9c06c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequestOrBuilder.java index 002b8590d3ea..e04444e94409 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDatasetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadata.java index 01c65a54de38..1e68e9fef665 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java index 7f75ae4b1b71..ca569aaa58f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequest.java index fd86f5f49e98..9f1a07db3c26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequestOrBuilder.java index 6b8d012fb683..4c739b285759 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateDeploymentResourcePoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequest.java index 7e7c1bd58092..855d29effe2d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequestOrBuilder.java index de1dd9cd6085..a4538623761a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointLongRunningRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadata.java index 2ce7bb0c3420..c770a4f1a6f1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadataOrBuilder.java index 9e93c1d54675..0bef689a4ca4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequest.java index 2130856fb9c5..dde645b9fda8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequestOrBuilder.java index fce6f035d278..7c88737b7fef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequest.java index 7d5685e7bb99..d5f8b3b7548a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequestOrBuilder.java index c7591ce3a0ef..f690370c4458 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateEntityTypeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequest.java index 82ada561955b..c0d73b48453d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequestOrBuilder.java index 15696c007db7..772a4a957292 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExecutionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadata.java index 3bf9d838e0d9..97841eb9fc02 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadataOrBuilder.java index fddc95257906..cca832fdc599 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequest.java index a6fbbe9b7b61..fd13251b0532 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequestOrBuilder.java index c54d65c280b5..37b99bd3fdc3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponse.java index 50af18040e8b..7841eab72b2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponseOrBuilder.java index 1b58dbee37f9..aec4f4b5616f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateExplanationDatasetResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadata.java index b7310ae41414..a4931db278b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadataOrBuilder.java index c424ac18b94c..37e8586c9ce4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequest.java index f598bde22ca0..f0eebe7e502c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequestOrBuilder.java index b281f9cda419..f6664d7e4529 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadata.java index ddda0a8827fd..6ce67df2b2e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java index 5ff7bae4b1ba..4eed7f82dcbc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequest.java index 371b3e5e55b7..9bdcd88a01d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequestOrBuilder.java index 42938c0fb210..0411ba3af1a2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOnlineStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadata.java index f5ba1b9a2b7f..201d3d5c9a12 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadataOrBuilder.java index 2f28e74991be..6f1428c52724 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequest.java index 3b3368236a52..6a95d902800b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequestOrBuilder.java index 155504187f8d..10fe2e5092e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadata.java index 46b4a9c68478..57b6e1a2f5a2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadataOrBuilder.java index d1e55e8e7766..76cb3659f93a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequest.java index 8e8f242ab91e..a43109c12ba2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequestOrBuilder.java index 5d6194e13197..fe98cde08ce8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeatureViewRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadata.java index 13ddabb52c28..035fe8b62f84 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadataOrBuilder.java index 0b3d707d7777..391f8b8c8675 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequest.java index a73ffaf62ed5..4388f5762da8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequestOrBuilder.java index 5f143a8f65cb..ccb0c1baa116 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateFeaturestoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequest.java index d40ed6268ced..6b4168d1e1bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequestOrBuilder.java index 9b9c7bc09186..7a998feefa5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadata.java index d5a1ffec29e1..8d1922885b93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadataOrBuilder.java index 93fa3161930a..dfaf5ff54f5a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequest.java index c83ceaef79fb..b3bf434d058a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequestOrBuilder.java index e63718171946..a72d22b7f417 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadata.java index afe573d47865..72c6e98403b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java index ba13eab91e51..d83d14bc5a63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequest.java index 0f7c2a091d31..72ed5793071e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java index ad9f4e5aebc9..68eddf33fc6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequest.java index 743cbd0762d4..8c5584b03d83 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequestOrBuilder.java index b13fd273335e..e305ac5297f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequest.java index 9c9310b4842e..f74e82086e5c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java index 611374bdb51c..c7fb38a5cbaa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadata.java index 2dec63c71653..5dbbb54174ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadataOrBuilder.java index e398d7750e1c..068efabfd037 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequest.java index 1cb42869b69e..d44ee8def50b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequestOrBuilder.java index 96d3e1dc1e7f..50d1ee3fef36 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdatePersistentResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadata.java index 324575035950..48cadb9a85be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadataOrBuilder.java index 50a038c776f5..a1d861ed5aed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequest.java index 1f89e97dd998..f1a0166926bf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequestOrBuilder.java index fdde90b7507c..2c4bcc38b45d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagCorpusRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadata.java index 1f5553b095f7..65d2d73f67d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadataOrBuilder.java index b5878ce9a843..6eeaa9d30baa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequest.java index f8e8d5a71b87..315f224a6e7b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequestOrBuilder.java index 9f1c1abcfa55..718531f6ce37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateRagEngineConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadata.java index 8e430d28db98..696850eb2f1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadataOrBuilder.java index 39b8d8512f64..97fd57935d7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequest.java index 87e8de8ecbda..890896511fab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequestOrBuilder.java index 0626b90d74f5..de71ccd1f402 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequest.java index 8c836658bfb2..e93c296bee54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequestOrBuilder.java index 3f5f90675174..f7fde02508a1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadata.java index b63dbd521028..9a49f1b1de49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadataOrBuilder.java index 374bb8555985..2e049e1a5365 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequest.java index 1ca62d98e3c7..21b2ff9818c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequestOrBuilder.java index c89eb6afa26a..c8733162203b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateSpecialistPoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequest.java index 559f9c8bfd76..1b11de1e1f04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequestOrBuilder.java index e8bf185a1a3f..9db9fb1c1f94 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardExperimentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadata.java index 9bfdbec670e6..a626202925ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadataOrBuilder.java index 81e66a379969..9a71f0891f9d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequest.java index 2328b13d51a4..2e3d216ed1fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequestOrBuilder.java index d92c4a81a368..5a965a46706b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequest.java index 740c4a260620..509d7b287d2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequestOrBuilder.java index 34b32a225c57..98d82ab1b5bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardRunRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequest.java index 7848020e9168..ebea913f7c65 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequestOrBuilder.java index fee0e43c91fd..af09819f0d8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpdateTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadata.java index 6a3c234fa107..1c5ef186498d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java index a9a63021499c..7cb5b5185d05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequest.java index 95751d41a568..7bf0fa49f150 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequestOrBuilder.java index fef754e4cc8f..aee6f31b580e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponse.java index a67a74c4d838..762702206666 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponseOrBuilder.java index 37024090a9cc..39c3c9f6c686 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpgradeNotebookRuntimeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadata.java index 5c388e390255..281075d8f1e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadataOrBuilder.java index f1cf99b10ffb..21d47b0066b6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequest.java index 806c8ab804de..1bcbc520bd15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequestOrBuilder.java index 4b663b76d181..332a2b9295db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponse.java index 9d662a3e1205..0f007506f8e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponseOrBuilder.java index d3a53752e9a9..394024b468dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfig.java index 14091ac4bc83..da8468c5db3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfigOrBuilder.java index edc39ecfdba9..0e8b973341b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequest.java index 7f561d0a8c14..74070f01882e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequestOrBuilder.java index a608f1f4036a..72f10676c9ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponse.java index 66b9d76f26fd..2df083863fe8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponseOrBuilder.java index 3ffbe5b96e94..d5006829385b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UploadRagFileResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequest.java index a31bf234a04b..995ce0389352 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequestOrBuilder.java index f31575c955a8..f478d4ca7ad7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponse.java index 4e9e4fe4233b..3e659f64cb2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponseOrBuilder.java index d111ca70b8b1..cad92c7ee086 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UpsertDatapointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContext.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContext.java index 2c30ad4fae1c..35bc56b39ddc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContext.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadata.java index 9df763ffce4b..76f4eed9a90a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadataOrBuilder.java index 65d685432e05..9057cd35f8cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextOrBuilder.java index 8113ec967e3f..69abc70d5208 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlContextOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadata.java index 10866148bb8e..3346f5cc8afc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadataOrBuilder.java index a9629ee2c165..050f4bd22e13 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UrlMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadata.java index b3460b6cbaba..db0afb657aba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataOrBuilder.java index 0783b9caf242..af226e5e01c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataProto.java index b9d1d9286716..3922707ab262 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UsageMetadataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReference.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReference.java index 294eedc36536..228ab0b4f223 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReference.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceOrBuilder.java index f65d4cdaf46d..e6117183b06c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceProto.java index 42d537ac27d5..9e9cabf6ee9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/UserActionReferenceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Value.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Value.java index f620eb8e54ce..23b46a0d942c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Value.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/Value.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueOrBuilder.java index 86a69f62fb02..913ae5aa72e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueProto.java index fabe9a655dad..41acb7e02c0c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/ValueProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearch.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearch.java index 1e8f002ea7fc..df6b17b34b6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearch.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearch.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearchOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearchOrBuilder.java index cb15cce9275d..903a486088b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearchOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAISearchOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfig.java index 4b10f4697bc0..90228ac9c53f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfigOrBuilder.java index df16e3bf484c..e845e3095413 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexAiSearchConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataProto.java index fabe106bed12..2342d302ba3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceProto.java index 58616c46ef26..6a4b856776c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagDataServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceProto.java index ff22bb678473..3ce28328e242 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStore.java index bc4f2aa43822..dae1caaba306 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1234,7 +1234,7 @@ public com.google.cloud.aiplatform.v1.VertexRagStore.RagResource getRagResources *
* * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return Whether the similarityTopK field is set. */ @java.lang.Override @@ -1255,7 +1255,7 @@ public boolean hasSimilarityTopK() { *
* * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return The similarityTopK. */ @java.lang.Override @@ -1280,7 +1280,7 @@ public int getSimilarityTopK() { *
* * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is deprecated. - * See google/cloud/aiplatform/v1/tool.proto;l=422 + * See google/cloud/aiplatform/v1/tool.proto;l=462 * @return Whether the vectorDistanceThreshold field is set. */ @java.lang.Override @@ -1302,7 +1302,7 @@ public boolean hasVectorDistanceThreshold() { *
* * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is deprecated. - * See google/cloud/aiplatform/v1/tool.proto;l=422 + * See google/cloud/aiplatform/v1/tool.proto;l=462 * @return The vectorDistanceThreshold. */ @java.lang.Override @@ -2357,7 +2357,7 @@ public com.google.cloud.aiplatform.v1.VertexRagStore.RagResource.Builder addRagR * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return Whether the similarityTopK field is set. */ @java.lang.Override @@ -2378,7 +2378,7 @@ public boolean hasSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return The similarityTopK. */ @java.lang.Override @@ -2399,7 +2399,7 @@ public int getSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @param value The similarityTopK to set. * @return This builder for chaining. */ @@ -2424,7 +2424,7 @@ public Builder setSimilarityTopK(int value) { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2450,7 +2450,7 @@ public Builder clearSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=422 + * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=462 * @return Whether the vectorDistanceThreshold field is set. */ @java.lang.Override @@ -2472,7 +2472,7 @@ public boolean hasVectorDistanceThreshold() { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=422 + * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=462 * @return The vectorDistanceThreshold. */ @java.lang.Override @@ -2494,7 +2494,7 @@ public double getVectorDistanceThreshold() { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=422 + * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=462 * @param value The vectorDistanceThreshold to set. * @return This builder for chaining. */ @@ -2520,7 +2520,7 @@ public Builder setVectorDistanceThreshold(double value) { * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=422 + * deprecated. See google/cloud/aiplatform/v1/tool.proto;l=462 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStoreOrBuilder.java index 1689ef2d049b..49c99849c1a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VertexRagStoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -118,7 +118,7 @@ com.google.cloud.aiplatform.v1.VertexRagStore.RagResourceOrBuilder getRagResourc * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return Whether the similarityTopK field is set. */ @java.lang.Deprecated @@ -136,7 +136,7 @@ com.google.cloud.aiplatform.v1.VertexRagStore.RagResourceOrBuilder getRagResourc * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1/tool.proto;l=417 + * google/cloud/aiplatform/v1/tool.proto;l=457 * @return The similarityTopK. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ com.google.cloud.aiplatform.v1.VertexRagStore.RagResourceOrBuilder getRagResourc * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is deprecated. - * See google/cloud/aiplatform/v1/tool.proto;l=422 + * See google/cloud/aiplatform/v1/tool.proto;l=462 * @return Whether the vectorDistanceThreshold field is set. */ @java.lang.Deprecated @@ -174,7 +174,7 @@ com.google.cloud.aiplatform.v1.VertexRagStore.RagResourceOrBuilder getRagResourc * * * @deprecated google.cloud.aiplatform.v1.VertexRagStore.vector_distance_threshold is deprecated. - * See google/cloud/aiplatform/v1/tool.proto;l=422 + * See google/cloud/aiplatform/v1/tool.proto;l=462 * @return The vectorDistanceThreshold. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadata.java index c76532f2ec73..0e032662fdbc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadataOrBuilder.java index 2ad089479848..4ca2aebbd9a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VideoMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceProto.java index 8e34c4ddaae2..c9eaa912cc09 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VizierServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VoiceConfig.java new file mode 100644 index 000000000000..d2f4bbfc9982 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VoiceConfig.java @@ -0,0 +1,1188 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +/** + * + * + *
+ * Configuration for a voice.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.VoiceConfig} + */ +public final class VoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1.VoiceConfig) + VoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use VoiceConfig.newBuilder() to construct. + private VoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private VoiceConfig() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new VoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_VoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_VoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.VoiceConfig.class, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder.class); + } + + private int voiceConfigCase_ = 0; + + @SuppressWarnings("serial") + private java.lang.Object voiceConfig_; + + public enum VoiceConfigCase + implements + com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + PREBUILT_VOICE_CONFIG(1), + REPLICATED_VOICE_CONFIG(3), + VOICECONFIG_NOT_SET(0); + private final int value; + + private VoiceConfigCase(int value) { + this.value = value; + } + + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static VoiceConfigCase valueOf(int value) { + return forNumber(value); + } + + public static VoiceConfigCase forNumber(int value) { + switch (value) { + case 1: + return PREBUILT_VOICE_CONFIG; + case 3: + return REPLICATED_VOICE_CONFIG; + case 0: + return VOICECONFIG_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public VoiceConfigCase getVoiceConfigCase() { + return VoiceConfigCase.forNumber(voiceConfigCase_); + } + + public static final int PREBUILT_VOICE_CONFIG_FIELD_NUMBER = 1; + + /** + * + * + *
+   * The configuration for a prebuilt voice.
+   * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + * + * @return Whether the prebuiltVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasPrebuiltVoiceConfig() { + return voiceConfigCase_ == 1; + } + + /** + * + * + *
+   * The configuration for a prebuilt voice.
+   * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + * + * @return The prebuiltVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig getPrebuiltVoiceConfig() { + if (voiceConfigCase_ == 1) { + return (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } + + /** + * + * + *
+   * The configuration for a prebuilt voice.
+   * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder + getPrebuiltVoiceConfigOrBuilder() { + if (voiceConfigCase_ == 1) { + return (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } + + public static final int REPLICATED_VOICE_CONFIG_FIELD_NUMBER = 3; + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the replicatedVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasReplicatedVoiceConfig() { + return voiceConfigCase_ == 3; + } + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The replicatedVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig getReplicatedVoiceConfig() { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder + getReplicatedVoiceConfigOrBuilder() { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (voiceConfigCase_ == 1) { + output.writeMessage(1, (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_); + } + if (voiceConfigCase_ == 3) { + output.writeMessage(3, (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (voiceConfigCase_ == 1) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 1, (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_); + } + if (voiceConfigCase_ == 3) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 3, (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1.VoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1.VoiceConfig other = + (com.google.cloud.aiplatform.v1.VoiceConfig) obj; + + if (!getVoiceConfigCase().equals(other.getVoiceConfigCase())) return false; + switch (voiceConfigCase_) { + case 1: + if (!getPrebuiltVoiceConfig().equals(other.getPrebuiltVoiceConfig())) return false; + break; + case 3: + if (!getReplicatedVoiceConfig().equals(other.getReplicatedVoiceConfig())) return false; + break; + case 0: + default: + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + switch (voiceConfigCase_) { + case 1: + hash = (37 * hash) + PREBUILT_VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getPrebuiltVoiceConfig().hashCode(); + break; + case 3: + hash = (37 * hash) + REPLICATED_VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getReplicatedVoiceConfig().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1.VoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for a voice.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1.VoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1.VoiceConfig) + com.google.cloud.aiplatform.v1.VoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_VoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_VoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1.VoiceConfig.class, + com.google.cloud.aiplatform.v1.VoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1.VoiceConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (prebuiltVoiceConfigBuilder_ != null) { + prebuiltVoiceConfigBuilder_.clear(); + } + if (replicatedVoiceConfigBuilder_ != null) { + replicatedVoiceConfigBuilder_.clear(); + } + voiceConfigCase_ = 0; + voiceConfig_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1.ContentProto + .internal_static_google_cloud_aiplatform_v1_VoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfig build() { + com.google.cloud.aiplatform.v1.VoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1.VoiceConfig result = + new com.google.cloud.aiplatform.v1.VoiceConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + buildPartialOneofs(result); + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1.VoiceConfig result) { + int from_bitField0_ = bitField0_; + } + + private void buildPartialOneofs(com.google.cloud.aiplatform.v1.VoiceConfig result) { + result.voiceConfigCase_ = voiceConfigCase_; + result.voiceConfig_ = this.voiceConfig_; + if (voiceConfigCase_ == 1 && prebuiltVoiceConfigBuilder_ != null) { + result.voiceConfig_ = prebuiltVoiceConfigBuilder_.build(); + } + if (voiceConfigCase_ == 3 && replicatedVoiceConfigBuilder_ != null) { + result.voiceConfig_ = replicatedVoiceConfigBuilder_.build(); + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1.VoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1.VoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1.VoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1.VoiceConfig.getDefaultInstance()) return this; + switch (other.getVoiceConfigCase()) { + case PREBUILT_VOICE_CONFIG: + { + mergePrebuiltVoiceConfig(other.getPrebuiltVoiceConfig()); + break; + } + case REPLICATED_VOICE_CONFIG: + { + mergeReplicatedVoiceConfig(other.getReplicatedVoiceConfig()); + break; + } + case VOICECONFIG_NOT_SET: + { + break; + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage( + getPrebuiltVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + voiceConfigCase_ = 1; + break; + } // case 10 + case 26: + { + input.readMessage( + getReplicatedVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + voiceConfigCase_ = 3; + break; + } // case 26 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int voiceConfigCase_ = 0; + private java.lang.Object voiceConfig_; + + public VoiceConfigCase getVoiceConfigCase() { + return VoiceConfigCase.forNumber(voiceConfigCase_); + } + + public Builder clearVoiceConfig() { + voiceConfigCase_ = 0; + voiceConfig_ = null; + onChanged(); + return this; + } + + private int bitField0_; + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder> + prebuiltVoiceConfigBuilder_; + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + * + * @return Whether the prebuiltVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasPrebuiltVoiceConfig() { + return voiceConfigCase_ == 1; + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + * + * @return The prebuiltVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig getPrebuiltVoiceConfig() { + if (prebuiltVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 1) { + return (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } else { + if (voiceConfigCase_ == 1) { + return prebuiltVoiceConfigBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + public Builder setPrebuiltVoiceConfig( + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig value) { + if (prebuiltVoiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + voiceConfig_ = value; + onChanged(); + } else { + prebuiltVoiceConfigBuilder_.setMessage(value); + } + voiceConfigCase_ = 1; + return this; + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + public Builder setPrebuiltVoiceConfig( + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder builderForValue) { + if (prebuiltVoiceConfigBuilder_ == null) { + voiceConfig_ = builderForValue.build(); + onChanged(); + } else { + prebuiltVoiceConfigBuilder_.setMessage(builderForValue.build()); + } + voiceConfigCase_ = 1; + return this; + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + public Builder mergePrebuiltVoiceConfig( + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig value) { + if (prebuiltVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 1 + && voiceConfig_ + != com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance()) { + voiceConfig_ = + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.newBuilder( + (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_) + .mergeFrom(value) + .buildPartial(); + } else { + voiceConfig_ = value; + } + onChanged(); + } else { + if (voiceConfigCase_ == 1) { + prebuiltVoiceConfigBuilder_.mergeFrom(value); + } else { + prebuiltVoiceConfigBuilder_.setMessage(value); + } + } + voiceConfigCase_ = 1; + return this; + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + public Builder clearPrebuiltVoiceConfig() { + if (prebuiltVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 1) { + voiceConfigCase_ = 0; + voiceConfig_ = null; + onChanged(); + } + } else { + if (voiceConfigCase_ == 1) { + voiceConfigCase_ = 0; + voiceConfig_ = null; + } + prebuiltVoiceConfigBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder + getPrebuiltVoiceConfigBuilder() { + return getPrebuiltVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder + getPrebuiltVoiceConfigOrBuilder() { + if ((voiceConfigCase_ == 1) && (prebuiltVoiceConfigBuilder_ != null)) { + return prebuiltVoiceConfigBuilder_.getMessageOrBuilder(); + } else { + if (voiceConfigCase_ == 1) { + return (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } + } + + /** + * + * + *
+     * The configuration for a prebuilt voice.
+     * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder> + getPrebuiltVoiceConfigFieldBuilder() { + if (prebuiltVoiceConfigBuilder_ == null) { + if (!(voiceConfigCase_ == 1)) { + voiceConfig_ = com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.getDefaultInstance(); + } + prebuiltVoiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder>( + (com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig) voiceConfig_, + getParentForChildren(), + isClean()); + voiceConfig_ = null; + } + voiceConfigCase_ = 1; + onChanged(); + return prebuiltVoiceConfigBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder> + replicatedVoiceConfigBuilder_; + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the replicatedVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasReplicatedVoiceConfig() { + return voiceConfigCase_ == 3; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The replicatedVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig getReplicatedVoiceConfig() { + if (replicatedVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } else { + if (voiceConfigCase_ == 3) { + return replicatedVoiceConfigBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setReplicatedVoiceConfig( + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig value) { + if (replicatedVoiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + voiceConfig_ = value; + onChanged(); + } else { + replicatedVoiceConfigBuilder_.setMessage(value); + } + voiceConfigCase_ = 3; + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setReplicatedVoiceConfig( + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder builderForValue) { + if (replicatedVoiceConfigBuilder_ == null) { + voiceConfig_ = builderForValue.build(); + onChanged(); + } else { + replicatedVoiceConfigBuilder_.setMessage(builderForValue.build()); + } + voiceConfigCase_ = 3; + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder mergeReplicatedVoiceConfig( + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig value) { + if (replicatedVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 3 + && voiceConfig_ + != com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance()) { + voiceConfig_ = + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.newBuilder( + (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_) + .mergeFrom(value) + .buildPartial(); + } else { + voiceConfig_ = value; + } + onChanged(); + } else { + if (voiceConfigCase_ == 3) { + replicatedVoiceConfigBuilder_.mergeFrom(value); + } else { + replicatedVoiceConfigBuilder_.setMessage(value); + } + } + voiceConfigCase_ = 3; + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearReplicatedVoiceConfig() { + if (replicatedVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 3) { + voiceConfigCase_ = 0; + voiceConfig_ = null; + onChanged(); + } + } else { + if (voiceConfigCase_ == 3) { + voiceConfigCase_ = 0; + voiceConfig_ = null; + } + replicatedVoiceConfigBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder + getReplicatedVoiceConfigBuilder() { + return getReplicatedVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder + getReplicatedVoiceConfigOrBuilder() { + if ((voiceConfigCase_ == 3) && (replicatedVoiceConfigBuilder_ != null)) { + return replicatedVoiceConfigBuilder_.getMessageOrBuilder(); + } else { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder> + getReplicatedVoiceConfigFieldBuilder() { + if (replicatedVoiceConfigBuilder_ == null) { + if (!(voiceConfigCase_ == 3)) { + voiceConfig_ = com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.getDefaultInstance(); + } + replicatedVoiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig.Builder, + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder>( + (com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig) voiceConfig_, + getParentForChildren(), + isClean()); + voiceConfig_ = null; + } + voiceConfigCase_ = 3; + onChanged(); + return replicatedVoiceConfigBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1.VoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1.VoiceConfig) + private static final com.google.cloud.aiplatform.v1.VoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1.VoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1.VoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public VoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1.VoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VoiceConfigOrBuilder.java new file mode 100644 index 000000000000..b5edac6beee4 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/VoiceConfigOrBuilder.java @@ -0,0 +1,111 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1; + +public interface VoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.VoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The configuration for a prebuilt voice.
+   * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + * + * @return Whether the prebuiltVoiceConfig field is set. + */ + boolean hasPrebuiltVoiceConfig(); + + /** + * + * + *
+   * The configuration for a prebuilt voice.
+   * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + * + * @return The prebuiltVoiceConfig. + */ + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfig getPrebuiltVoiceConfig(); + + /** + * + * + *
+   * The configuration for a prebuilt voice.
+   * 
+ * + * .google.cloud.aiplatform.v1.PrebuiltVoiceConfig prebuilt_voice_config = 1; + */ + com.google.cloud.aiplatform.v1.PrebuiltVoiceConfigOrBuilder getPrebuiltVoiceConfigOrBuilder(); + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the replicatedVoiceConfig field is set. + */ + boolean hasReplicatedVoiceConfig(); + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The replicatedVoiceConfig. + */ + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfig getReplicatedVoiceConfig(); + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1.ReplicatedVoiceConfigOrBuilder getReplicatedVoiceConfigOrBuilder(); + + com.google.cloud.aiplatform.v1.VoiceConfig.VoiceConfigCase getVoiceConfigCase(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpec.java index 77a204603589..969d3e7e93de 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,6 +41,7 @@ private WorkerPoolSpec(com.google.protobuf.GeneratedMessageV3.Builder builder private WorkerPoolSpec() { nfsMounts_ = java.util.Collections.emptyList(); + lustreMounts_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -387,6 +388,92 @@ public com.google.cloud.aiplatform.v1.NfsMountOrBuilder getNfsMountsOrBuilder(in return nfsMounts_.get(index); } + public static final int LUSTRE_MOUNTS_FIELD_NUMBER = 9; + + @SuppressWarnings("serial") + private java.util.List lustreMounts_; + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List getLustreMountsList() { + return lustreMounts_; + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getLustreMountsOrBuilderList() { + return lustreMounts_; + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public int getLustreMountsCount() { + return lustreMounts_.size(); + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.LustreMount getLustreMounts(int index) { + return lustreMounts_.get(index); + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1.LustreMountOrBuilder getLustreMountsOrBuilder(int index) { + return lustreMounts_.get(index); + } + public static final int DISK_SPEC_FIELD_NUMBER = 5; private com.google.cloud.aiplatform.v1.DiskSpec diskSpec_; @@ -472,6 +559,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (taskCase_ == 7) { output.writeMessage(7, (com.google.cloud.aiplatform.v1.PythonPackageSpec) task_); } + for (int i = 0; i < lustreMounts_.size(); i++) { + output.writeMessage(9, lustreMounts_.get(i)); + } getUnknownFields().writeTo(output); } @@ -503,6 +593,9 @@ public int getSerializedSize() { com.google.protobuf.CodedOutputStream.computeMessageSize( 7, (com.google.cloud.aiplatform.v1.PythonPackageSpec) task_); } + for (int i = 0; i < lustreMounts_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(9, lustreMounts_.get(i)); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -525,6 +618,7 @@ public boolean equals(final java.lang.Object obj) { } if (getReplicaCount() != other.getReplicaCount()) return false; if (!getNfsMountsList().equals(other.getNfsMountsList())) return false; + if (!getLustreMountsList().equals(other.getLustreMountsList())) return false; if (hasDiskSpec() != other.hasDiskSpec()) return false; if (hasDiskSpec()) { if (!getDiskSpec().equals(other.getDiskSpec())) return false; @@ -561,6 +655,10 @@ public int hashCode() { hash = (37 * hash) + NFS_MOUNTS_FIELD_NUMBER; hash = (53 * hash) + getNfsMountsList().hashCode(); } + if (getLustreMountsCount() > 0) { + hash = (37 * hash) + LUSTRE_MOUNTS_FIELD_NUMBER; + hash = (53 * hash) + getLustreMountsList().hashCode(); + } if (hasDiskSpec()) { hash = (37 * hash) + DISK_SPEC_FIELD_NUMBER; hash = (53 * hash) + getDiskSpec().hashCode(); @@ -720,6 +818,7 @@ private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getMachineSpecFieldBuilder(); getNfsMountsFieldBuilder(); + getLustreMountsFieldBuilder(); getDiskSpecFieldBuilder(); } } @@ -747,6 +846,13 @@ public Builder clear() { nfsMountsBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); + if (lustreMountsBuilder_ == null) { + lustreMounts_ = java.util.Collections.emptyList(); + } else { + lustreMounts_ = null; + lustreMountsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000020); diskSpec_ = null; if (diskSpecBuilder_ != null) { diskSpecBuilder_.dispose(); @@ -800,6 +906,15 @@ private void buildPartialRepeatedFields(com.google.cloud.aiplatform.v1.WorkerPoo } else { result.nfsMounts_ = nfsMountsBuilder_.build(); } + if (lustreMountsBuilder_ == null) { + if (((bitField0_ & 0x00000020) != 0)) { + lustreMounts_ = java.util.Collections.unmodifiableList(lustreMounts_); + bitField0_ = (bitField0_ & ~0x00000020); + } + result.lustreMounts_ = lustreMounts_; + } else { + result.lustreMounts_ = lustreMountsBuilder_.build(); + } } private void buildPartial0(com.google.cloud.aiplatform.v1.WorkerPoolSpec result) { @@ -813,7 +928,7 @@ private void buildPartial0(com.google.cloud.aiplatform.v1.WorkerPoolSpec result) if (((from_bitField0_ & 0x00000008) != 0)) { result.replicaCount_ = replicaCount_; } - if (((from_bitField0_ & 0x00000020) != 0)) { + if (((from_bitField0_ & 0x00000040) != 0)) { result.diskSpec_ = diskSpecBuilder_ == null ? diskSpec_ : diskSpecBuilder_.build(); to_bitField0_ |= 0x00000002; } @@ -909,6 +1024,33 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1.WorkerPoolSpec other) { } } } + if (lustreMountsBuilder_ == null) { + if (!other.lustreMounts_.isEmpty()) { + if (lustreMounts_.isEmpty()) { + lustreMounts_ = other.lustreMounts_; + bitField0_ = (bitField0_ & ~0x00000020); + } else { + ensureLustreMountsIsMutable(); + lustreMounts_.addAll(other.lustreMounts_); + } + onChanged(); + } + } else { + if (!other.lustreMounts_.isEmpty()) { + if (lustreMountsBuilder_.isEmpty()) { + lustreMountsBuilder_.dispose(); + lustreMountsBuilder_ = null; + lustreMounts_ = other.lustreMounts_; + bitField0_ = (bitField0_ & ~0x00000020); + lustreMountsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getLustreMountsFieldBuilder() + : null; + } else { + lustreMountsBuilder_.addAllMessages(other.lustreMounts_); + } + } + } if (other.hasDiskSpec()) { mergeDiskSpec(other.getDiskSpec()); } @@ -982,7 +1124,7 @@ public Builder mergeFrom( case 42: { input.readMessage(getDiskSpecFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; break; } // case 42 case 50: @@ -998,6 +1140,19 @@ public Builder mergeFrom( taskCase_ = 7; break; } // case 58 + case 74: + { + com.google.cloud.aiplatform.v1.LustreMount m = + input.readMessage( + com.google.cloud.aiplatform.v1.LustreMount.parser(), extensionRegistry); + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.add(m); + } else { + lustreMountsBuilder_.addMessage(m); + } + break; + } // case 74 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -2139,6 +2294,410 @@ public com.google.cloud.aiplatform.v1.NfsMount.Builder addNfsMountsBuilder(int i return nfsMountsBuilder_; } + private java.util.List lustreMounts_ = + java.util.Collections.emptyList(); + + private void ensureLustreMountsIsMutable() { + if (!((bitField0_ & 0x00000020) != 0)) { + lustreMounts_ = + new java.util.ArrayList(lustreMounts_); + bitField0_ |= 0x00000020; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.LustreMount, + com.google.cloud.aiplatform.v1.LustreMount.Builder, + com.google.cloud.aiplatform.v1.LustreMountOrBuilder> + lustreMountsBuilder_; + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List getLustreMountsList() { + if (lustreMountsBuilder_ == null) { + return java.util.Collections.unmodifiableList(lustreMounts_); + } else { + return lustreMountsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public int getLustreMountsCount() { + if (lustreMountsBuilder_ == null) { + return lustreMounts_.size(); + } else { + return lustreMountsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.LustreMount getLustreMounts(int index) { + if (lustreMountsBuilder_ == null) { + return lustreMounts_.get(index); + } else { + return lustreMountsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setLustreMounts(int index, com.google.cloud.aiplatform.v1.LustreMount value) { + if (lustreMountsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLustreMountsIsMutable(); + lustreMounts_.set(index, value); + onChanged(); + } else { + lustreMountsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setLustreMounts( + int index, com.google.cloud.aiplatform.v1.LustreMount.Builder builderForValue) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.set(index, builderForValue.build()); + onChanged(); + } else { + lustreMountsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts(com.google.cloud.aiplatform.v1.LustreMount value) { + if (lustreMountsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLustreMountsIsMutable(); + lustreMounts_.add(value); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts(int index, com.google.cloud.aiplatform.v1.LustreMount value) { + if (lustreMountsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLustreMountsIsMutable(); + lustreMounts_.add(index, value); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts( + com.google.cloud.aiplatform.v1.LustreMount.Builder builderForValue) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.add(builderForValue.build()); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts( + int index, com.google.cloud.aiplatform.v1.LustreMount.Builder builderForValue) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.add(index, builderForValue.build()); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addAllLustreMounts( + java.lang.Iterable values) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, lustreMounts_); + onChanged(); + } else { + lustreMountsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearLustreMounts() { + if (lustreMountsBuilder_ == null) { + lustreMounts_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000020); + onChanged(); + } else { + lustreMountsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder removeLustreMounts(int index) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.remove(index); + onChanged(); + } else { + lustreMountsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.LustreMount.Builder getLustreMountsBuilder(int index) { + return getLustreMountsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.LustreMountOrBuilder getLustreMountsOrBuilder(int index) { + if (lustreMountsBuilder_ == null) { + return lustreMounts_.get(index); + } else { + return lustreMountsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getLustreMountsOrBuilderList() { + if (lustreMountsBuilder_ != null) { + return lustreMountsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(lustreMounts_); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.LustreMount.Builder addLustreMountsBuilder() { + return getLustreMountsFieldBuilder() + .addBuilder(com.google.cloud.aiplatform.v1.LustreMount.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1.LustreMount.Builder addLustreMountsBuilder(int index) { + return getLustreMountsFieldBuilder() + .addBuilder(index, com.google.cloud.aiplatform.v1.LustreMount.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getLustreMountsBuilderList() { + return getLustreMountsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.LustreMount, + com.google.cloud.aiplatform.v1.LustreMount.Builder, + com.google.cloud.aiplatform.v1.LustreMountOrBuilder> + getLustreMountsFieldBuilder() { + if (lustreMountsBuilder_ == null) { + lustreMountsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1.LustreMount, + com.google.cloud.aiplatform.v1.LustreMount.Builder, + com.google.cloud.aiplatform.v1.LustreMountOrBuilder>( + lustreMounts_, ((bitField0_ & 0x00000020) != 0), getParentForChildren(), isClean()); + lustreMounts_ = null; + } + return lustreMountsBuilder_; + } + private com.google.cloud.aiplatform.v1.DiskSpec diskSpec_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.aiplatform.v1.DiskSpec, @@ -2158,7 +2717,7 @@ public com.google.cloud.aiplatform.v1.NfsMount.Builder addNfsMountsBuilder(int i * @return Whether the diskSpec field is set. */ public boolean hasDiskSpec() { - return ((bitField0_ & 0x00000020) != 0); + return ((bitField0_ & 0x00000040) != 0); } /** @@ -2200,7 +2759,7 @@ public Builder setDiskSpec(com.google.cloud.aiplatform.v1.DiskSpec value) { } else { diskSpecBuilder_.setMessage(value); } - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -2220,7 +2779,7 @@ public Builder setDiskSpec(com.google.cloud.aiplatform.v1.DiskSpec.Builder build } else { diskSpecBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -2236,7 +2795,7 @@ public Builder setDiskSpec(com.google.cloud.aiplatform.v1.DiskSpec.Builder build */ public Builder mergeDiskSpec(com.google.cloud.aiplatform.v1.DiskSpec value) { if (diskSpecBuilder_ == null) { - if (((bitField0_ & 0x00000020) != 0) + if (((bitField0_ & 0x00000040) != 0) && diskSpec_ != null && diskSpec_ != com.google.cloud.aiplatform.v1.DiskSpec.getDefaultInstance()) { getDiskSpecBuilder().mergeFrom(value); @@ -2247,7 +2806,7 @@ public Builder mergeDiskSpec(com.google.cloud.aiplatform.v1.DiskSpec value) { diskSpecBuilder_.mergeFrom(value); } if (diskSpec_ != null) { - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); } return this; @@ -2263,7 +2822,7 @@ public Builder mergeDiskSpec(com.google.cloud.aiplatform.v1.DiskSpec value) { * .google.cloud.aiplatform.v1.DiskSpec disk_spec = 5; */ public Builder clearDiskSpec() { - bitField0_ = (bitField0_ & ~0x00000020); + bitField0_ = (bitField0_ & ~0x00000040); diskSpec_ = null; if (diskSpecBuilder_ != null) { diskSpecBuilder_.dispose(); @@ -2283,7 +2842,7 @@ public Builder clearDiskSpec() { * .google.cloud.aiplatform.v1.DiskSpec disk_spec = 5; */ public com.google.cloud.aiplatform.v1.DiskSpec.Builder getDiskSpecBuilder() { - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return getDiskSpecFieldBuilder().getBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpecOrBuilder.java index 82161061039e..6e49e8cc5970 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WorkerPoolSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -220,6 +220,72 @@ public interface WorkerPoolSpecOrBuilder */ com.google.cloud.aiplatform.v1.NfsMountOrBuilder getNfsMountsOrBuilder(int index); + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List getLustreMountsList(); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1.LustreMount getLustreMounts(int index); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + int getLustreMountsCount(); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List + getLustreMountsOrBuilderList(); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1.LustreMountOrBuilder getLustreMountsOrBuilder(int index); + /** * * diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayload.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayload.java index 6c84c9cc2485..f3a87370ad3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayload.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayloadOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayloadOrBuilder.java index 84ad8a11586e..68f97222a608 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayloadOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesPayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequest.java index 711810b137e8..56a9d3a73942 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequestOrBuilder.java index 51830eed7f91..b060fdc40583 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponse.java index 1f5556456bcb..c424c8f057c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponseOrBuilder.java index 34ab50cdd847..fe6ce8fe734f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequest.java index fabfb50ec57f..6d545da681e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequestOrBuilder.java index 5eaf917d03f9..20f28057527d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponse.java index eebea410eac2..8779f8565639 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponseOrBuilder.java index 6d68bb1e71e5..cdfc35f4c87b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardExperimentDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequest.java index 3ab8705d2465..04e720ca86f1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequestOrBuilder.java index 51b51c762bc0..524aebdc32cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponse.java index 01f58e3c4f30..80418add2bb8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponseOrBuilder.java index 0db717622df4..ff331b70ad77 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/WriteTensorboardRunDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttribution.java index 9b3dd0e31689..b8b668486fdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttributionOrBuilder.java index a6a12d7cd8a1..ca76fd04fd61 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/XraiAttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstance.java index 7d5fc4f10e0e..b052c08d714a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java index b0dadd5bbfcb..53daed623458 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java index 9fca6437fe97..b1e3e9ea55d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java index 25e2c63f6ae4..b6519cab2677 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java index 0757bac4986f..2f4c0f2e6dea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java index 01ac0ab12de0..6fdb69456210 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstance.java index 9d861ffc4dbb..2ad0c8b5a167 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java index b6181e8ff60b..b45e91837662 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java index affa6a71dbde..9a7b894df205 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstance.java index 138c6834dce6..3a5774c17ba1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java index 68bf9ddef339..accfe1f6b297 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceProto.java index 681018e6b36b..494f14c07f70 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextClassificationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstance.java index 20aad85e18f0..93307a63dd9f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java index e75f1f5a429c..bf5f53995a3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceProto.java index d48683172c10..68e34cace848 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextExtractionPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstance.java index c78f986f9fab..388a1976e9a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java index 10b82aad0794..034f2f4c70d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceProto.java index c0267fb00afd..9136e4456a4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/TextSentimentPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java index cd158f5b727b..5da38f476e6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java index bdbe3e56aa29..bd4ad4ae1d20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java index 4f7e65dd9cf0..f804ca1f1486 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstance.java index bab8bcc574ce..54a49a81db8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java index 890323c1bf20..8d725cc5289a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java index 590645fed846..a91be8925764 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java index 6410022e9747..e87d95b9c21f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java index 2144f54fc497..819f7f7f7976 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java index 9f827dde751f..45c7287419b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParams.java index f1d58c0a011e..de6d4dad9ea0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java index 69f24997f4ad..2afc6c9e7b6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsProto.java index 39eec4712c37..a71e3251734a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageClassificationPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParams.java index 2256823c0468..04746d71bd17 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java index b46d311700d5..fd0a91833d0c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java index 5c6dfa7a29f7..6dd039c2979e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParams.java index 8623e81f9758..0db2d5d3ba43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java index 2aa8b3ca271a..03028ac438cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsProto.java index 8610420fede1..ca47e7d88560 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/ImageSegmentationPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParams.java index 0351c5fad383..c0121078dc06 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java index 2d438f4fab2c..350286c71b58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java index 64785580bb6c..89f97a0c91bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParams.java index 3f1c3d48fc29..249d5b53a147 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java index db33ae1e0ca0..773b6a61c100 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsProto.java index e089138089c1..06acad92dee6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoClassificationPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParams.java index 30dc7a3ac60c..bef7c2a22b4a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java index 1c8aa0e4e7f8..cb8039e65fe0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java index c3536067b13f..beee3070de5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResult.java index 245abee85d5f..2ea88a694da1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java index a9fc89daa616..fef4a6f05112 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultProto.java index 48ac0cf6f923..4dd9ccfdf714 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ClassificationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java index 3a0426d2064e..e3ce4af2914d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java index 823f494099c9..fdfb4a149bdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java index 8e6dedee2409..cbca94c44bd0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResult.java index 6c2ddaf30850..718e09930d4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java index 3be6079466e3..ee87392dfaa6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java index c4a52f41270a..44c402fce5d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResult.java index 3bc289fbf728..50e57635d351 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java index 1344ebe73547..8aefe8ec3e38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultProto.java index 29cd845c2f7a..dc6666999dfb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularClassificationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResult.java index 2f41383e377d..3a65deb49e19 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java index feaf5431f0f3..5c73087aa2c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultProto.java index 68e420b7ba4a..34292e71e059 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TabularRegressionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResult.java index 7d30d3fdc08b..cb03de719f82 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java index cff426ff97c0..fb9c6b00cdfe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultProto.java index 7843aee9e981..1d74033fddfa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextExtractionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResult.java index d323eeff79c1..5060d491e155 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java index 46e8fded979a..78cb78954ecc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultProto.java index 314e0e8aa6e1..9ba21b8aac82 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/TextSentimentPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java index bd87cfbe973b..d597c85a9d24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java index 27194f513d5a..370529b304a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java index cbb12a4eab07..b7f034958a32 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResult.java index 97bcf9e23b7f..2b7a16c93e00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java index f21f59569f39..8b1a03243fcc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultProto.java index 6137e05c922c..8405ebe2c007 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoClassificationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java index db15ef4ac8a3..3573201bdd48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java index a00d0c3f2d47..448a7216ec5a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java index d7bc5d7b3a8f..ec2491c81e07 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageClassificationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageClassificationProto.java index bb9ce661b037..4788bb0b7ec0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageClassificationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java index d407492fcb99..4f1be2999c46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java index fa06ce8e61e4..c3bc759f8c0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTablesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTablesProto.java index 97a16ae81819..d0b8f136ce6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTablesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTablesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextClassificationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextClassificationProto.java index 551b61db03d4..f9a5aa0fbf6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextClassificationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextExtractionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextExtractionProto.java index 72c04590c8ed..ec4ecc1dd2d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextExtractionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextExtractionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextSentimentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextSentimentProto.java index e7ebe490e706..e82eb58597d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextSentimentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLTextSentimentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java index 16a8d10cc4e5..8ab21aec5c8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java index 5b0492e18303..715b7c73ad31 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java index 8a696ce4b9b9..4e7bb17b3bf7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassification.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassification.java index 9ee7e9ec883b..3e10a8f2d343 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassification.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java index 99e1ade1ff67..41e901844963 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java index 31677d2c3208..8d0956e2d1cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java index 78f96858b1cd..37930fb4611d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java index 9d3c8e5ba8c8..e0c412f9d4c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java index 02f645cf4f1c..57100d3714a1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetection.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetection.java index fbd44b803a14..06973e947142 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetection.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java index 0d282e27145c..03c664561a86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java index eb2830187502..5228f0cb441d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java index 6a68085d8db0..69c54cd0da22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java index a1e93d21e4c8..01b5dcec38a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java index 2058ea334282..6d6fee2f80e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentation.java index 716c5dcf55f6..6741ace44e85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java index 0dee61e933b7..51c3ff8ff1ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java index 729b271514e5..5c0ce7753970 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java index acce5ba736ee..a5f5c5f76abd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java index 486f36b02190..6bff392675b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java index 1dca99de94ff..4df807a9d927 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTables.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTables.java index d887509cc11b..b9ccd287935d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTables.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTables.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputs.java index e73ae745c9a0..a23b13bf5567 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java index 9e2aca9fb55e..378f0bfc9a87 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadata.java index 45df17df51f5..0e18f4693502 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java index 92e40a923877..7407490f888c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java index 6599d80926fb..e0d24c733940 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassification.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassification.java index 346880a41597..92bcaba465d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassification.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java index 4ce97f94a78b..0d5a905d4aad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java index 35fa6d263b17..ca1227c6645b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java index 01b79c95b3db..558e26c64a99 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtraction.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtraction.java index f17edc470a5a..2fa5ae341eb2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtraction.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtraction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java index 40c84f2a3ec2..1ba9ddb236ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java index 887605bc9942..492606fc2d9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java index 871891862f31..09d672a62963 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentiment.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentiment.java index 11916a1650b9..407eb09c764b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentiment.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java index bdc9ab27327f..750fc059ebec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java index 8f7027e37b70..1fa85a6cbd4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java index fac907f37e6d..8cbb1ea1fb86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java index 7379a793c955..03e8682ea826 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java index 1f8f2b3fa94d..c8bbec9bf7fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java index d0c9605ff89a..a04d2d002ad1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java index b1e06ad7ec04..98498166ef4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassification.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassification.java index 8ae5771a2697..c569affc469b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassification.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java index dd6cf8dfc681..4ade6b97c4e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java index e29e64e895d0..69f0644bf4c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java index b5f55b7415c4..3330a1e5cce3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java index 87d4b5023189..a3535823b803 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java index cf4e5eb03601..45d6547e1af3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java index 970a17452263..9ab854114ab0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java index bd211a1d3ca2..7d1ecbe0ef10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java index d227aff87ec3..bdd632dfc196 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java index 701e48d948b3..f8a017ebcf01 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java index 8a9f67552e08..de673583c2a1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/content.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/content.proto index 58883bfc726b..55041862d78c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/content.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/content.proto @@ -184,6 +184,70 @@ message VideoMetadata { [(google.api.field_behavior) = OPTIONAL]; } +// Configuration for a prebuilt voice. +message PrebuiltVoiceConfig { + // The name of the prebuilt voice to use. + optional string voice_name = 1; +} + +// The configuration for the replicated voice to use. +message ReplicatedVoiceConfig { + // Optional. The mimetype of the voice sample. The only currently supported + // value is `audio/wav`. This represents 16-bit signed little-endian wav data, + // with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not + // set. + string mime_type = 1 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The sample of the custom voice. + bytes voice_sample_audio = 2 [(google.api.field_behavior) = OPTIONAL]; +} + + +// Configuration for a voice. +message VoiceConfig { + // The configuration for the speaker to use. + oneof voice_config { + // The configuration for a prebuilt voice. + PrebuiltVoiceConfig prebuilt_voice_config = 1; + + // Optional. The configuration for a replicated voice. This enables users to + // replicate a voice from an audio sample. + ReplicatedVoiceConfig replicated_voice_config = 3 + [(google.api.field_behavior) = OPTIONAL]; + } +} + +// Configuration for a single speaker in a multi-speaker setup. +message SpeakerVoiceConfig { + // Required. The name of the speaker. This should be the same as the speaker + // name used in the prompt. + string speaker = 1 [(google.api.field_behavior) = REQUIRED]; + + // Required. The configuration for the voice of this speaker. + VoiceConfig voice_config = 2 [(google.api.field_behavior) = REQUIRED]; +} + +// Configuration for a multi-speaker text-to-speech request. +message MultiSpeakerVoiceConfig { + // Required. A list of configurations for the voices of the speakers. Exactly + // two speaker voice configurations must be provided. + repeated SpeakerVoiceConfig speaker_voice_configs = 2 + [(google.api.field_behavior) = REQUIRED]; +} + +// Configuration for speech generation. +message SpeechConfig { + // The configuration for the voice to use. + VoiceConfig voice_config = 1; + + // Optional. The language code (ISO 639-1) for the speech synthesis. + string language_code = 2 [(google.api.field_behavior) = OPTIONAL]; + + // The configuration for a multi-speaker text-to-speech request. + // This field is mutually exclusive with `voice_config`. + MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; +} + // Config for image generation features. message ImageConfig { // Optional. The desired aspect ratio for the generated images. The following @@ -347,6 +411,10 @@ message GenerationConfig { optional RoutingConfig routing_config = 17 [(google.api.field_behavior) = OPTIONAL]; + // Optional. The speech generation config. + optional SpeechConfig speech_config = 23 + [(google.api.field_behavior) = OPTIONAL]; + // Optional. Config for thinking features. // An error will be returned if this field is set for models that don't // support thinking. diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/custom_job.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/custom_job.proto index ae940e744d4e..ea1230354290 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/custom_job.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/custom_job.proto @@ -312,6 +312,10 @@ message WorkerPoolSpec { // Optional. List of NFS mount spec. repeated NfsMount nfs_mounts = 4 [(google.api.field_behavior) = OPTIONAL]; + // Optional. List of Lustre mounts. + repeated LustreMount lustre_mounts = 9 + [(google.api.field_behavior) = OPTIONAL]; + // Disk spec. DiskSpec disk_spec = 5; } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/feature_online_store.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/feature_online_store.proto index 4f75c52bb721..769a46305bd9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/feature_online_store.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/feature_online_store.proto @@ -82,6 +82,11 @@ message FeatureOnlineStore { // Output only. Metadata of the Bigtable instance. Output only. BigtableMetadata bigtable_metadata = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Optional. The zone where the underlying Bigtable cluster for the primary + // Bigtable instance will be provisioned. Only the zone must be provided. + // For example, only "us-central1-a" should be provided. + string zone = 5 [(google.api.field_behavior) = OPTIONAL]; } // Optimized storage type diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/machine_resources.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/machine_resources.proto index 05310b218145..41ed31300ab1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/machine_resources.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/machine_resources.proto @@ -54,6 +54,25 @@ message MachineSpec { // The number of accelerators to attach to the machine. int32 accelerator_count = 3; + // Optional. Immutable. The Nvidia GPU partition size. + // + // When specified, the requested accelerators will be partitioned into + // smaller GPU partitions. For example, if the request is for 8 units of + // NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will + // create 8 * 7 = 56 partitioned MIG instances. + // + // The partition size must be a value supported by the requested accelerator. + // Refer to + // [Nvidia GPU + // Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions) + // for the available partition sizes. + // + // If set, the accelerator_count should be set to 1. + string gpu_partition_size = 7 [ + (google.api.field_behavior) = IMMUTABLE, + (google.api.field_behavior) = OPTIONAL + ]; + // Immutable. The topology of the TPUs. Corresponds to the TPU topologies // available from GKE. (Example: tpu_topology: "2x2x1"). string tpu_topology = 4 [(google.api.field_behavior) = IMMUTABLE]; @@ -66,35 +85,31 @@ message MachineSpec { ]; } -// A description of resources that are dedicated to a DeployedModel, and -// that need a higher degree of manual configuration. +// A description of resources that are dedicated to a DeployedModel or +// DeployedIndex, and that need a higher degree of manual configuration. message DedicatedResources { - // Required. Immutable. The specification of a single machine used by the - // prediction. + // Required. Immutable. The specification of a single machine being used. MachineSpec machine_spec = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.field_behavior) = IMMUTABLE ]; - // Required. Immutable. The minimum number of machine replicas this - // DeployedModel will be always deployed on. This value must be greater than - // or equal to 1. + // Required. Immutable. The minimum number of machine replicas that will be + // always deployed on. This value must be greater than or equal to 1. // - // If traffic against the DeployedModel increases, it may dynamically be - // deployed onto more replicas, and as traffic decreases, some of these extra - // replicas may be freed. + // If traffic increases, it may dynamically be deployed onto more replicas, + // and as traffic decreases, some of these extra replicas may be freed. int32 min_replica_count = 2 [ (google.api.field_behavior) = REQUIRED, (google.api.field_behavior) = IMMUTABLE ]; - // Immutable. The maximum number of replicas this DeployedModel may be - // deployed on when the traffic against it increases. If the requested value - // is too large, the deployment will error, but if deployment succeeds then - // the ability to scale the model to that many replicas is guaranteed (barring - // service outages). If traffic against the DeployedModel increases beyond - // what its replicas at maximum may handle, a portion of the traffic will be - // dropped. If this value is not provided, will use + // Immutable. The maximum number of replicas that may be deployed on when the + // traffic against it increases. If the requested value is too large, the + // deployment will error, but if deployment succeeds then the ability to scale + // to that many replicas is guaranteed (barring service outages). If traffic + // increases beyond what its replicas at maximum may handle, a portion of the + // traffic will be dropped. If this value is not provided, will use // [min_replica_count][google.cloud.aiplatform.v1.DedicatedResources.min_replica_count] // as the default value. // @@ -105,8 +120,8 @@ message DedicatedResources { int32 max_replica_count = 3 [(google.api.field_behavior) = IMMUTABLE]; // Optional. Number of required available replicas for the deployment to - // succeed. This field is only needed when partial model deployment/mutation - // is desired. If set, the model deploy/mutate operation will succeed once + // succeed. This field is only needed when partial deployment/mutation is + // desired. If set, the deploy/mutate operation will succeed once // available_replica_count reaches required_replica_count, and the rest of // the replicas will be retried. If not set, the default // required_replica_count will be min_replica_count. @@ -147,23 +162,22 @@ message DedicatedResources { // and require only a modest additional configuration. // Each Model supporting these resources documents its specific guidelines. message AutomaticResources { - // Immutable. The minimum number of replicas this DeployedModel will be always - // deployed on. If traffic against it increases, it may dynamically be - // deployed onto more replicas up to + // Immutable. The minimum number of replicas that will be always deployed on. + // If traffic against it increases, it may dynamically be deployed onto more + // replicas up to // [max_replica_count][google.cloud.aiplatform.v1.AutomaticResources.max_replica_count], // and as traffic decreases, some of these extra replicas may be freed. If the // requested value is too large, the deployment will error. int32 min_replica_count = 1 [(google.api.field_behavior) = IMMUTABLE]; - // Immutable. The maximum number of replicas this DeployedModel may be - // deployed on when the traffic against it increases. If the requested value - // is too large, the deployment will error, but if deployment succeeds then - // the ability to scale the model to that many replicas is guaranteed (barring - // service outages). If traffic against the DeployedModel increases beyond - // what its replicas at maximum may handle, a portion of the traffic will be - // dropped. If this value is not provided, a no upper bound for scaling under - // heavy traffic will be assume, though Vertex AI may be unable to scale - // beyond certain replica number. + // Immutable. The maximum number of replicas that may be deployed on when the + // traffic against it increases. If the requested value is too large, the + // deployment will error, but if deployment succeeds then the ability to scale + // to that many replicas is guaranteed (barring service outages). If traffic + // increases beyond what its replicas at maximum may handle, a portion of the + // traffic will be dropped. If this value is not provided, a no upper bound + // for scaling under heavy traffic will be assume, though Vertex AI may be + // unable to scale beyond certain replica number. int32 max_replica_count = 2 [(google.api.field_behavior) = IMMUTABLE]; } @@ -196,9 +210,10 @@ message ResourcesConsumed { // Represents the spec of disk options. message DiskSpec { - // Type of the boot disk (default is "pd-ssd"). - // Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or - // "pd-standard" (Persistent Disk Hard Disk Drive). + // Type of the boot disk. For non-A3U machines, the default value is + // "pd-ssd", for A3U machines, the default value is "hyperdisk-balanced". + // Valid values: "pd-ssd" (Persistent Disk Solid State Drive), + // "pd-standard" (Persistent Disk Hard Disk Drive) or "hyperdisk-balanced". string boot_disk_type = 1; // Size in GB of the boot disk (default is 100GB). @@ -234,6 +249,22 @@ message NfsMount { string mount_point = 3 [(google.api.field_behavior) = REQUIRED]; } +// Represents a mount configuration for Lustre file system. +message LustreMount { + // Required. IP address of the Lustre instance. + string instance_ip = 1 [(google.api.field_behavior) = REQUIRED]; + + // Required. The unique identifier of the Lustre volume. + string volume_handle = 2 [(google.api.field_behavior) = REQUIRED]; + + // Required. The name of the Lustre filesystem. + string filesystem = 3 [(google.api.field_behavior) = REQUIRED]; + + // Required. Destination mount path. The Lustre file system will be mounted + // for the user under /mnt/lustre/ + string mount_point = 4 [(google.api.field_behavior) = REQUIRED]; +} + // The metric specification that defines the target resource utilization // (CPU utilization, accelerator's duty cycle, and so on) for calculating the // desired replica count. @@ -244,6 +275,7 @@ message AutoscalingMetricSpec { // * For Online Prediction: // * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` // * `aiplatform.googleapis.com/prediction/online/cpu/utilization` + // * `aiplatform.googleapis.com/prediction/online/request_count` string metric_name = 1 [(google.api.field_behavior) = REQUIRED]; // The target resource utilization in percentage (1% - 100%) for the given diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/reasoning_engine.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/reasoning_engine.proto index a969d3e32a13..440d1e19484d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/reasoning_engine.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/reasoning_engine.proto @@ -31,6 +31,10 @@ option java_outer_classname = "ReasoningEngineProto"; option java_package = "com.google.cloud.aiplatform.v1"; option php_namespace = "Google\\Cloud\\AIPlatform\\V1"; option ruby_package = "Google::Cloud::AIPlatform::V1"; +option (google.api.resource_definition) = { + type: "developerconnect.googleapis.com/GitRepositoryLink" + pattern: "projects/{project}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_repository_link}" +}; // ReasoningEngine configurations message ReasoningEngineSpec { @@ -47,8 +51,9 @@ message ReasoningEngineSpec { // Optional. The Cloud Storage URI of the `requirements.txt` file string requirements_gcs_uri = 3 [(google.api.field_behavior) = OPTIONAL]; - // Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11. - // If not specified, default value is 3.10. + // Optional. The Python version. Supported values + // are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value + // is 3.10. string python_version = 4 [(google.api.field_behavior) = OPTIONAL]; } @@ -104,14 +109,45 @@ message ReasoningEngineSpec { // Specifies source code provided as a byte stream. message InlineSource { // Required. Input only. The application source code archive, provided as - // a compressed tarball - // (.tar.gz) file. + // a compressed tarball (.tar.gz) file. bytes source_archive = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.field_behavior) = INPUT_ONLY ]; } + // Specifies the configuration for fetching source code from a Git + // repository that is managed by Developer Connect. This includes the + // repository, revision, and directory to use. + message DeveloperConnectConfig { + // Required. The Developer Connect Git repository link, formatted as + // `projects/*/locations/*/connections/*/gitRepositoryLink/*`. + string git_repository_link = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "developerconnect.googleapis.com/GitRepositoryLink" + } + ]; + + // Required. Directory, relative to the source root, in which to run the + // build. + string dir = 2 [(google.api.field_behavior) = REQUIRED]; + + // Required. The revision to fetch from the Git repository such as a + // branch, a tag, a commit SHA, or any Git ref. + string revision = 3 [(google.api.field_behavior) = REQUIRED]; + } + + // Specifies source code to be fetched from a Git repository managed through + // the Developer Connect service. + message DeveloperConnectSource { + // Required. The Developer Connect configuration that defines the + // specific repository, revision, and directory to use as the source code + // root. + DeveloperConnectConfig config = 1 + [(google.api.field_behavior) = REQUIRED]; + } + // Specification for running a Python application from source. message PythonSpec { // Optional. The version of Python to use. Support version @@ -141,6 +177,9 @@ message ReasoningEngineSpec { oneof source { // Source code is provided directly in the request. InlineSource inline_source = 1; + + // Source code is in a Git repository managed by Developer Connect. + DeveloperConnectSource developer_connect_source = 3; } // Specifies the language-specific configuration for building and running diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/tool.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/tool.proto index cc102b5cbd8b..298cecf261a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/tool.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/tool.proto @@ -150,8 +150,10 @@ message Tool { // Enables the model to execute code as part of generation. CodeExecution code_execution = 4 [(google.api.field_behavior) = OPTIONAL]; + reserved 8, 9; + // Optional. Tool to support URL context retrieval. - UrlContext url_context = 8 [(google.api.field_behavior) = OPTIONAL]; + UrlContext url_context = 10 [(google.api.field_behavior) = OPTIONAL]; // Optional. Tool to support the model interacting directly with the computer. // If enabled, it automatically populates computer-use specific Function @@ -232,13 +234,51 @@ message FunctionDeclaration { // representing the [FunctionDeclaration.name] and a structured JSON object // containing the parameters and their values. message FunctionCall { - // Required. The name of the function to call. + // Optional. The name of the function to call. // Matches [FunctionDeclaration.name]. - string name = 1 [(google.api.field_behavior) = REQUIRED]; + string name = 1 [(google.api.field_behavior) = OPTIONAL]; - // Optional. Required. The function parameters and values in JSON object - // format. See [FunctionDeclaration.parameters] for parameter details. + // Optional. The function parameters and values in JSON object format. + // See [FunctionDeclaration.parameters] for parameter details. google.protobuf.Struct args = 2 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The partial argument value of the function call. + // If provided, represents the arguments/fields that are streamed + // incrementally. + repeated PartialArg partial_args = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Whether this is the last part of the FunctionCall. + // If true, another partial message for the current FunctionCall is expected + // to follow. + bool will_continue = 5 [(google.api.field_behavior) = OPTIONAL]; +} + +// Partial argument value of the function call. +message PartialArg { + // The delta of field value being streamed. + oneof delta { + // Optional. Represents a null value. + google.protobuf.NullValue null_value = 2 + [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Represents a double value. + double number_value = 3 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Represents a string value. + string string_value = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Represents a boolean value. + bool bool_value = 5 [(google.api.field_behavior) = OPTIONAL]; + } + + // Required. A JSON Path (RFC 9535) to the argument being streamed. + // https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". + string json_path = 1 [(google.api.field_behavior) = REQUIRED]; + + // Optional. Whether this is not the last part of the same json_path. + // If true, another PartialArg message for the current json_path is expected + // to follow. + bool will_continue = 6 [(google.api.field_behavior) = OPTIONAL]; } // A datatype containing media that is part of a `FunctionResponse` message. @@ -556,6 +596,12 @@ message FunctionCallingConfig { // will predict a function call from the set of function names provided. repeated string allowed_function_names = 2 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. When set to true, arguments of a single function call will be + // streamed out in multiple parts/contents/responses. Partial parameter + // results will be returned in the [FunctionCall.partial_args] field. + bool stream_function_call_arguments = 4 + [(google.api.field_behavior) = OPTIONAL]; } // Retrieval config. diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/pom.xml b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/pom.xml index 7932919ffb50..940011aba190 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/pom.xml +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-aiplatform-v1beta1 - 0.98.0-SNAPSHOT + 0.99.0 proto-google-cloud-aiplatform-v1beta1 Proto library for google-cloud-aiplatform com.google.cloud google-cloud-aiplatform-parent - 3.82.0-SNAPSHOT + 3.83.0 diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorType.java index ca52ec98e923..af1a93fedce0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorTypeProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorTypeProto.java index 25b265d76198..f4298903b235 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorTypeProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceleratorTypeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequest.java index 20aa0d1190ed..e0fe1827beaf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequestOrBuilder.java index 6a79a1dc9586..fced9ebc2d20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AcceptPublisherModelEulaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfig.java index 0d8eff4e7ee3..44c32b095a73 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfigOrBuilder.java index 19ced0275c21..8129549208ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ActiveLearningConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequest.java index 64eeda53ed3a..2b49a95b09c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequestOrBuilder.java index f2e72406d645..2b1f577c246d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponse.java index 8d9927b30c70..5856c799f988 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponseOrBuilder.java index 174bedfaa1f1..667648faab7b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextArtifactsAndExecutionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequest.java index 1295a31b05d9..51e91a772449 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequestOrBuilder.java index 855e70e760ef..45626f7acc9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponse.java index 294a88a9998e..84aae2cfc809 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponseOrBuilder.java index 09840a89c418..383d62646d33 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddContextChildrenResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequest.java index 8a1cb8622bf2..c2d8ce21d4a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequestOrBuilder.java index 46ce9079f200..875625e0484f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponse.java index cb76588d4882..debbd4dd1a30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponseOrBuilder.java index 8dc579b68a4c..78854c7e19cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddExecutionEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequest.java index bd7780eaa045..43790e77fab3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequestOrBuilder.java index f8cb15f46b60..bde56fb478ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AddTrialMeasurementRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutput.java index 2ac5286939ae..8945113c9e76 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutputOrBuilder.java index 6a1f918eca95..0484685b6ad0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationOutputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResult.java index 95fd3742904b..500ab53ef2fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResultOrBuilder.java index e3a854c99e6e..e23ca519021f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AggregationResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Annotation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Annotation.java index 4b679314ac89..bea93692935c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Annotation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Annotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationOrBuilder.java index 8885016fe33a..a34d45c31b7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationProto.java index 12912e368dd1..cbeaa52432dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpec.java index dfc5757536df..03debc2a42df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecName.java index 9ef07e303c26..c7066cf62409 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecOrBuilder.java index aa4c4fd432e8..e5dcaac90616 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecProto.java index 66d8b8a6c3e5..237d1d7d47a2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AnnotationSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuth.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuth.java index b6b9f9578e1e..b09b21e3970e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuth.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuth.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthOrBuilder.java index f50409c7db8e..bde30abac498 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthProto.java index 8855333eee15..474997c903c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ApiAuthProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequest.java index 9c211da553e2..de12f5d06aae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequestOrBuilder.java index 72f8e5095966..c692328e0b2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponse.java index 3d6302f89241..2c54efca1f74 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponseOrBuilder.java index 750ef8068a50..3c3b584b4298 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AppendEventResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Artifact.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Artifact.java index f521a94b89f8..f54cc42a5df7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Artifact.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Artifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactName.java index 9ceb94b6c876..e6836c7f1bbb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactOrBuilder.java index c1cae3a99ed9..8c0cfde14d06 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactProto.java index 9c6124f70397..bf53e6cb3ecf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchema.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchema.java index 7d36bafceeb2..2c1f2b0a6c55 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchema.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchemaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchemaOrBuilder.java index 16d7caea8eae..a83eb71646b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchemaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ArtifactTypeSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadata.java index a771664b1731..0714496a0661 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadataOrBuilder.java index d32586c111ba..53d1b9231f59 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequest.java index 7d952d573d30..303f0e6a397d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequestOrBuilder.java index d036d5509a43..c5d42602b2dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponse.java index 638f490ec563..ddf5b9b43734 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponseOrBuilder.java index 0ee33d5a2396..d378995e0312 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssembleDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadata.java index 47d36d3a4d0d..2338f990aebb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadataOrBuilder.java index b81f1ff7f1a2..128f464b4af1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequest.java index ef1bce7896df..af6884d52445 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequestOrBuilder.java index 7d0d3e5955f7..f03e5fec4829 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponse.java index db81caedae40..ab2f06061874 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponseOrBuilder.java index 1ed30bf97c61..3459e2eff4b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssessDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadata.java index 40bfdb54b673..7b62d89d3170 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadataOrBuilder.java index eb427761157c..c71ca45fcfdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequest.java index 016957193eb4..d3d174cc2026 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequestOrBuilder.java index beef03ceba72..3057c87962bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AssignNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Attribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Attribution.java index 38b196f841a7..4a1efb4b9712 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Attribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Attribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AttributionOrBuilder.java index 9d8bfb17d148..e3889776a8c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequest.java index de300abf1253..83fb2ab14e40 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequestOrBuilder.java index cbf35966f8e4..3caf45f96e6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponse.java index 3462d6442a63..2a7bce56b184 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponseOrBuilder.java index 372d2c0d2c02..1c9716971f77 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AugmentPromptResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfig.java index 15629d13356e..a65eccffaf04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfigOrBuilder.java index 51e9e34f658b..820bb72c3cec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthType.java index aaccfb9528b7..4d591a72c9fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AuthType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResources.java index 81db08549445..a1a529526ea7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResourcesOrBuilder.java index 5efe52d2628c..462f88af2adb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResourcesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutomaticResourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfig.java index 8f886665c801..e90372913b24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfigOrBuilder.java index a9914e0b25b9..193ead971bae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoraterConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpec.java index 08bb822ccc4e..3b7483612746 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpecOrBuilder.java index 7fc9edafdfd9..509f278364a2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AutoscalingMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSource.java index 0fb9d913d8d1..87055efac65f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSourceOrBuilder.java index 81ff927e3f3d..078bb1eba386 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/AvroSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadata.java index 289adf73c94f..f0ca39347ffb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java index a96898b37205..affc093b6645 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequest.java index c5ab9aabf867..27904313e32a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequestOrBuilder.java index 9128d8f1ac97..a032da6ca695 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponse.java index 6477f9e59ecb..024a2ff39a7c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponseOrBuilder.java index a87f7dd6e9c3..93bfc2d88796 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCancelPipelineJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadata.java index b04ce6f2f000..eaa3f751af4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadataOrBuilder.java index c15497d4c534..23f6b47c805f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequest.java index 5f5b90dd1a72..56e48eeb0f0c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequestOrBuilder.java index 711b69cf9454..16872825fb1e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponse.java index 8960bcb68e80..476048bfbae5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponseOrBuilder.java index 84f2cdac9e94..f3085e5e3ef6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateFeaturesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequest.java index 3b7b5cb1ccee..cee1ccdd86dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequestOrBuilder.java index 7b265f06980f..6dc15964eef6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponse.java index 84cfe203c954..3ebc43661ca2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponseOrBuilder.java index f35b2136c6a0..7b7b6878baf4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardRunsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequest.java index 80d3e7f166dc..9ae48032f7f3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java index 5d779c263e4d..afc180be39ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponse.java index a4bcbbdb5708..8f1ec94a6f5b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java index 683d50da91f5..79b0a4978d61 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchCreateTensorboardTimeSeriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResources.java index 2b126941e1ef..c2c8a83fb207 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResourcesOrBuilder.java index d1654c2fec42..17ed29df0fcf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResourcesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDedicatedResourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequest.java index 0d9f8218afdc..f7cfb1d4f84d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequestOrBuilder.java index 5c8ee9a0fd57..d2a99b228c36 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponse.java index b532fd274d69..e5941cb47b8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponseOrBuilder.java index 872ac10096d7..8381720e5e3a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchDeletePipelineJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequest.java index b9e4670f2841..876ddd9ef53e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java index d69d78d5326e..e85af4888848 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponse.java index fd8ece958039..959e4b44aaa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java index badf4a310143..a2c629b755bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportEvaluatedAnnotationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequest.java index 1a845ce41621..23079445c781 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequestOrBuilder.java index ca443a06bf91..545424aa8079 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponse.java index ce5b7607514e..d46541f3f7e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponseOrBuilder.java index 63030ca80406..9a268884ee1d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchImportModelEvaluationSlicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadata.java index 9e328b135155..f1e50fecd8ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadataOrBuilder.java index ef2c1b94f92e..8ad73c7bac2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequest.java index 9aa0abf04f0a..8a82c5e0d468 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequestOrBuilder.java index c9ede91f0323..c5316abddfb5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponse.java index ce780837cb76..9e90f95ae0a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponseOrBuilder.java index d32579cc855d..86a80c862623 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchMigrateResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJob.java index 225396c43562..bf2e50e2e7b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobName.java index 7c4d3645c07b..23e5b3389bf4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobOrBuilder.java index d08087c46250..3753d1d4d545 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobProto.java index 548f17e91c3e..a5bb30f3b065 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchPredictionJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadata.java index a9851fe16282..c1908a52bd51 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadataOrBuilder.java index d81b99761f21..c3415133a876 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequest.java index ce67db4227b6..14646e608a88 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequestOrBuilder.java index 52c77a3591ca..396dce76a2d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponse.java index 2c0e3534e1f2..dd53199e2d7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponseOrBuilder.java index 7bf16ce528e7..d1494deb4f50 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequest.java index 57e1fa2945f9..1deedc66e248 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java index 617b4567b989..179c36902868 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponse.java index 13a95e662695..978283437b90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java index cbf143e0a5b0..5efcace32191 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BatchReadTensorboardTimeSeriesDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestination.java index 5d8d0c552b80..1765f188a37b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestinationOrBuilder.java index 53049827d6f6..41a503544175 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQueryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySource.java index fe21b3793f25..a493670fe2fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySourceOrBuilder.java index 3f6a3d462363..cc57e453ddfd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BigQuerySourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInput.java index 566f479f992f..6774d905302f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInputOrBuilder.java index 5b907e9bd4cd..57e3a8bbe436 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstance.java index 9d6de00df85b..0f836a90174f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstanceOrBuilder.java index 63dae2c1e31b..ba58b4649c37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValue.java index a13facef95e8..d9f86723136c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValueOrBuilder.java index d1ca35788669..652711e467b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResults.java index 9195d1397ede..932b2658f1fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResultsOrBuilder.java index f1277aeb5dc1..4ead72d4c283 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpec.java index fae7af698205..b8d7d8c2b24f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpecOrBuilder.java index 375cd4573e77..0354eba3df92 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BleuSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Blob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Blob.java index 864642d29285..9f2468900d62 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Blob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Blob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlobOrBuilder.java index b73fdf01b2eb..d556be744c3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfig.java index 58879c255ffe..b55626afaa8b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfigOrBuilder.java index 60d46bbc40ae..8febdf5bac31 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BlurBaselineConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArray.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArray.java index aa09d4257725..5331c2e20bcf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArray.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArrayOrBuilder.java index 3da10fa9cf6e..565cd6aaac99 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/BoolArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContent.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContent.java index 85b822fddc63..67571a4879e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContent.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentName.java index 0f94439ee792..3452488791fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentOrBuilder.java index 11ba95fdb2c0..629b41407bfc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentProto.java index 9cfdbfbcdb60..cfed3098e03b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CachedContentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequest.java index 33e6f7cc8a99..43e6868c1758 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequestOrBuilder.java index 2410bcf5e162..0739be25045e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelBatchPredictionJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequest.java index b5931f60ab0a..cbfd37208fa6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequestOrBuilder.java index 2fb02f03db19..e38983cc2b56 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelCustomJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequest.java index 8b2a25b9cf1e..fc49a8c79062 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequestOrBuilder.java index 3432394ab1a3..e77e7c12ebe3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelDataLabelingJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequest.java index 1603d190b3bf..55ae58b3c32f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequestOrBuilder.java index 49964b83b38f..bf94d5b84711 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelHyperparameterTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequest.java index a64c6a776cc0..bb802cbdbab5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequestOrBuilder.java index 2d23e5f57f40..9e0fe8eec3c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelNasJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequest.java index cd8df698ba42..1d961a6cdd95 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequestOrBuilder.java index 356abbd05da2..f0bd7f072139 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelPipelineJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequest.java index fb9555b09c0b..ab48bc497fa3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequestOrBuilder.java index e97c6d692460..9d83d65a72cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTrainingPipelineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequest.java index efede31689f5..3d60795a546b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequestOrBuilder.java index 59db8d409cca..06eec105465e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CancelTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Candidate.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Candidate.java index ff4ac85bdb88..61d27c013e4e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Candidate.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Candidate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CandidateOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CandidateOrBuilder.java index 464c7c250c02..2a101b6e64f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CandidateOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CandidateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequest.java index 21ecf52cd643..682825cdc101 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequestOrBuilder.java index 0a8a73d63b49..59ef325a27fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ChatCompletionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequest.java index bf035a7a3d26..a1722683973a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequestOrBuilder.java index 76eb565a68f9..ae8a8b4540bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckPublisherModelEulaAcceptanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdata.java index d14e6bad72b8..465858678cac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java index fa3c9c9ff8d9..00e66ff9b3b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateMetatdataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequest.java index 1de67c126355..8162f44b8a6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequestOrBuilder.java index 75b812e82c27..53b3f8e6d4e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponse.java index 9f756601e9e6..fa44b1876764 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponseOrBuilder.java index 83abb7e6cc46..207e65346ac8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckTrialEarlyStoppingStateResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Checkpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Checkpoint.java index da94df9cc38e..57d51a1cfdb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Checkpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Checkpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckpointOrBuilder.java index 7c1a606d3750..5cb0a29ca108 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CheckpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Citation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Citation.java index 28fad50af7b6..71a919012d84 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Citation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Citation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadata.java index bd2655bd10ba..644e20d70b01 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadataOrBuilder.java index b35aa88e584b..c54a08e117a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationOrBuilder.java index c16606463307..3ab03f7743b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CitationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Claim.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Claim.java index c8d2349ace43..0943b07d2654 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Claim.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Claim.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClaimOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClaimOrBuilder.java index 7b9d5197da7d..baf0fc7c57a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClaimOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClaimOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfig.java index 71c47c39c1bf..aaf1d2eb7e69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfigOrBuilder.java index 4ebedc9f9315..43457df3b891 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ClientConnectionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResult.java index f719b06188d4..52954c380355 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResultOrBuilder.java index ca0f33118c02..978af5dffb75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CodeExecutionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInput.java index 056ca18128e1..ef99f6c12982 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInputOrBuilder.java index 38e290f3c1f4..448c08fa4d0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstance.java index 942160c13630..1c567151525d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstanceOrBuilder.java index f7ba0c8a3073..45aab8e64306 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResult.java index 237ec6052033..7298f95c9f40 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResultOrBuilder.java index d5b380306003..07b4fe5b9a69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpec.java index 0eef1c446f0d..e6e716a585b6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpecOrBuilder.java index 5665e8a3687f..46bc12573d1d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CoherenceSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImage.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImage.java index 5c3f24ae9200..52af3be97cf8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImage.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImageOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImageOrBuilder.java index 98ccea483976..3e5a02d75464 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImageOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ColabImageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInput.java index 01e307061333..6c1e173d6bfd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInputOrBuilder.java index bb045387026f..9134ffd410fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstance.java index 34e0a24fc099..669433cac5bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstanceOrBuilder.java index 39cfc7e12f38..9e004b65c082 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResult.java index 05488f04c2ce..e629bfb6c141 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResultOrBuilder.java index 215f4c86417b..414bb6d41430 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpec.java index c88194b67c0e..6ed955a87fcb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpecOrBuilder.java index eedbf9439f02..79391ec11342 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CometSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequest.java index 110d509bbe1e..7a3c3f14b3e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequestOrBuilder.java index f024675b06d5..6bd78755eb74 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompleteTrialRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStats.java index d34a86a3037a..69e6fc836314 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsOrBuilder.java index fe503fe9b391..949f28abcd1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsProto.java index e10a8d9476fd..a262f2dd666f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/CompletionStatsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequest.java index ea61f6f5a526..c2667d40e71a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequestOrBuilder.java index b40850a1179f..9b220d918bee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponse.java index eb801ce62640..ce7f69438ead 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponseOrBuilder.java index 9e6916708303..d4c4b5ab37c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ComputeTokensResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestination.java index 3e02919ec4f4..73f833fe01a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestinationOrBuilder.java index 4709b8de3639..89f2ee582e30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerRegistryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpec.java index ac4f4ce04096..4d6d83406b58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpecOrBuilder.java index 5a8fa781403c..3678ac496408 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContainerSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Content.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Content.java index afe44d4e92c1..84518bd5b3f1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Content.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Content.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMap.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMap.java index 8e06250a2d4c..bf673f195fc5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMap.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMap.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMapOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMapOrBuilder.java index ce38a5888619..ec1578de670a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMapOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentMapOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentOrBuilder.java index 9bffd3b8a55a..cc9e9a827451 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentProto.java index 6b898f2264cb..aa9379dec59b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ContentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,10 +52,22 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1beta1_PrebuiltVoiceConfig_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_PrebuiltVoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_VoiceConfig_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_VoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_SpeechConfig_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -237,13 +249,29 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "end_offset\030\002 \001(\0132\031.google.protobuf.DurationB\003\340A\001\"=\n" + "\023PrebuiltVoiceConfig\022\027\n\n" + "voice_name\030\001 \001(\tH\000\210\001\001B\r\n" - + "\013_voice_name\"t\n" + + "\013_voice_name\"P\n" + + "\025ReplicatedVoiceConfig\022\026\n" + + "\tmime_type\030\001 \001(\tB\003\340A\001\022\037\n" + + "\022voice_sample_audio\030\002 \001(\014B\003\340A\001\"\324\001\n" + "\013VoiceConfig\022U\n" + "\025prebuilt_voice_config\030\001" - + " \001(\01324.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfigH\000B\016\n" - + "\014voice_config\"R\n" + + " \001(\01324.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfigH\000\022^\n" + + "\027replicated_voice_config\030\003 \001(\01326.google.c" + + "loud.aiplatform.v1beta1.ReplicatedVoiceConfigB\003\340A\001H\000B\016\n" + + "\014voice_config\"s\n" + + "\022SpeakerVoiceConfig\022\024\n" + + "\007speaker\030\001 \001(\tB\003\340A\002\022G\n" + + "\014voice_config\030\002" + + " \001(\0132,.google.cloud.aiplatform.v1beta1.VoiceConfigB\003\340A\002\"r\n" + + "\027MultiSpeakerVoiceConfig\022W\n" + + "\025speaker_voice_configs\030\002 " + + "\003(\01323.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigB\003\340A\002\"\314\001\n" + "\014SpeechConfig\022B\n" - + "\014voice_config\030\001 \001(\0132,.google.cloud.aiplatform.v1beta1.VoiceConfig\">\n" + + "\014voice_config\030\001" + + " \001(\0132,.google.cloud.aiplatform.v1beta1.VoiceConfig\022\032\n\r" + + "language_code\030\002 \001(\tB\003\340A\001\022\\\n" + + "\032multi_speaker_voice_config\030\003" + + " \001(\01328.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig\">\n" + "\013ImageConfig\022\036\n" + "\014aspect_ratio\030\002 \001(\tB\003\340A\001H\000\210\001\001B\017\n\r" + "_aspect_ratio\"\256\025\n" @@ -261,36 +289,36 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004seed\030\014 \001(\005B\003\340A\001H\t\210\001\001\022\037\n" + "\022response_mime_type\030\r" + " \001(\tB\003\340A\001\022J\n" - + "\017response_schema\030\020" - + " \001(\0132\'.google.cloud.aiplatform.v1beta1.SchemaB\003\340A\001H\n" + + "\017response_schema\030\020 \001(\0132\'.go" + + "ogle.cloud.aiplatform.v1beta1.SchemaB\003\340A\001H\n" + "\210\001\001\022>\n" + "\024response_json_schema\030\034" + " \001(\0132\026.google.protobuf.ValueB\003\340A\001H\013\210\001\001\022a\n" - + "\016routing_config\030\021 \001(\0132" - + "?.google.cloud.aiplatform.v1beta1.GenerationConfig.RoutingConfigB\003\340A\001H\014\210\001\001\022!\n" + + "\016routing_config\030\021 \001(\0132?.google.cloud.aiplatform" + + ".v1beta1.GenerationConfig.RoutingConfigB\003\340A\001H\014\210\001\001\022!\n" + "\017audio_timestamp\030\024 \001(\010B\003\340A\001H\r" + "\210\001\001\022\\\n" - + "\023response_modalities\030\025 \003(\0162:.google.cloud.aiplat" - + "form.v1beta1.GenerationConfig.ModalityB\003\340A\001\022e\n" - + "\020media_resolution\030\026 \001(\0162A.google.c" - + "loud.aiplatform.v1beta1.GenerationConfig.MediaResolutionB\003\340A\001H\016\210\001\001\022N\n\r" - + "speech_config\030\027" - + " \001(\0132-.google.cloud.aiplatform.v1beta1.SpeechConfigB\003\340A\001H\017\210\001\001\022^\n" - + "\017thinking_config\030\031 \001(\0132@.google.cloud.aiplatform.v1" - + "beta1.GenerationConfig.ThinkingConfigB\003\340A\001\022X\n" - + "\014model_config\030\033 \001(\0132=.google.cloud." - + "aiplatform.v1beta1.GenerationConfig.ModelConfigB\003\340A\001\022L\n" - + "\014image_config\030\036 \001(\0132,.goo" - + "gle.cloud.aiplatform.v1beta1.ImageConfigB\003\340A\001H\020\210\001\001\032\321\004\n\r" + + "\023response_modalities\030\025 \003(\0162:.goog" + + "le.cloud.aiplatform.v1beta1.GenerationConfig.ModalityB\003\340A\001\022e\n" + + "\020media_resolution\030\026 \001(\0162A.google.cloud.aiplatform.v1beta1.G" + + "enerationConfig.MediaResolutionB\003\340A\001H\016\210\001\001\022N\n\r" + + "speech_config\030\027 \001(\0132-.google.cloud." + + "aiplatform.v1beta1.SpeechConfigB\003\340A\001H\017\210\001\001\022^\n" + + "\017thinking_config\030\031 \001(\0132@.google.clou" + + "d.aiplatform.v1beta1.GenerationConfig.ThinkingConfigB\003\340A\001\022X\n" + + "\014model_config\030\033 \001(\0132" + + "=.google.cloud.aiplatform.v1beta1.GenerationConfig.ModelConfigB\003\340A\001\022L\n" + + "\014image_config\030\036" + + " \001(\0132,.google.cloud.aiplatform.v1beta1.ImageConfigB\003\340A\001H\020\210\001\001\032\321\004\n\r" + "RoutingConfig\022d\n" - + "\tauto_mode\030\001 \001(\0132O.google.cloud.aiplatform.v1beta" - + "1.GenerationConfig.RoutingConfig.AutoRoutingModeH\000\022h\n" - + "\013manual_mode\030\002 \001(\0132Q.google" - + ".cloud.aiplatform.v1beta1.GenerationConfig.RoutingConfig.ManualRoutingModeH\000\032\240\002\n" + + "\tauto_mode\030\001 \001(\0132O.google.cloud.ai" + + "platform.v1beta1.GenerationConfig.RoutingConfig.AutoRoutingModeH\000\022h\n" + + "\013manual_mode\030\002 \001(\0132Q.google.cloud.aiplatform.v1beta1" + + ".GenerationConfig.RoutingConfig.ManualRoutingModeH\000\032\240\002\n" + "\017AutoRoutingMode\022\215\001\n" - + "\030model_routing_preference\030\001 \001(\0162f.google.cloud.aiplatform.v1" - + "beta1.GenerationConfig.RoutingConfig.Aut" - + "oRoutingMode.ModelRoutingPreferenceH\000\210\001\001\"`\n" + + "\030model_routing_preference\030\001 \001(\0162f.google.clou" + + "d.aiplatform.v1beta1.GenerationConfig.Ro" + + "utingConfig.AutoRoutingMode.ModelRoutingPreferenceH\000\210\001\001\"`\n" + "\026ModelRoutingPreference\022\013\n" + "\007UNKNOWN\020\000\022\026\n" + "\022PRIORITIZE_QUALITY\020\001\022\014\n" @@ -307,9 +335,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\021_include_thoughtsB\022\n" + "\020_thinking_budget\032\233\002\n" + "\013ModelConfig\022\203\001\n" - + "\034feature_selection_preference\030\001 \001(\0162X.googl" - + "e.cloud.aiplatform.v1beta1.GenerationCon" - + "fig.ModelConfig.FeatureSelectionPreferenceB\003\340A\002\"\205\001\n" + + "\034feature_selection_preference\030\001 \001(\0162X.google.cloud.aiplatform.v1beta" + + "1.GenerationConfig.ModelConfig.FeatureSelectionPreferenceB\003\340A\002\"\205\001\n" + "\032FeatureSelectionPreference\022,\n" + "(FEATURE_SELECTION_PREFERENCE_UNSPECIFIED\020\000\022\026\n" + "\022PRIORITIZE_QUALITY\020\001\022\014\n" @@ -340,16 +367,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\017_routing_configB\022\n" + "\020_audio_timestampB\023\n" + "\021_media_resolutionB\020\n" - + "\016_speech_configB\017\n" - + "\r" + + "\016_speech_configB\017\n\r" + "_image_config\"\372\003\n\r" + "SafetySetting\022D\n" + "\010category\030\001" + " \001(\0162-.google.cloud.aiplatform.v1beta1.HarmCategoryB\003\340A\002\022Y\n" - + "\tthreshold\030\002 \001(" - + "\0162A.google.cloud.aiplatform.v1beta1.SafetySetting.HarmBlockThresholdB\003\340A\002\022S\n" - + "\006method\030\004 \001(\0162>.google.cloud.aiplatform.v1be" - + "ta1.SafetySetting.HarmBlockMethodB\003\340A\001\"\235\001\n" + + "\tthreshold\030\002 \001(\0162A.google.cloud.aiplatfo" + + "rm.v1beta1.SafetySetting.HarmBlockThresholdB\003\340A\002\022S\n" + + "\006method\030\004 \001(\0162>.google.cloud." + + "aiplatform.v1beta1.SafetySetting.HarmBlockMethodB\003\340A\001\"\235\001\n" + "\022HarmBlockThreshold\022$\n" + " HARM_BLOCK_THRESHOLD_UNSPECIFIED\020\000\022\027\n" + "\023BLOCK_LOW_AND_ABOVE\020\001\022\032\n" @@ -362,19 +388,20 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\010SEVERITY\020\001\022\017\n" + "\013PROBABILITY\020\002\"\316\004\n" + "\014SafetyRating\022D\n" - + "\010category\030\001 \001(\0162-" - + ".google.cloud.aiplatform.v1beta1.HarmCategoryB\003\340A\003\022W\n" - + "\013probability\030\002 \001(\0162=.google" - + ".cloud.aiplatform.v1beta1.SafetyRating.HarmProbabilityB\003\340A\003\022\036\n" + + "\010category\030\001" + + " \001(\0162-.google.cloud.aiplatform.v1beta1.HarmCategoryB\003\340A\003\022W\n" + + "\013probability\030\002" + + " \001(\0162=.google.cloud.aiplatform.v1beta1.SafetyRating.HarmProbabilityB\003\340A\003\022\036\n" + "\021probability_score\030\005 \001(\002B\003\340A\003\022Q\n" - + "\010severity\030\006 \001(\0162:.google.c" - + "loud.aiplatform.v1beta1.SafetyRating.HarmSeverityB\003\340A\003\022\033\n" + + "\010severity\030\006" + + " \001(\0162:.google.cloud.aiplatform.v1beta1.SafetyRating.HarmSeverityB\003\340A\003\022\033\n" + "\016severity_score\030\007 \001(\002B\003\340A\003\022\024\n" + "\007blocked\030\003 \001(\010B\003\340A\003\"b\n" + "\017HarmProbability\022 \n" + "\034HARM_PROBABILITY_UNSPECIFIED\020\000\022\016\n\n" + "NEGLIGIBLE\020\001\022\007\n" - + "\003LOW\020\002\022\n\n" + + "\003LOW\020\002\022\n" + + "\n" + "\006MEDIUM\020\003\022\010\n" + "\004HIGH\020\004\"\224\001\n" + "\014HarmSeverity\022\035\n" @@ -384,8 +411,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024HARM_SEVERITY_MEDIUM\020\003\022\026\n" + "\022HARM_SEVERITY_HIGH\020\004\"U\n" + "\020CitationMetadata\022A\n" - + "\tcitations\030\001 \003(\0132).go" - + "ogle.cloud.aiplatform.v1beta1.CitationB\003\340A\003\"\252\001\n" + + "\tcitations\030\001" + + " \003(\0132).google.cloud.aiplatform.v1beta1.CitationB\003\340A\003\"\252\001\n" + "\010Citation\022\030\n" + "\013start_index\030\001 \001(\005B\003\340A\003\022\026\n" + "\tend_index\030\002 \001(\005B\003\340A\003\022\020\n" @@ -395,28 +422,27 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\020publication_date\030\006 \001(\0132\021.google.type.DateB\003\340A\003\"\357\006\n" + "\tCandidate\022\022\n" + "\005index\030\001 \001(\005B\003\340A\003\022>\n" - + "\007content\030\002" - + " \001(\0132(.google.cloud.aiplatform.v1beta1.ContentB\003\340A\003\022\031\n" + + "\007content\030\002 \001" + + "(\0132(.google.cloud.aiplatform.v1beta1.ContentB\003\340A\003\022\031\n" + "\014avg_logprobs\030\t \001(\001B\003\340A\003\022M\n" + "\017logprobs_result\030\n" + " \001(\0132/.google.cloud.aiplatform.v1beta1.LogprobsResultB\003\340A\003\022S\n\r" - + "finish_reason\030\003 " - + "\001(\01627.google.cloud.aiplatform.v1beta1.Candidate.FinishReasonB\003\340A\003\022J\n" + + "finish_reason\030\003 \001(\01627.google.cloud.aiplat" + + "form.v1beta1.Candidate.FinishReasonB\003\340A\003\022J\n" + "\016safety_ratings\030\004" + " \003(\0132-.google.cloud.aiplatform.v1beta1.SafetyRatingB\003\340A\003\022 \n" + "\016finish_message\030\005 \001(\tB\003\340A\003H\000\210\001\001\022Q\n" - + "\021citation_metadata\030\006 \001" - + "(\01321.google.cloud.aiplatform.v1beta1.CitationMetadataB\003\340A\003\022S\n" - + "\022grounding_metadata\030\007" - + " \001(\01322.google.cloud.aiplatform.v1beta1.GroundingMetadataB\003\340A\003\022V\n" - + "\024url_context_metadata\030\013" - + " \001(\01323.google.cloud.aiplatform.v1beta1.UrlContextMetadataB\003\340A\003\"\315\001\n" + + "\021citation_metadata\030\006" + + " \001(\01321.google.cloud.aiplatform.v1beta1.CitationMetadataB\003\340A\003\022S\n" + + "\022grounding_metadata\030\007 \001(\01322.google.cloud.aip" + + "latform.v1beta1.GroundingMetadataB\003\340A\003\022V\n" + + "\024url_context_metadata\030\013 \001(\01323.google.cl" + + "oud.aiplatform.v1beta1.UrlContextMetadataB\003\340A\003\"\315\001\n" + "\014FinishReason\022\035\n" + "\031FINISH_REASON_UNSPECIFIED\020\000\022\010\n" + "\004STOP\020\001\022\016\n\n" + "MAX_TOKENS\020\002\022\n\n" - + "\006SAFETY\020\003\022\016\n" - + "\n" + + "\006SAFETY\020\003\022\016\n\n" + "RECITATION\020\004\022\t\n" + "\005OTHER\020\005\022\r\n" + "\tBLOCKLIST\020\006\022\026\n" @@ -427,21 +453,21 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "B\021\n" + "\017_finish_message\"]\n" + "\022UrlContextMetadata\022G\n" - + "\014url_metadata\030\001" - + " \003(\0132,.google.cloud.aiplatform.v1beta1.UrlMetadataB\003\340A\003\"\201\002\n" + + "\014url_metadata\030\001 \003(\0132,." + + "google.cloud.aiplatform.v1beta1.UrlMetadataB\003\340A\003\"\201\002\n" + "\013UrlMetadata\022\025\n\r" + "retrieved_url\030\001 \001(\t\022]\n" - + "\024url_retrieval_status\030\002 \001(\0162?.google.cloud.ai" - + "platform.v1beta1.UrlMetadata.UrlRetrievalStatus\"|\n" + + "\024url_retrieval_status\030\002 \001(\0162?." + + "google.cloud.aiplatform.v1beta1.UrlMetadata.UrlRetrievalStatus\"|\n" + "\022UrlRetrievalStatus\022$\n" + " URL_RETRIEVAL_STATUS_UNSPECIFIED\020\000\022 \n" + "\034URL_RETRIEVAL_STATUS_SUCCESS\020\001\022\036\n" + "\032URL_RETRIEVAL_STATUS_ERROR\020\002\"\236\003\n" + "\016LogprobsResult\022U\n" - + "\016top_candidates\030\001 \003(\0132=.google.cloud.aiplatfo" - + "rm.v1beta1.LogprobsResult.TopCandidates\022T\n" - + "\021chosen_candidates\030\002 \003(\01329.google.clou" - + "d.aiplatform.v1beta1.LogprobsResult.Candidate\032\177\n" + + "\016top_candidates\030\001 \003(\0132=.google" + + ".cloud.aiplatform.v1beta1.LogprobsResult.TopCandidates\022T\n" + + "\021chosen_candidates\030\002 \003(" + + "\01329.google.cloud.aiplatform.v1beta1.LogprobsResult.Candidate\032\177\n" + "\tCandidate\022\022\n" + "\005token\030\001 \001(\tH\000\210\001\001\022\025\n" + "\010token_id\030\003 \001(\005H\001\210\001\001\022\034\n" @@ -450,8 +476,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\t_token_idB\022\n" + "\020_log_probability\032^\n\r" + "TopCandidates\022M\n\n" - + "candidates\030\001" - + " \003(\01329.google.cloud.aiplatform.v1beta1.LogprobsResult.Candidate\"g\n" + + "candidates\030\001 \003(\01329.google.clou" + + "d.aiplatform.v1beta1.LogprobsResult.Candidate\"g\n" + "\007Segment\022\027\n\n" + "part_index\030\001 \001(\005B\003\340A\003\022\030\n" + "\013start_index\030\002 \001(\005B\003\340A\003\022\026\n" @@ -460,10 +486,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\016GroundingChunk\022B\n" + "\003web\030\001" + " \001(\01323.google.cloud.aiplatform.v1beta1.GroundingChunk.WebH\000\022]\n" - + "\021retrieved_context\030\002" - + " \001(\0132@.google.cloud.aiplatform.v1beta1.GroundingChunk.RetrievedContextH\000\022D\n" - + "\004maps\030\003" - + " \001(\01324.google.cloud.aiplatform.v1beta1.GroundingChunk.MapsH\000\032=\n" + + "\021retrieved_context\030\002 \001(\0132@.google.cloud." + + "aiplatform.v1beta1.GroundingChunk.RetrievedContextH\000\022D\n" + + "\004maps\030\003 \001(\01324.google.clou" + + "d.aiplatform.v1beta1.GroundingChunk.MapsH\000\032=\n" + "\003Web\022\020\n" + "\003uri\030\001 \001(\tH\000\210\001\001\022\022\n" + "\005title\030\002 \001(\tH\001\210\001\001B\006\n" @@ -486,11 +512,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005title\030\002 \001(\tH\001\210\001\001\022\021\n" + "\004text\030\003 \001(\tH\002\210\001\001\022\025\n" + "\010place_id\030\004 \001(\tH\003\210\001\001\022e\n" - + "\024place_answer_sources\030\005 \001(\0132G.google.cloud.aiplatform.v1bet" - + "a1.GroundingChunk.Maps.PlaceAnswerSources\032\320\001\n" + + "\024place_answer_sources\030\005 \001(\0132G.google.cloud.a" + + "iplatform.v1beta1.GroundingChunk.Maps.PlaceAnswerSources\032\320\001\n" + "\022PlaceAnswerSources\022n\n" - + "\017review_snippets\030\001 \003(\0132U.google.cloud.aiplatform.v1be" - + "ta1.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet\032J\n\r" + + "\017review_snippets\030\001 \003(\0132U.google.cloud." + + "aiplatform.v1beta1.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet\032J\n\r" + "ReviewSnippet\022\021\n" + "\treview_id\030\001 \001(\t\022\027\n" + "\017google_maps_uri\030\002 \001(\t\022\r\n" @@ -501,26 +527,26 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\t_place_idB\014\n\n" + "chunk_type\"\232\001\n" + "\020GroundingSupport\022>\n" - + "\007segment\030\001" - + " \001(\0132(.google.cloud.aiplatform.v1beta1.SegmentH\000\210\001\001\022\037\n" + + "\007segment\030\001 \001(\0132" + + "(.google.cloud.aiplatform.v1beta1.SegmentH\000\210\001\001\022\037\n" + "\027grounding_chunk_indices\030\002 \003(\005\022\031\n" + "\021confidence_scores\030\003 \003(\002B\n\n" + "\010_segment\"\331\005\n" + "\021GroundingMetadata\022\037\n" + "\022web_search_queries\030\001 \003(\tB\003\340A\001\022W\n" - + "\022search_entry_point\030\004 \001(\01321.google.clou" - + "d.aiplatform.v1beta1.SearchEntryPointB\003\340A\001H\000\210\001\001\022\036\n" + + "\022search_entry_point\030\004 \001(" + + "\01321.google.cloud.aiplatform.v1beta1.SearchEntryPointB\003\340A\001H\000\210\001\001\022\036\n" + "\021retrieval_queries\030\003 \003(\tB\003\340A\001\022I\n" - + "\020grounding_chunks\030\005" - + " \003(\0132/.google.cloud.aiplatform.v1beta1.GroundingChunk\022R\n" - + "\022grounding_supports\030\006 \003(\01321.google.cloud.ai" - + "platform.v1beta1.GroundingSupportB\003\340A\001\022[\n" - + "\022retrieval_metadata\030\007 \001(\01322.google.clou" - + "d.aiplatform.v1beta1.RetrievalMetadataB\006\340A\001\340A\003H\001\210\001\001\0225\n" + + "\020grounding_chunks\030\005 \003(\013" + + "2/.google.cloud.aiplatform.v1beta1.GroundingChunk\022R\n" + + "\022grounding_supports\030\006 \003(\01321." + + "google.cloud.aiplatform.v1beta1.GroundingSupportB\003\340A\001\022[\n" + + "\022retrieval_metadata\030\007 \001(" + + "\01322.google.cloud.aiplatform.v1beta1.RetrievalMetadataB\006\340A\001\340A\003H\001\210\001\001\0225\n" + " google_maps_widget_context_token\030\010 \001(" + "\tB\006\340A\001\340A\003H\002\210\001\001\022b\n" - + "\024source_flagging_uris\030\t \003(\0132D.google.cloud.aiplatfo" - + "rm.v1beta1.GroundingMetadata.SourceFlaggingUri\032@\n" + + "\024source_flagging_uris\030\t \003(\0132D.google" + + ".cloud.aiplatform.v1beta1.GroundingMetadata.SourceFlaggingUri\032@\n" + "\021SourceFlaggingUri\022\021\n" + "\tsource_id\030\001 \001(\t\022\030\n" + "\020flag_content_uri\030\002 \001(\tB\025\n" @@ -555,12 +581,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005VIDEO\020\003\022\t\n" + "\005AUDIO\020\004\022\014\n" + "\010DOCUMENT\020\005B\310\002\n" - + "#com.google.cloud.aiplatform.v1beta1B\014ContentProtoP\001ZCcloud.google.com/go" - + "/aiplatform/apiv1beta1/aiplatformpb;aipl" - + "atformpb\252\002\037Google.Cloud.AIPlatform.V1Bet" - + "a1\312\002\037Google\\Cloud\\AIPlatform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1\352Ab\n" - + "\"modelarmor.googleapis.com/Template\022 + * Optional. Resources for a full fine tuned model. + * + * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the fullFineTunedResources field is set. + */ + @java.lang.Override + public boolean hasFullFineTunedResources() { + return predictionResourcesCase_ == 36; + } + + /** + * + * + *
+   * Optional. Resources for a full fine tuned model.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The fullFineTunedResources. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources getFullFineTunedResources() { + if (predictionResourcesCase_ == 36) { + return (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_; + } + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } + + /** + * + * + *
+   * Optional. Resources for a full fine tuned model.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder + getFullFineTunedResourcesOrBuilder() { + if (predictionResourcesCase_ == 36) { + return (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_; + } + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } + public static final int ID_FIELD_NUMBER = 1; @SuppressWarnings("serial") @@ -2549,6 +2613,10 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000040) != 0)) { output.writeMessage(30, getSpeculativeDecodingSpec()); } + if (predictionResourcesCase_ == 36) { + output.writeMessage( + 36, (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_); + } getUnknownFields().writeTo(output); } @@ -2635,6 +2703,12 @@ public int getSerializedSize() { com.google.protobuf.CodedOutputStream.computeMessageSize( 30, getSpeculativeDecodingSpec()); } + if (predictionResourcesCase_ == 36) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 36, + (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -2701,6 +2775,9 @@ public boolean equals(final java.lang.Object obj) { case 17: if (!getSharedResources().equals(other.getSharedResources())) return false; break; + case 36: + if (!getFullFineTunedResources().equals(other.getFullFineTunedResources())) return false; + break; case 0: default: } @@ -2780,6 +2857,10 @@ public int hashCode() { hash = (37 * hash) + SHARED_RESOURCES_FIELD_NUMBER; hash = (53 * hash) + getSharedResources().hashCode(); break; + case 36: + hash = (37 * hash) + FULL_FINE_TUNED_RESOURCES_FIELD_NUMBER; + hash = (53 * hash) + getFullFineTunedResources().hashCode(); + break; case 0: default: } @@ -2966,6 +3047,9 @@ public Builder clear() { if (automaticResourcesBuilder_ != null) { automaticResourcesBuilder_.clear(); } + if (fullFineTunedResourcesBuilder_ != null) { + fullFineTunedResourcesBuilder_.clear(); + } id_ = ""; model_ = ""; modelVersionId_ = ""; @@ -3051,72 +3135,72 @@ public com.google.cloud.aiplatform.v1beta1.DeployedModel buildPartial() { private void buildPartial0(com.google.cloud.aiplatform.v1beta1.DeployedModel result) { int from_bitField0_ = bitField0_; - if (((from_bitField0_ & 0x00000008) != 0)) { + if (((from_bitField0_ & 0x00000010) != 0)) { result.id_ = id_; } - if (((from_bitField0_ & 0x00000010) != 0)) { + if (((from_bitField0_ & 0x00000020) != 0)) { result.model_ = model_; } - if (((from_bitField0_ & 0x00000020) != 0)) { + if (((from_bitField0_ & 0x00000040) != 0)) { result.modelVersionId_ = modelVersionId_; } - if (((from_bitField0_ & 0x00000040) != 0)) { + if (((from_bitField0_ & 0x00000080) != 0)) { result.displayName_ = displayName_; } int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000080) != 0)) { + if (((from_bitField0_ & 0x00000100) != 0)) { result.createTime_ = createTimeBuilder_ == null ? createTime_ : createTimeBuilder_.build(); to_bitField0_ |= 0x00000001; } - if (((from_bitField0_ & 0x00000100) != 0)) { + if (((from_bitField0_ & 0x00000200) != 0)) { result.explanationSpec_ = explanationSpecBuilder_ == null ? explanationSpec_ : explanationSpecBuilder_.build(); to_bitField0_ |= 0x00000002; } - if (((from_bitField0_ & 0x00000200) != 0)) { + if (((from_bitField0_ & 0x00000400) != 0)) { result.disableExplanations_ = disableExplanations_; } - if (((from_bitField0_ & 0x00000400) != 0)) { + if (((from_bitField0_ & 0x00000800) != 0)) { result.serviceAccount_ = serviceAccount_; } - if (((from_bitField0_ & 0x00000800) != 0)) { + if (((from_bitField0_ & 0x00001000) != 0)) { result.enableContainerLogging_ = enableContainerLogging_; } - if (((from_bitField0_ & 0x00001000) != 0)) { + if (((from_bitField0_ & 0x00002000) != 0)) { result.disableContainerLogging_ = disableContainerLogging_; } - if (((from_bitField0_ & 0x00002000) != 0)) { + if (((from_bitField0_ & 0x00004000) != 0)) { result.enableAccessLogging_ = enableAccessLogging_; } - if (((from_bitField0_ & 0x00004000) != 0)) { + if (((from_bitField0_ & 0x00008000) != 0)) { result.privateEndpoints_ = privateEndpointsBuilder_ == null ? privateEndpoints_ : privateEndpointsBuilder_.build(); to_bitField0_ |= 0x00000004; } - if (((from_bitField0_ & 0x00008000) != 0)) { + if (((from_bitField0_ & 0x00010000) != 0)) { result.fasterDeploymentConfig_ = fasterDeploymentConfigBuilder_ == null ? fasterDeploymentConfig_ : fasterDeploymentConfigBuilder_.build(); to_bitField0_ |= 0x00000008; } - if (((from_bitField0_ & 0x00010000) != 0)) { + if (((from_bitField0_ & 0x00020000) != 0)) { result.rolloutOptions_ = rolloutOptionsBuilder_ == null ? rolloutOptions_ : rolloutOptionsBuilder_.build(); to_bitField0_ |= 0x00000010; } - if (((from_bitField0_ & 0x00020000) != 0)) { + if (((from_bitField0_ & 0x00040000) != 0)) { result.status_ = statusBuilder_ == null ? status_ : statusBuilder_.build(); to_bitField0_ |= 0x00000020; } - if (((from_bitField0_ & 0x00040000) != 0)) { + if (((from_bitField0_ & 0x00080000) != 0)) { result.systemLabels_ = internalGetSystemLabels(); result.systemLabels_.makeImmutable(); } - if (((from_bitField0_ & 0x00080000) != 0)) { + if (((from_bitField0_ & 0x00100000) != 0)) { result.checkpointId_ = checkpointId_; } - if (((from_bitField0_ & 0x00100000) != 0)) { + if (((from_bitField0_ & 0x00200000) != 0)) { result.speculativeDecodingSpec_ = speculativeDecodingSpecBuilder_ == null ? speculativeDecodingSpec_ @@ -3135,6 +3219,9 @@ private void buildPartialOneofs(com.google.cloud.aiplatform.v1beta1.DeployedMode if (predictionResourcesCase_ == 8 && automaticResourcesBuilder_ != null) { result.predictionResources_ = automaticResourcesBuilder_.build(); } + if (predictionResourcesCase_ == 36 && fullFineTunedResourcesBuilder_ != null) { + result.predictionResources_ = fullFineTunedResourcesBuilder_.build(); + } } @java.lang.Override @@ -3185,22 +3272,22 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.DeployedModel other return this; if (!other.getId().isEmpty()) { id_ = other.id_; - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; onChanged(); } if (!other.getModel().isEmpty()) { model_ = other.model_; - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); } if (!other.getModelVersionId().isEmpty()) { modelVersionId_ = other.modelVersionId_; - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); } if (!other.getDisplayName().isEmpty()) { displayName_ = other.displayName_; - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); } if (other.hasCreateTime()) { @@ -3214,7 +3301,7 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.DeployedModel other } if (!other.getServiceAccount().isEmpty()) { serviceAccount_ = other.serviceAccount_; - bitField0_ |= 0x00000400; + bitField0_ |= 0x00000800; onChanged(); } if (other.getEnableContainerLogging() != false) { @@ -3239,10 +3326,10 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.DeployedModel other mergeStatus(other.getStatus()); } internalGetMutableSystemLabels().mergeFrom(other.internalGetSystemLabels()); - bitField0_ |= 0x00040000; + bitField0_ |= 0x00080000; if (!other.getCheckpointId().isEmpty()) { checkpointId_ = other.checkpointId_; - bitField0_ |= 0x00080000; + bitField0_ |= 0x00100000; onChanged(); } if (other.hasSpeculativeDecodingSpec()) { @@ -3266,6 +3353,11 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.DeployedModel other onChanged(); break; } + case FULL_FINE_TUNED_RESOURCES: + { + mergeFullFineTunedResources(other.getFullFineTunedResources()); + break; + } case PREDICTIONRESOURCES_NOT_SET: { break; @@ -3300,25 +3392,25 @@ public Builder mergeFrom( case 10: { id_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; break; } // case 10 case 18: { model_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; break; } // case 18 case 26: { displayName_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; break; } // case 26 case 50: { input.readMessage(getCreateTimeFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000080; + bitField0_ |= 0x00000100; break; } // case 50 case 58: @@ -3338,38 +3430,38 @@ public Builder mergeFrom( case 74: { input.readMessage(getExplanationSpecFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000100; + bitField0_ |= 0x00000200; break; } // case 74 case 90: { serviceAccount_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000400; + bitField0_ |= 0x00000800; break; } // case 90 case 96: { enableContainerLogging_ = input.readBool(); - bitField0_ |= 0x00000800; + bitField0_ |= 0x00001000; break; } // case 96 case 104: { enableAccessLogging_ = input.readBool(); - bitField0_ |= 0x00002000; + bitField0_ |= 0x00004000; break; } // case 104 case 114: { input.readMessage( getPrivateEndpointsFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00004000; + bitField0_ |= 0x00008000; break; } // case 114 case 120: { disableContainerLogging_ = input.readBool(); - bitField0_ |= 0x00001000; + bitField0_ |= 0x00002000; break; } // case 120 case 138: @@ -3382,32 +3474,32 @@ public Builder mergeFrom( case 146: { modelVersionId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; break; } // case 146 case 152: { disableExplanations_ = input.readBool(); - bitField0_ |= 0x00000200; + bitField0_ |= 0x00000400; break; } // case 152 case 186: { input.readMessage( getFasterDeploymentConfigFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; break; } // case 186 case 202: { input.readMessage(getRolloutOptionsFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; break; } // case 202 case 210: { input.readMessage(getStatusFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00020000; + bitField0_ |= 0x00040000; break; } // case 210 case 226: @@ -3419,22 +3511,29 @@ public Builder mergeFrom( internalGetMutableSystemLabels() .getMutableMap() .put(systemLabels__.getKey(), systemLabels__.getValue()); - bitField0_ |= 0x00040000; + bitField0_ |= 0x00080000; break; } // case 226 case 234: { checkpointId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00080000; + bitField0_ |= 0x00100000; break; } // case 234 case 242: { input.readMessage( getSpeculativeDecodingSpecFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00100000; + bitField0_ |= 0x00200000; break; } // case 242 + case 290: + { + input.readMessage( + getFullFineTunedResourcesFieldBuilder().getBuilder(), extensionRegistry); + predictionResourcesCase_ = 36; + break; + } // case 290 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -4085,6 +4184,250 @@ public Builder setSharedResourcesBytes(com.google.protobuf.ByteString value) { return this; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder> + fullFineTunedResourcesBuilder_; + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the fullFineTunedResources field is set. + */ + @java.lang.Override + public boolean hasFullFineTunedResources() { + return predictionResourcesCase_ == 36; + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The fullFineTunedResources. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources getFullFineTunedResources() { + if (fullFineTunedResourcesBuilder_ == null) { + if (predictionResourcesCase_ == 36) { + return (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_; + } + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } else { + if (predictionResourcesCase_ == 36) { + return fullFineTunedResourcesBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setFullFineTunedResources( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources value) { + if (fullFineTunedResourcesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + predictionResources_ = value; + onChanged(); + } else { + fullFineTunedResourcesBuilder_.setMessage(value); + } + predictionResourcesCase_ = 36; + return this; + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setFullFineTunedResources( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder builderForValue) { + if (fullFineTunedResourcesBuilder_ == null) { + predictionResources_ = builderForValue.build(); + onChanged(); + } else { + fullFineTunedResourcesBuilder_.setMessage(builderForValue.build()); + } + predictionResourcesCase_ = 36; + return this; + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder mergeFullFineTunedResources( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources value) { + if (fullFineTunedResourcesBuilder_ == null) { + if (predictionResourcesCase_ == 36 + && predictionResources_ + != com.google.cloud.aiplatform.v1beta1.FullFineTunedResources + .getDefaultInstance()) { + predictionResources_ = + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.newBuilder( + (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) + predictionResources_) + .mergeFrom(value) + .buildPartial(); + } else { + predictionResources_ = value; + } + onChanged(); + } else { + if (predictionResourcesCase_ == 36) { + fullFineTunedResourcesBuilder_.mergeFrom(value); + } else { + fullFineTunedResourcesBuilder_.setMessage(value); + } + } + predictionResourcesCase_ = 36; + return this; + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearFullFineTunedResources() { + if (fullFineTunedResourcesBuilder_ == null) { + if (predictionResourcesCase_ == 36) { + predictionResourcesCase_ = 0; + predictionResources_ = null; + onChanged(); + } + } else { + if (predictionResourcesCase_ == 36) { + predictionResourcesCase_ = 0; + predictionResources_ = null; + } + fullFineTunedResourcesBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder + getFullFineTunedResourcesBuilder() { + return getFullFineTunedResourcesFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder + getFullFineTunedResourcesOrBuilder() { + if ((predictionResourcesCase_ == 36) && (fullFineTunedResourcesBuilder_ != null)) { + return fullFineTunedResourcesBuilder_.getMessageOrBuilder(); + } else { + if (predictionResourcesCase_ == 36) { + return (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_; + } + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } + } + + /** + * + * + *
+     * Optional. Resources for a full fine tuned model.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder> + getFullFineTunedResourcesFieldBuilder() { + if (fullFineTunedResourcesBuilder_ == null) { + if (!(predictionResourcesCase_ == 36)) { + predictionResources_ = + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } + fullFineTunedResourcesBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder>( + (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) predictionResources_, + getParentForChildren(), + isClean()); + predictionResources_ = null; + } + predictionResourcesCase_ = 36; + onChanged(); + return fullFineTunedResourcesBuilder_; + } + private java.lang.Object id_ = ""; /** @@ -4159,7 +4502,7 @@ public Builder setId(java.lang.String value) { throw new NullPointerException(); } id_ = value; - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; onChanged(); return this; } @@ -4180,7 +4523,7 @@ public Builder setId(java.lang.String value) { */ public Builder clearId() { id_ = getDefaultInstance().getId(); - bitField0_ = (bitField0_ & ~0x00000008); + bitField0_ = (bitField0_ & ~0x00000010); onChanged(); return this; } @@ -4206,7 +4549,7 @@ public Builder setIdBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); id_ = value; - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; onChanged(); return this; } @@ -4300,7 +4643,7 @@ public Builder setModel(java.lang.String value) { throw new NullPointerException(); } model_ = value; - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); return this; } @@ -4326,7 +4669,7 @@ public Builder setModel(java.lang.String value) { */ public Builder clearModel() { model_ = getDefaultInstance().getModel(); - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); onChanged(); return this; } @@ -4357,7 +4700,7 @@ public Builder setModelBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); model_ = value; - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; onChanged(); return this; } @@ -4427,7 +4770,7 @@ public Builder setModelVersionId(java.lang.String value) { throw new NullPointerException(); } modelVersionId_ = value; - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -4445,7 +4788,7 @@ public Builder setModelVersionId(java.lang.String value) { */ public Builder clearModelVersionId() { modelVersionId_ = getDefaultInstance().getModelVersionId(); - bitField0_ = (bitField0_ & ~0x00000020); + bitField0_ = (bitField0_ & ~0x00000040); onChanged(); return this; } @@ -4468,7 +4811,7 @@ public Builder setModelVersionIdBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); modelVersionId_ = value; - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -4541,7 +4884,7 @@ public Builder setDisplayName(java.lang.String value) { throw new NullPointerException(); } displayName_ = value; - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); return this; } @@ -4560,7 +4903,7 @@ public Builder setDisplayName(java.lang.String value) { */ public Builder clearDisplayName() { displayName_ = getDefaultInstance().getDisplayName(); - bitField0_ = (bitField0_ & ~0x00000040); + bitField0_ = (bitField0_ & ~0x00000080); onChanged(); return this; } @@ -4584,7 +4927,7 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); displayName_ = value; - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); return this; } @@ -4610,7 +4953,7 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * @return Whether the createTime field is set. */ public boolean hasCreateTime() { - return ((bitField0_ & 0x00000080) != 0); + return ((bitField0_ & 0x00000100) != 0); } /** @@ -4656,7 +4999,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp value) { } else { createTimeBuilder_.setMessage(value); } - bitField0_ |= 0x00000080; + bitField0_ |= 0x00000100; onChanged(); return this; } @@ -4678,7 +5021,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForVal } else { createTimeBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000080; + bitField0_ |= 0x00000100; onChanged(); return this; } @@ -4696,7 +5039,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForVal */ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) { if (createTimeBuilder_ == null) { - if (((bitField0_ & 0x00000080) != 0) + if (((bitField0_ & 0x00000100) != 0) && createTime_ != null && createTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) { getCreateTimeBuilder().mergeFrom(value); @@ -4707,7 +5050,7 @@ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) { createTimeBuilder_.mergeFrom(value); } if (createTime_ != null) { - bitField0_ |= 0x00000080; + bitField0_ |= 0x00000100; onChanged(); } return this; @@ -4725,7 +5068,7 @@ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) { * */ public Builder clearCreateTime() { - bitField0_ = (bitField0_ & ~0x00000080); + bitField0_ = (bitField0_ & ~0x00000100); createTime_ = null; if (createTimeBuilder_ != null) { createTimeBuilder_.dispose(); @@ -4747,7 +5090,7 @@ public Builder clearCreateTime() { * */ public com.google.protobuf.Timestamp.Builder getCreateTimeBuilder() { - bitField0_ |= 0x00000080; + bitField0_ |= 0x00000100; onChanged(); return getCreateTimeFieldBuilder().getBuilder(); } @@ -4836,7 +5179,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() { * @return Whether the explanationSpec field is set. */ public boolean hasExplanationSpec() { - return ((bitField0_ & 0x00000100) != 0); + return ((bitField0_ & 0x00000200) != 0); } /** @@ -4910,7 +5253,7 @@ public Builder setExplanationSpec(com.google.cloud.aiplatform.v1beta1.Explanatio } else { explanationSpecBuilder_.setMessage(value); } - bitField0_ |= 0x00000100; + bitField0_ |= 0x00000200; onChanged(); return this; } @@ -4947,7 +5290,7 @@ public Builder setExplanationSpec( } else { explanationSpecBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000100; + bitField0_ |= 0x00000200; onChanged(); return this; } @@ -4979,7 +5322,7 @@ public Builder setExplanationSpec( */ public Builder mergeExplanationSpec(com.google.cloud.aiplatform.v1beta1.ExplanationSpec value) { if (explanationSpecBuilder_ == null) { - if (((bitField0_ & 0x00000100) != 0) + if (((bitField0_ & 0x00000200) != 0) && explanationSpec_ != null && explanationSpec_ != com.google.cloud.aiplatform.v1beta1.ExplanationSpec.getDefaultInstance()) { @@ -4991,7 +5334,7 @@ public Builder mergeExplanationSpec(com.google.cloud.aiplatform.v1beta1.Explanat explanationSpecBuilder_.mergeFrom(value); } if (explanationSpec_ != null) { - bitField0_ |= 0x00000100; + bitField0_ |= 0x00000200; onChanged(); } return this; @@ -5023,7 +5366,7 @@ public Builder mergeExplanationSpec(com.google.cloud.aiplatform.v1beta1.Explanat * .google.cloud.aiplatform.v1beta1.ExplanationSpec explanation_spec = 9; */ public Builder clearExplanationSpec() { - bitField0_ = (bitField0_ & ~0x00000100); + bitField0_ = (bitField0_ & ~0x00000200); explanationSpec_ = null; if (explanationSpecBuilder_ != null) { explanationSpecBuilder_.dispose(); @@ -5059,7 +5402,7 @@ public Builder clearExplanationSpec() { * .google.cloud.aiplatform.v1beta1.ExplanationSpec explanation_spec = 9; */ public com.google.cloud.aiplatform.v1beta1.ExplanationSpec.Builder getExplanationSpecBuilder() { - bitField0_ |= 0x00000100; + bitField0_ |= 0x00000200; onChanged(); return getExplanationSpecFieldBuilder().getBuilder(); } @@ -5183,7 +5526,7 @@ public boolean getDisableExplanations() { public Builder setDisableExplanations(boolean value) { disableExplanations_ = value; - bitField0_ |= 0x00000200; + bitField0_ |= 0x00000400; onChanged(); return this; } @@ -5204,7 +5547,7 @@ public Builder setDisableExplanations(boolean value) { * @return This builder for chaining. */ public Builder clearDisableExplanations() { - bitField0_ = (bitField0_ & ~0x00000200); + bitField0_ = (bitField0_ & ~0x00000400); disableExplanations_ = false; onChanged(); return this; @@ -5293,7 +5636,7 @@ public Builder setServiceAccount(java.lang.String value) { throw new NullPointerException(); } serviceAccount_ = value; - bitField0_ |= 0x00000400; + bitField0_ |= 0x00000800; onChanged(); return this; } @@ -5317,7 +5660,7 @@ public Builder setServiceAccount(java.lang.String value) { */ public Builder clearServiceAccount() { serviceAccount_ = getDefaultInstance().getServiceAccount(); - bitField0_ = (bitField0_ & ~0x00000400); + bitField0_ = (bitField0_ & ~0x00000800); onChanged(); return this; } @@ -5346,7 +5689,7 @@ public Builder setServiceAccountBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); serviceAccount_ = value; - bitField0_ |= 0x00000400; + bitField0_ |= 0x00000800; onChanged(); return this; } @@ -5390,7 +5733,7 @@ public boolean getEnableContainerLogging() { public Builder setEnableContainerLogging(boolean value) { enableContainerLogging_ = value; - bitField0_ |= 0x00000800; + bitField0_ |= 0x00001000; onChanged(); return this; } @@ -5410,7 +5753,7 @@ public Builder setEnableContainerLogging(boolean value) { * @return This builder for chaining. */ public Builder clearEnableContainerLogging() { - bitField0_ = (bitField0_ & ~0x00000800); + bitField0_ = (bitField0_ & ~0x00001000); enableContainerLogging_ = false; onChanged(); return this; @@ -5461,7 +5804,7 @@ public boolean getDisableContainerLogging() { public Builder setDisableContainerLogging(boolean value) { disableContainerLogging_ = value; - bitField0_ |= 0x00001000; + bitField0_ |= 0x00002000; onChanged(); return this; } @@ -5484,7 +5827,7 @@ public Builder setDisableContainerLogging(boolean value) { * @return This builder for chaining. */ public Builder clearDisableContainerLogging() { - bitField0_ = (bitField0_ & ~0x00001000); + bitField0_ = (bitField0_ & ~0x00002000); disableContainerLogging_ = false; onChanged(); return this; @@ -5537,7 +5880,7 @@ public boolean getEnableAccessLogging() { public Builder setEnableAccessLogging(boolean value) { enableAccessLogging_ = value; - bitField0_ |= 0x00002000; + bitField0_ |= 0x00004000; onChanged(); return this; } @@ -5561,7 +5904,7 @@ public Builder setEnableAccessLogging(boolean value) { * @return This builder for chaining. */ public Builder clearEnableAccessLogging() { - bitField0_ = (bitField0_ & ~0x00002000); + bitField0_ = (bitField0_ & ~0x00004000); enableAccessLogging_ = false; onChanged(); return this; @@ -5591,7 +5934,7 @@ public Builder clearEnableAccessLogging() { * @return Whether the privateEndpoints field is set. */ public boolean hasPrivateEndpoints() { - return ((bitField0_ & 0x00004000) != 0); + return ((bitField0_ & 0x00008000) != 0); } /** @@ -5643,7 +5986,7 @@ public Builder setPrivateEndpoints(com.google.cloud.aiplatform.v1beta1.PrivateEn } else { privateEndpointsBuilder_.setMessage(value); } - bitField0_ |= 0x00004000; + bitField0_ |= 0x00008000; onChanged(); return this; } @@ -5669,7 +6012,7 @@ public Builder setPrivateEndpoints( } else { privateEndpointsBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00004000; + bitField0_ |= 0x00008000; onChanged(); return this; } @@ -5691,7 +6034,7 @@ public Builder setPrivateEndpoints( public Builder mergePrivateEndpoints( com.google.cloud.aiplatform.v1beta1.PrivateEndpoints value) { if (privateEndpointsBuilder_ == null) { - if (((bitField0_ & 0x00004000) != 0) + if (((bitField0_ & 0x00008000) != 0) && privateEndpoints_ != null && privateEndpoints_ != com.google.cloud.aiplatform.v1beta1.PrivateEndpoints.getDefaultInstance()) { @@ -5703,7 +6046,7 @@ public Builder mergePrivateEndpoints( privateEndpointsBuilder_.mergeFrom(value); } if (privateEndpoints_ != null) { - bitField0_ |= 0x00004000; + bitField0_ |= 0x00008000; onChanged(); } return this; @@ -5724,7 +6067,7 @@ public Builder mergePrivateEndpoints( * */ public Builder clearPrivateEndpoints() { - bitField0_ = (bitField0_ & ~0x00004000); + bitField0_ = (bitField0_ & ~0x00008000); privateEndpoints_ = null; if (privateEndpointsBuilder_ != null) { privateEndpointsBuilder_.dispose(); @@ -5750,7 +6093,7 @@ public Builder clearPrivateEndpoints() { */ public com.google.cloud.aiplatform.v1beta1.PrivateEndpoints.Builder getPrivateEndpointsBuilder() { - bitField0_ |= 0x00004000; + bitField0_ |= 0x00008000; onChanged(); return getPrivateEndpointsFieldBuilder().getBuilder(); } @@ -5831,7 +6174,7 @@ public Builder clearPrivateEndpoints() { * @return Whether the fasterDeploymentConfig field is set. */ public boolean hasFasterDeploymentConfig() { - return ((bitField0_ & 0x00008000) != 0); + return ((bitField0_ & 0x00010000) != 0); } /** @@ -5876,7 +6219,7 @@ public Builder setFasterDeploymentConfig( } else { fasterDeploymentConfigBuilder_.setMessage(value); } - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); return this; } @@ -5898,7 +6241,7 @@ public Builder setFasterDeploymentConfig( } else { fasterDeploymentConfigBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); return this; } @@ -5916,7 +6259,7 @@ public Builder setFasterDeploymentConfig( public Builder mergeFasterDeploymentConfig( com.google.cloud.aiplatform.v1beta1.FasterDeploymentConfig value) { if (fasterDeploymentConfigBuilder_ == null) { - if (((bitField0_ & 0x00008000) != 0) + if (((bitField0_ & 0x00010000) != 0) && fasterDeploymentConfig_ != null && fasterDeploymentConfig_ != com.google.cloud.aiplatform.v1beta1.FasterDeploymentConfig @@ -5929,7 +6272,7 @@ public Builder mergeFasterDeploymentConfig( fasterDeploymentConfigBuilder_.mergeFrom(value); } if (fasterDeploymentConfig_ != null) { - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); } return this; @@ -5946,7 +6289,7 @@ public Builder mergeFasterDeploymentConfig( * */ public Builder clearFasterDeploymentConfig() { - bitField0_ = (bitField0_ & ~0x00008000); + bitField0_ = (bitField0_ & ~0x00010000); fasterDeploymentConfig_ = null; if (fasterDeploymentConfigBuilder_ != null) { fasterDeploymentConfigBuilder_.dispose(); @@ -5968,7 +6311,7 @@ public Builder clearFasterDeploymentConfig() { */ public com.google.cloud.aiplatform.v1beta1.FasterDeploymentConfig.Builder getFasterDeploymentConfigBuilder() { - bitField0_ |= 0x00008000; + bitField0_ |= 0x00010000; onChanged(); return getFasterDeploymentConfigFieldBuilder().getBuilder(); } @@ -6040,7 +6383,7 @@ public Builder clearFasterDeploymentConfig() { * @return Whether the rolloutOptions field is set. */ public boolean hasRolloutOptions() { - return ((bitField0_ & 0x00010000) != 0); + return ((bitField0_ & 0x00020000) != 0); } /** @@ -6082,7 +6425,7 @@ public Builder setRolloutOptions(com.google.cloud.aiplatform.v1beta1.RolloutOpti } else { rolloutOptionsBuilder_.setMessage(value); } - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); return this; } @@ -6103,7 +6446,7 @@ public Builder setRolloutOptions( } else { rolloutOptionsBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); return this; } @@ -6119,7 +6462,7 @@ public Builder setRolloutOptions( */ public Builder mergeRolloutOptions(com.google.cloud.aiplatform.v1beta1.RolloutOptions value) { if (rolloutOptionsBuilder_ == null) { - if (((bitField0_ & 0x00010000) != 0) + if (((bitField0_ & 0x00020000) != 0) && rolloutOptions_ != null && rolloutOptions_ != com.google.cloud.aiplatform.v1beta1.RolloutOptions.getDefaultInstance()) { @@ -6131,7 +6474,7 @@ public Builder mergeRolloutOptions(com.google.cloud.aiplatform.v1beta1.RolloutOp rolloutOptionsBuilder_.mergeFrom(value); } if (rolloutOptions_ != null) { - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); } return this; @@ -6147,7 +6490,7 @@ public Builder mergeRolloutOptions(com.google.cloud.aiplatform.v1beta1.RolloutOp * .google.cloud.aiplatform.v1beta1.RolloutOptions rollout_options = 25; */ public Builder clearRolloutOptions() { - bitField0_ = (bitField0_ & ~0x00010000); + bitField0_ = (bitField0_ & ~0x00020000); rolloutOptions_ = null; if (rolloutOptionsBuilder_ != null) { rolloutOptionsBuilder_.dispose(); @@ -6167,7 +6510,7 @@ public Builder clearRolloutOptions() { * .google.cloud.aiplatform.v1beta1.RolloutOptions rollout_options = 25; */ public com.google.cloud.aiplatform.v1beta1.RolloutOptions.Builder getRolloutOptionsBuilder() { - bitField0_ |= 0x00010000; + bitField0_ |= 0x00020000; onChanged(); return getRolloutOptionsFieldBuilder().getBuilder(); } @@ -6239,7 +6582,7 @@ public com.google.cloud.aiplatform.v1beta1.RolloutOptions.Builder getRolloutOpti * @return Whether the status field is set. */ public boolean hasStatus() { - return ((bitField0_ & 0x00020000) != 0); + return ((bitField0_ & 0x00040000) != 0); } /** @@ -6285,7 +6628,7 @@ public Builder setStatus(com.google.cloud.aiplatform.v1beta1.DeployedModel.Statu } else { statusBuilder_.setMessage(value); } - bitField0_ |= 0x00020000; + bitField0_ |= 0x00040000; onChanged(); return this; } @@ -6308,7 +6651,7 @@ public Builder setStatus( } else { statusBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00020000; + bitField0_ |= 0x00040000; onChanged(); return this; } @@ -6326,7 +6669,7 @@ public Builder setStatus( */ public Builder mergeStatus(com.google.cloud.aiplatform.v1beta1.DeployedModel.Status value) { if (statusBuilder_ == null) { - if (((bitField0_ & 0x00020000) != 0) + if (((bitField0_ & 0x00040000) != 0) && status_ != null && status_ != com.google.cloud.aiplatform.v1beta1.DeployedModel.Status.getDefaultInstance()) { @@ -6338,7 +6681,7 @@ public Builder mergeStatus(com.google.cloud.aiplatform.v1beta1.DeployedModel.Sta statusBuilder_.mergeFrom(value); } if (status_ != null) { - bitField0_ |= 0x00020000; + bitField0_ |= 0x00040000; onChanged(); } return this; @@ -6356,7 +6699,7 @@ public Builder mergeStatus(com.google.cloud.aiplatform.v1beta1.DeployedModel.Sta * */ public Builder clearStatus() { - bitField0_ = (bitField0_ & ~0x00020000); + bitField0_ = (bitField0_ & ~0x00040000); status_ = null; if (statusBuilder_ != null) { statusBuilder_.dispose(); @@ -6378,7 +6721,7 @@ public Builder clearStatus() { * */ public com.google.cloud.aiplatform.v1beta1.DeployedModel.Status.Builder getStatusBuilder() { - bitField0_ |= 0x00020000; + bitField0_ |= 0x00040000; onChanged(); return getStatusFieldBuilder().getBuilder(); } @@ -6452,7 +6795,7 @@ public com.google.cloud.aiplatform.v1beta1.DeployedModel.StatusOrBuilder getStat if (!systemLabels_.isMutable()) { systemLabels_ = systemLabels_.copy(); } - bitField0_ |= 0x00040000; + bitField0_ |= 0x00080000; onChanged(); return systemLabels_; } @@ -6546,7 +6889,7 @@ public java.lang.String getSystemLabelsOrThrow(java.lang.String key) { } public Builder clearSystemLabels() { - bitField0_ = (bitField0_ & ~0x00040000); + bitField0_ = (bitField0_ & ~0x00080000); internalGetMutableSystemLabels().getMutableMap().clear(); return this; } @@ -6572,7 +6915,7 @@ public Builder removeSystemLabels(java.lang.String key) { /** Use alternate mutation accessors instead. */ @java.lang.Deprecated public java.util.Map getMutableSystemLabels() { - bitField0_ |= 0x00040000; + bitField0_ |= 0x00080000; return internalGetMutableSystemLabels().getMutableMap(); } @@ -6594,7 +6937,7 @@ public Builder putSystemLabels(java.lang.String key, java.lang.String value) { throw new NullPointerException("map value"); } internalGetMutableSystemLabels().getMutableMap().put(key, value); - bitField0_ |= 0x00040000; + bitField0_ |= 0x00080000; return this; } @@ -6610,7 +6953,7 @@ public Builder putSystemLabels(java.lang.String key, java.lang.String value) { */ public Builder putAllSystemLabels(java.util.Map values) { internalGetMutableSystemLabels().getMutableMap().putAll(values); - bitField0_ |= 0x00040000; + bitField0_ |= 0x00080000; return this; } @@ -6679,7 +7022,7 @@ public Builder setCheckpointId(java.lang.String value) { throw new NullPointerException(); } checkpointId_ = value; - bitField0_ |= 0x00080000; + bitField0_ |= 0x00100000; onChanged(); return this; } @@ -6697,7 +7040,7 @@ public Builder setCheckpointId(java.lang.String value) { */ public Builder clearCheckpointId() { checkpointId_ = getDefaultInstance().getCheckpointId(); - bitField0_ = (bitField0_ & ~0x00080000); + bitField0_ = (bitField0_ & ~0x00100000); onChanged(); return this; } @@ -6720,7 +7063,7 @@ public Builder setCheckpointIdBytes(com.google.protobuf.ByteString value) { } checkByteStringIsUtf8(value); checkpointId_ = value; - bitField0_ |= 0x00080000; + bitField0_ |= 0x00100000; onChanged(); return this; } @@ -6746,7 +7089,7 @@ public Builder setCheckpointIdBytes(com.google.protobuf.ByteString value) { * @return Whether the speculativeDecodingSpec field is set. */ public boolean hasSpeculativeDecodingSpec() { - return ((bitField0_ & 0x00100000) != 0); + return ((bitField0_ & 0x00200000) != 0); } /** @@ -6794,7 +7137,7 @@ public Builder setSpeculativeDecodingSpec( } else { speculativeDecodingSpecBuilder_.setMessage(value); } - bitField0_ |= 0x00100000; + bitField0_ |= 0x00200000; onChanged(); return this; } @@ -6817,7 +7160,7 @@ public Builder setSpeculativeDecodingSpec( } else { speculativeDecodingSpecBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00100000; + bitField0_ |= 0x00200000; onChanged(); return this; } @@ -6836,7 +7179,7 @@ public Builder setSpeculativeDecodingSpec( public Builder mergeSpeculativeDecodingSpec( com.google.cloud.aiplatform.v1beta1.SpeculativeDecodingSpec value) { if (speculativeDecodingSpecBuilder_ == null) { - if (((bitField0_ & 0x00100000) != 0) + if (((bitField0_ & 0x00200000) != 0) && speculativeDecodingSpec_ != null && speculativeDecodingSpec_ != com.google.cloud.aiplatform.v1beta1.SpeculativeDecodingSpec @@ -6849,7 +7192,7 @@ public Builder mergeSpeculativeDecodingSpec( speculativeDecodingSpecBuilder_.mergeFrom(value); } if (speculativeDecodingSpec_ != null) { - bitField0_ |= 0x00100000; + bitField0_ |= 0x00200000; onChanged(); } return this; @@ -6867,7 +7210,7 @@ public Builder mergeSpeculativeDecodingSpec( * */ public Builder clearSpeculativeDecodingSpec() { - bitField0_ = (bitField0_ & ~0x00100000); + bitField0_ = (bitField0_ & ~0x00200000); speculativeDecodingSpec_ = null; if (speculativeDecodingSpecBuilder_ != null) { speculativeDecodingSpecBuilder_.dispose(); @@ -6890,7 +7233,7 @@ public Builder clearSpeculativeDecodingSpec() { */ public com.google.cloud.aiplatform.v1beta1.SpeculativeDecodingSpec.Builder getSpeculativeDecodingSpecBuilder() { - bitField0_ |= 0x00100000; + bitField0_ |= 0x00200000; onChanged(); return getSpeculativeDecodingSpecFieldBuilder().getBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelNameProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelNameProto.java index 765f6fa93d43..f9b612f5af0c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelNameProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelNameProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelOrBuilder.java index 22dbfe99a0ff..264a250b5201 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -149,6 +149,50 @@ public interface DeployedModelOrBuilder */ com.google.protobuf.ByteString getSharedResourcesBytes(); + /** + * + * + *
+   * Optional. Resources for a full fine tuned model.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the fullFineTunedResources field is set. + */ + boolean hasFullFineTunedResources(); + + /** + * + * + *
+   * Optional. Resources for a full fine tuned model.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The fullFineTunedResources. + */ + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources getFullFineTunedResources(); + + /** + * + * + *
+   * Optional. Resources for a full fine tuned model.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources full_fine_tuned_resources = 36 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder + getFullFineTunedResourcesOrBuilder(); + /** * * diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRef.java index 6d8c3b25fb61..4d98d4c635ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRefOrBuilder.java index 159f61068643..e55a5040063c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeployedModelRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePool.java index 55fcf74dd103..a3aff9f54e1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolName.java index c74d56b33c1b..8a0023884cdc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolOrBuilder.java index 462408edaf6c..6808fb2df490 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolProto.java index 3663dc37a1ef..195beaabd4ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceProto.java index 1b41a76b28e1..dae6cab6f82b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentResourcePoolServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStage.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStage.java index c26f121ffb3b..6c9da2d955c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStage.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStageProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStageProto.java index 53f7e78e90e6..85b032a1944d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStageProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DeploymentStageProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSetting.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSetting.java index 10e9fa807a94..6411acaae16b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSetting.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSetting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSettingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSettingOrBuilder.java index ba311cb3e0b3..1e3003739ae8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSettingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DestinationFeatureSettingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequest.java index a0237166a64c..ab5e4e2cc61e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequestOrBuilder.java index a9818f976926..db506d968eb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponse.java index 26c24583c43c..db06629620b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponseOrBuilder.java index bf3b9e143ce1..35e0a884b7dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequest.java index 6fee7a206f26..20c055088acc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequestOrBuilder.java index 0698cc3d913f..da1cc48ad097 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponse.java index 29d0eb7448f0..e32608dbe30e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponseOrBuilder.java index 2b863c3d2591..8d1d18a3366d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectRawPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSource.java index 8f160385d706..76097fe675e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSourceOrBuilder.java index 90f7b00daa4b..be330e608ef5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DirectUploadSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpec.java index 73c5fe9ef845..72302b7606ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpecOrBuilder.java index 27e8e8085d71..12627a014097 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DiskSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStats.java index 547f3b38a498..bae4534ad6ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStatsOrBuilder.java index c7e42ee25204..02e8bdf6edb5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationDataStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParameters.java index bc96c3f7d9a9..8e8431ec63bf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParametersOrBuilder.java index c2f922d553eb..a9ef9b37ebe0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationHyperParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpec.java index cbc618b0e013..310239b16d6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpecOrBuilder.java index 9f3b0fca44fc..54fc02db12de 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DistillationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfig.java index 70b0506d7808..3e419f281a52 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfigOrBuilder.java index 0f6be664fba5..6d58626922c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DnsPeeringConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArray.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArray.java index fcd090d47fe9..19271aa3fe54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArray.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArrayOrBuilder.java index f55a2be1d9c7..08ba6fa9d045 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DoubleArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfig.java index 0d6acd1e9821..c6f580c03b20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfigOrBuilder.java index 3e05006f6f0c..95baf9390f81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/DynamicRetrievalConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequest.java index 1bdbcd94cc49..ad6253cb9ddd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequestOrBuilder.java index 0aa0af867eb4..e1db12576587 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponse.java index d85137aaaf2c..2749deee6da5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponseOrBuilder.java index 7844350ec3a8..965683238cac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EmbedContentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpec.java index 76efca8ef40f..d920712661cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecOrBuilder.java index c9b11f4c95fb..1153327b19d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecProto.java index ce34f5b3834b..e1453d7229ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EncryptionSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Endpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Endpoint.java index 5ce672ebf7d4..d45e1333e052 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Endpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Endpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointName.java index c916a0ad1a4e..aa2f429a3ae9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointOrBuilder.java index bf9f1007ee2f..f0f5ad7c4cec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointProto.java index f0f2d4fd6ac4..6f95ae7672fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/EndpointProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -155,41 +155,43 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005value\030\002 \001(\t:\0028\001:\265\001\352A\261\001\n" + "\"aiplatform.googleapis.com/Endpoint\022 + * Optional. The zone where the underlying Bigtable cluster for the primary + * Bigtable instance will be provisioned. Only the zone must be provided. + * For example, only "us-central1-a" should be provided. + * + * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The zone. + */ + java.lang.String getZone(); + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for zone. + */ + com.google.protobuf.ByteString getZoneBytes(); } /** Protobuf type {@code google.cloud.aiplatform.v1beta1.FeatureOnlineStore.Bigtable} */ @@ -372,7 +402,9 @@ private Bigtable(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private Bigtable() {} + private Bigtable() { + zone_ = ""; + } @java.lang.Override @SuppressWarnings({"unused"}) @@ -2488,6 +2520,63 @@ public boolean hasBigtableMetadata() { : bigtableMetadata_; } + public static final int ZONE_FIELD_NUMBER = 5; + + @SuppressWarnings("serial") + private volatile java.lang.Object zone_ = ""; + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The zone. + */ + @java.lang.Override + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } + } + + /** + * + * + *
+     * Optional. The zone where the underlying Bigtable cluster for the primary
+     * Bigtable instance will be provisioned. Only the zone must be provided.
+     * For example, only "us-central1-a" should be provided.
+     * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for zone. + */ + @java.lang.Override + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -2511,6 +2600,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(4, getBigtableMetadata()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(zone_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, zone_); + } getUnknownFields().writeTo(output); } @@ -2530,6 +2622,9 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getBigtableMetadata()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(zone_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, zone_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -2555,6 +2650,7 @@ public boolean equals(final java.lang.Object obj) { if (hasBigtableMetadata()) { if (!getBigtableMetadata().equals(other.getBigtableMetadata())) return false; } + if (!getZone().equals(other.getZone())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -2577,6 +2673,8 @@ public int hashCode() { hash = (37 * hash) + BIGTABLE_METADATA_FIELD_NUMBER; hash = (53 * hash) + getBigtableMetadata().hashCode(); } + hash = (37 * hash) + ZONE_FIELD_NUMBER; + hash = (53 * hash) + getZone().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -2735,6 +2833,7 @@ public Builder clear() { bigtableMetadataBuilder_.dispose(); bigtableMetadataBuilder_ = null; } + zone_ = ""; return this; } @@ -2789,6 +2888,9 @@ private void buildPartial0( : bigtableMetadataBuilder_.build(); to_bitField0_ |= 0x00000002; } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.zone_ = zone_; + } result.bitField0_ |= to_bitField0_; } @@ -2851,6 +2953,11 @@ public Builder mergeFrom( if (other.hasBigtableMetadata()) { mergeBigtableMetadata(other.getBigtableMetadata()); } + if (!other.getZone().isEmpty()) { + zone_ = other.zone_; + bitField0_ |= 0x00000008; + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -2896,6 +3003,12 @@ public Builder mergeFrom( bitField0_ |= 0x00000004; break; } // case 34 + case 42: + { + zone_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 42 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -3431,6 +3544,127 @@ public Builder clearBigtableMetadata() { return bigtableMetadataBuilder_; } + private java.lang.Object zone_ = ""; + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The zone. + */ + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for zone. + */ + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The zone to set. + * @return This builder for chaining. + */ + public Builder setZone(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + zone_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearZone() { + zone_ = getDefaultInstance().getZone(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+       * Optional. The zone where the underlying Bigtable cluster for the primary
+       * Bigtable instance will be provisioned. Only the zone must be provided.
+       * For example, only "us-central1-a" should be provided.
+       * 
+ * + * string zone = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for zone to set. + * @return This builder for chaining. + */ + public Builder setZoneBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + zone_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -6583,7 +6817,7 @@ public boolean hasDedicatedServingEndpoint() { * * * @deprecated google.cloud.aiplatform.v1beta1.FeatureOnlineStore.embedding_management is - * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=196 + * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=201 * @return Whether the embeddingManagement field is set. */ @java.lang.Override @@ -6605,7 +6839,7 @@ public boolean hasEmbeddingManagement() { * * * @deprecated google.cloud.aiplatform.v1beta1.FeatureOnlineStore.embedding_management is - * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=196 + * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=201 * @return The embeddingManagement. */ @java.lang.Override @@ -9300,7 +9534,7 @@ public Builder clearDedicatedServingEndpoint() { * * * @deprecated google.cloud.aiplatform.v1beta1.FeatureOnlineStore.embedding_management is - * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=196 + * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=201 * @return Whether the embeddingManagement field is set. */ @java.lang.Deprecated @@ -9321,7 +9555,7 @@ public boolean hasEmbeddingManagement() { * * * @deprecated google.cloud.aiplatform.v1beta1.FeatureOnlineStore.embedding_management is - * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=196 + * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=201 * @return The embeddingManagement. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceProto.java index ecf23e928fd1..64dbf6d825e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreAdminServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreName.java index 35f6122d3ff6..cb71de5bb2eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreOrBuilder.java index 4708429808b9..196b74f414fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -456,7 +456,7 @@ java.lang.String getLabelsOrDefault( * * * @deprecated google.cloud.aiplatform.v1beta1.FeatureOnlineStore.embedding_management is - * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=196 + * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=201 * @return Whether the embeddingManagement field is set. */ @java.lang.Deprecated @@ -475,7 +475,7 @@ java.lang.String getLabelsOrDefault( * * * @deprecated google.cloud.aiplatform.v1beta1.FeatureOnlineStore.embedding_management is - * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=196 + * deprecated. See google/cloud/aiplatform/v1beta1/feature_online_store.proto;l=201 * @return The embeddingManagement. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreProto.java index dedc6fe90a10..00cb7bfebf9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -69,67 +69,74 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { static { java.lang.String[] descriptorData = { - "\n:google/cloud/aiplatform/v1beta1/featur" - + "e_online_store.proto\022\037google.cloud.aipla" + "\n" + + ":google/cloud/aiplatform/v1beta1/feature_online_store.proto\022\037google.cloud.aipla" + "tform.v1beta1\032\037google/api/field_behavior" + ".proto\032\031google/api/resource.proto\0325googl" - + "e/cloud/aiplatform/v1beta1/encryption_sp" - + "ec.proto\0328google/cloud/aiplatform/v1beta" - + "1/service_networking.proto\032\037google/proto" - + "buf/timestamp.proto\"\304\016\n\022FeatureOnlineSto" - + "re\022P\n\010bigtable\030\010 \001(\0132<.google.cloud.aipl" - + "atform.v1beta1.FeatureOnlineStore.Bigtab" - + "leH\000\022R\n\toptimized\030\014 \001(\0132=.google.cloud.a" - + "iplatform.v1beta1.FeatureOnlineStore.Opt" - + "imizedH\000\022\021\n\004name\030\001 \001(\tB\003\340A\010\0224\n\013create_ti" - + "me\030\003 \001(\0132\032.google.protobuf.TimestampB\003\340A" - + "\003\0224\n\013update_time\030\004 \001(\0132\032.google.protobuf" - + ".TimestampB\003\340A\003\022\021\n\004etag\030\005 \001(\tB\003\340A\001\022T\n\006la" - + "bels\030\006 \003(\0132?.google.cloud.aiplatform.v1b" - + "eta1.FeatureOnlineStore.LabelsEntryB\003\340A\001" - + "\022M\n\005state\030\007 \001(\01629.google.cloud.aiplatfor" - + "m.v1beta1.FeatureOnlineStore.StateB\003\340A\003\022" - + "u\n\032dedicated_serving_endpoint\030\n \001(\0132L.go" - + "ogle.cloud.aiplatform.v1beta1.FeatureOnl" - + "ineStore.DedicatedServingEndpointB\003\340A\001\022l" - + "\n\024embedding_management\030\013 \001(\0132G.google.cl" - + "oud.aiplatform.v1beta1.FeatureOnlineStor" - + "e.EmbeddingManagementB\005\030\001\340A\001\022M\n\017encrypti" - + "on_spec\030\r \001(\0132/.google.cloud.aiplatform." - + "v1beta1.EncryptionSpecB\003\340A\001\022\032\n\rsatisfies" - + "_pzs\030\017 \001(\010B\003\340A\003\022\032\n\rsatisfies_pzi\030\020 \001(\010B\003" - + "\340A\003\032\316\003\n\010Bigtable\022c\n\014auto_scaling\030\001 \001(\0132H" - + ".google.cloud.aiplatform.v1beta1.Feature" - + "OnlineStore.Bigtable.AutoScalingB\003\340A\002\022*\n" - + "\035enable_direct_bigtable_access\030\003 \001(\010B\003\340A" - + "\001\022m\n\021bigtable_metadata\030\004 \001(\0132M.google.cl" - + "oud.aiplatform.v1beta1.FeatureOnlineStor" - + "e.Bigtable.BigtableMetadataB\003\340A\003\032l\n\013Auto" - + "Scaling\022\033\n\016min_node_count\030\001 \001(\005B\003\340A\002\022\033\n\016" - + "max_node_count\030\002 \001(\005B\003\340A\002\022#\n\026cpu_utiliza" - + "tion_target\030\003 \001(\005B\003\340A\001\032T\n\020BigtableMetada" - + "ta\022\031\n\021tenant_project_id\030\001 \001(\t\022\023\n\013instanc" - + "e_id\030\002 \001(\t\022\020\n\010table_id\030\003 \001(\t\032\013\n\tOptimize" - + "d\032\320\001\n\030DedicatedServingEndpoint\022(\n\033public" - + "_endpoint_domain_name\030\002 \001(\tB\003\340A\003\022i\n\036priv" - + "ate_service_connect_config\030\003 \001(\0132<.googl" - + "e.cloud.aiplatform.v1beta1.PrivateServic" - + "eConnectConfigB\003\340A\001\022\037\n\022service_attachmen" - + "t\030\004 \001(\tB\003\340A\003\0322\n\023EmbeddingManagement\022\027\n\007e" - + "nabled\030\001 \001(\010B\006\340A\001\340A\005:\002\030\001\032-\n\013LabelsEntry\022" - + "\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"8\n\005State" - + "\022\025\n\021STATE_UNSPECIFIED\020\000\022\n\n\006STABLE\020\001\022\014\n\010U" - + "PDATING\020\002:\206\001\352A\202\001\n,aiplatform.googleapis." - + "com/FeatureOnlineStore\022Rprojects/{projec" - + "t}/locations/{location}/featureOnlineSto" - + "res/{feature_online_store}B\016\n\014storage_ty" - + "peB\356\001\n#com.google.cloud.aiplatform.v1bet" - + "a1B\027FeatureOnlineStoreProtoP\001ZCcloud.goo" - + "gle.com/go/aiplatform/apiv1beta1/aiplatf" - + "ormpb;aiplatformpb\252\002\037Google.Cloud.AIPlat" - + "form.V1Beta1\312\002\037Google\\Cloud\\AIPlatform\\V" - + "1beta1\352\002\"Google::Cloud::AIPlatform::V1be" - + "ta1b\006proto3" + + "e/cloud/aiplatform/v1beta1/encryption_spec.proto\0328google/cloud/aiplatform/v1beta" + + "1/service_networking.proto\032\037google/protobuf/timestamp.proto\"\327\016\n" + + "\022FeatureOnlineStore\022P\n" + + "\010bigtable\030\010 \001(\0132<.google.cloud.aipl" + + "atform.v1beta1.FeatureOnlineStore.BigtableH\000\022R\n" + + "\toptimized\030\014 \001(\0132=.google.cloud.a" + + "iplatform.v1beta1.FeatureOnlineStore.OptimizedH\000\022\021\n" + + "\004name\030\001 \001(\tB\003\340A\010\0224\n" + + "\013create_time\030\003 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + + "\013update_time\030\004" + + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\021\n" + + "\004etag\030\005 \001(\tB\003\340A\001\022T\n" + + "\006labels\030\006 \003(\0132?.google.cloud.aiplatform.v1b" + + "eta1.FeatureOnlineStore.LabelsEntryB\003\340A\001\022M\n" + + "\005state\030\007 \001(\01629.google.cloud.aiplatfor" + + "m.v1beta1.FeatureOnlineStore.StateB\003\340A\003\022u\n" + + "\032dedicated_serving_endpoint\030\n" + + " \001(\0132L.google.cloud.aiplatform.v1beta1.FeatureOnl" + + "ineStore.DedicatedServingEndpointB\003\340A\001\022l\n" + + "\024embedding_management\030\013 \001(\0132G.google.cl" + + "oud.aiplatform.v1beta1.FeatureOnlineStore.EmbeddingManagementB\005\030\001\340A\001\022M\n" + + "\017encryption_spec\030\r" + + " \001(\0132/.google.cloud.aiplatform.v1beta1.EncryptionSpecB\003\340A\001\022\032\n\r" + + "satisfies_pzs\030\017 \001(\010B\003\340A\003\022\032\n\r" + + "satisfies_pzi\030\020 \001(\010B\003\340A\003\032\341\003\n" + + "\010Bigtable\022c\n" + + "\014auto_scaling\030\001 \001(\0132H" + + ".google.cloud.aiplatform.v1beta1.FeatureOnlineStore.Bigtable.AutoScalingB\003\340A\002\022*\n" + + "\035enable_direct_bigtable_access\030\003 \001(\010B\003\340A\001\022m\n" + + "\021bigtable_metadata\030\004 \001(\0132M.google.cl" + + "oud.aiplatform.v1beta1.FeatureOnlineStore.Bigtable.BigtableMetadataB\003\340A\003\022\021\n" + + "\004zone\030\005 \001(\tB\003\340A\001\032l\n" + + "\013AutoScaling\022\033\n" + + "\016min_node_count\030\001 \001(\005B\003\340A\002\022\033\n" + + "\016max_node_count\030\002 \001(\005B\003\340A\002\022#\n" + + "\026cpu_utilization_target\030\003 \001(\005B\003\340A\001\032T\n" + + "\020BigtableMetadata\022\031\n" + + "\021tenant_project_id\030\001 \001(\t\022\023\n" + + "\013instance_id\030\002 \001(\t\022\020\n" + + "\010table_id\030\003 \001(\t\032\013\n" + + "\tOptimized\032\320\001\n" + + "\030DedicatedServingEndpoint\022(\n" + + "\033public_endpoint_domain_name\030\002 \001(\tB\003\340A\003\022i\n" + + "\036private_service_connect_config\030\003 \001(\0132<.google.cloud.aiplatform.v1" + + "beta1.PrivateServiceConnectConfigB\003\340A\001\022\037\n" + + "\022service_attachment\030\004 \001(\tB\003\340A\003\0322\n" + + "\023EmbeddingManagement\022\027\n" + + "\007enabled\030\001 \001(\010B\006\340A\001\340A\005:\002\030\001\032-\n" + + "\013LabelsEntry\022\013\n" + + "\003key\030\001 \001(\t\022\r\n" + + "\005value\030\002 \001(\t:\0028\001\"8\n" + + "\005State\022\025\n" + + "\021STATE_UNSPECIFIED\020\000\022\n\n" + + "\006STABLE\020\001\022\014\n" + + "\010UPDATING\020\002:\206\001\352A\202\001\n" + + ",aiplatform.googleapis.com/FeatureOnlineStor" + + "e\022Rprojects/{project}/locations/{locatio" + + "n}/featureOnlineStores/{feature_online_store}B\016\n" + + "\014storage_typeB\356\001\n" + + "#com.google.cloud.aiplatform.v1beta1B\027FeatureOnlineStor" + + "eProtoP\001ZCcloud.google.com/go/aiplatform" + + "/apiv1beta1/aiplatformpb;aiplatformpb\252\002\037" + + "Google.Cloud.AIPlatform.V1Beta1\312\002\037Google" + + "\\Cloud\\AIPlatform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -170,7 +177,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FeatureOnlineStore_Bigtable_descriptor, new java.lang.String[] { - "AutoScaling", "EnableDirectBigtableAccess", "BigtableMetadata", + "AutoScaling", "EnableDirectBigtableAccess", "BigtableMetadata", "Zone", }); internal_static_google_cloud_aiplatform_v1beta1_FeatureOnlineStore_Bigtable_AutoScaling_descriptor = internal_static_google_cloud_aiplatform_v1beta1_FeatureOnlineStore_Bigtable_descriptor diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceProto.java index fda7653a9f08..3172b8ab6b23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOnlineStoreServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOrBuilder.java index 6cabb8f3370a..3f7874f02281 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureProto.java index c0906055008d..494c3f2760b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceProto.java index a9f1274917ab..5ee56b4b3434 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureRegistryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfig.java index 40fa8b56a917..3c4fbee8d377 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfigOrBuilder.java index 24f8586ba89b..07ee318a562e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelector.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelector.java index d9e646e5872c..3281349c0a6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelector.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelector.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorOrBuilder.java index e22120fd62ff..fcc152862f99 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorProto.java index b3391a2145e5..7cd3727daa79 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureSelectorProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomaly.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomaly.java index 698912677b9f..21278c7ee332 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomaly.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomaly.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalyOrBuilder.java index b989d4c9b401..3f2092b73713 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpec.java index 8773efa199cf..60dd690fd93c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpecOrBuilder.java index ec8e3aa78add..cd4c52bddf24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAndAnomalySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomaly.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomaly.java index 5c78e8bc6ce2..44ed1759bc35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomaly.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomaly.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomalyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomalyOrBuilder.java index 165045f4de08..8bf684a27e54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomalyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureStatsAnomalyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValue.java index b9a017dfbbce..7dc247680c21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestination.java index d364b8e9ca12..93d95b3fe100 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestinationOrBuilder.java index 42c37c43de04..3f54359f3af3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueList.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueList.java index 0ad43007e817..359f160d0298 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueList.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueListOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueListOrBuilder.java index e5a18ebf61a7..3025b6e2ae37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueListOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueOrBuilder.java index 30a276330832..be65cd459216 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureView.java index 431b78b9956d..4d6dee49d4c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataFormat.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataFormat.java index 8364e757d743..56c54865070b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataFormat.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataFormat.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKey.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKey.java index c4496c458694..061bbee7cc49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKey.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKeyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKeyOrBuilder.java index cc788b4ae05c..43826d0de25e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKeyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDataKeyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequest.java index a4a7eb1e6f48..7eacd7f9d199 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequestOrBuilder.java index b9fc70a56a39..4d796ccfe575 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponse.java index 3f69b1ad0cbd..3159f6ab1490 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponseOrBuilder.java index 499bbeaa8747..9ead61fd54ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewDirectWriteResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewName.java index 7e8aa01fd597..6d38974c5751 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewOrBuilder.java index 46af77dd7a4d..65f33e8ff280 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewProto.java index 3cc34056d159..49e50a8f76ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSync.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSync.java index 3fd33eca7022..2db35cf93d30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSync.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSync.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncName.java index c7400c71002f..8de321ead590 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncOrBuilder.java index 1638e08385a2..d6e4c1517837 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncProto.java index 8a62d896150d..e781a4970959 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeatureViewSyncProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Featurestore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Featurestore.java index c2752dc0358e..a79d2af4cd64 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Featurestore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Featurestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfig.java index 37a3f7f03547..2203d0cd2fa1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfigOrBuilder.java index a7a1d9ee1af5..a71ff422fead 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringProto.java index 727922e5174e..12d45055f139 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreMonitoringProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreName.java index bfb7f7f93f91..206c0df0a386 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServiceProto.java index c9441f805ac8..fea83e461340 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOnlineServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOrBuilder.java index 043fcb911472..3bc7139ff6f7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreProto.java index 834fbcf9fc08..44654056bacc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceProto.java index f53b87e62132..b7582e47c083 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FeaturestoreServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequest.java index 013db96a6b61..bbdac5a4dc5b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequestOrBuilder.java index ea9332bc0ff2..b7f08dcb050f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponse.java index 48a07649fcbb..afd11ab9059e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponseOrBuilder.java index 2c52777b6685..363a5ce635ad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchExamplesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequest.java index cf1610976cba..91b20983c9ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequestOrBuilder.java index 9da49af89a08..823066a8c3ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponse.java index 789bfec41fc6..47d98910a9ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponseOrBuilder.java index 21853918561a..ce8f91f21d8b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequest.java index 59b739797a59..f7143dd77575 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequestOrBuilder.java index 6dfd02a7ebf3..1e8e2a3dca28 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FetchPublisherModelConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileData.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileData.java index 5e24e1c1b0ff..dce9e3383a8b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileData.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileDataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileDataOrBuilder.java index b3cab24e23ca..bdecf2a4316b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileDataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatus.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatus.java index bdbed84ccb52..f9e998bce231 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatus.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatusOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatusOrBuilder.java index d817cc8ab13f..971e97732e33 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatusOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FileStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplit.java index 9598c7d5e945..e47e90c0ec3b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplitOrBuilder.java index 4c92b1e432b3..cc95b5381214 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FilterSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequest.java index d79118a2b3a4..9fde0143a241 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequestOrBuilder.java index bcda462dbad1..28c13043b6a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponse.java index 2efa555edabe..375f8cc9f543 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponseOrBuilder.java index b69489623650..a9e25a87161a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FindNeighborsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStart.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStart.java index 2bb97731f6fe..2fe0adc11d46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStart.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStart.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStartOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStartOrBuilder.java index 11febff654f4..7bd964d73214 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStartOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FlexStartOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInput.java index 03e173cba196..875a93fac10d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInputOrBuilder.java index 1aba5156249f..05dc2a56427e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstance.java index 36a79364dfed..774a5c448bc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstanceOrBuilder.java index 64c8a9b429a7..1f41487bc688 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResult.java index ad60540fe6f0..d79a76009d93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResultOrBuilder.java index 9adc50c9f8c9..34f5fdf4e68b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencyResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpec.java index f52b0af31e0a..654be7f5e4c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpecOrBuilder.java index 92ba501fc53b..7622c363fc8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FluencySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplit.java index 7494aa4469a9..d4b7e58098dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplitOrBuilder.java index 65aebe76a1a5..2d98140e6c95 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FractionSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInput.java index 0339309fc4df..27a151cda79f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInputOrBuilder.java index bfeeb956cdef..6669eb0da7ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstance.java index 5b0c701de149..561d2113d778 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstanceOrBuilder.java index 1dfe390e98af..b7b311dddd59 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResult.java index 33f4c857c2ad..c4ea40c752ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResultOrBuilder.java index 8c52f7fe3d58..76bddcb4c7b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpec.java index 0cb2ee98f40c..ccc4bd39e0c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpecOrBuilder.java index c9a10cbac496..7bd8885e9caf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FulfillmentSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FullFineTunedResources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FullFineTunedResources.java new file mode 100644 index 000000000000..1326e3acd6cd --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FullFineTunedResources.java @@ -0,0 +1,948 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/machine_resources.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +/** + * + * + *
+ * Resources for an fft model.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.FullFineTunedResources} + */ +public final class FullFineTunedResources extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.FullFineTunedResources) + FullFineTunedResourcesOrBuilder { + private static final long serialVersionUID = 0L; + + // Use FullFineTunedResources.newBuilder() to construct. + private FullFineTunedResources(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private FullFineTunedResources() { + deploymentType_ = 0; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new FullFineTunedResources(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.class, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder.class); + } + + /** + * + * + *
+   * The type of deployment.
+   * 
+ * + * Protobuf enum {@code google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType} + */ + public enum DeploymentType implements com.google.protobuf.ProtocolMessageEnum { + /** + * + * + *
+     * Unspecified deployment type.
+     * 
+ * + * DEPLOYMENT_TYPE_UNSPECIFIED = 0; + */ + DEPLOYMENT_TYPE_UNSPECIFIED(0), + /** + * + * + *
+     * Eval deployment type.
+     * 
+ * + * DEPLOYMENT_TYPE_EVAL = 1; + */ + DEPLOYMENT_TYPE_EVAL(1), + /** + * + * + *
+     * Prod deployment type.
+     * 
+ * + * DEPLOYMENT_TYPE_PROD = 2; + */ + DEPLOYMENT_TYPE_PROD(2), + UNRECOGNIZED(-1), + ; + + /** + * + * + *
+     * Unspecified deployment type.
+     * 
+ * + * DEPLOYMENT_TYPE_UNSPECIFIED = 0; + */ + public static final int DEPLOYMENT_TYPE_UNSPECIFIED_VALUE = 0; + + /** + * + * + *
+     * Eval deployment type.
+     * 
+ * + * DEPLOYMENT_TYPE_EVAL = 1; + */ + public static final int DEPLOYMENT_TYPE_EVAL_VALUE = 1; + + /** + * + * + *
+     * Prod deployment type.
+     * 
+ * + * DEPLOYMENT_TYPE_PROD = 2; + */ + public static final int DEPLOYMENT_TYPE_PROD_VALUE = 2; + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static DeploymentType valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static DeploymentType forNumber(int value) { + switch (value) { + case 0: + return DEPLOYMENT_TYPE_UNSPECIFIED; + case 1: + return DEPLOYMENT_TYPE_EVAL; + case 2: + return DEPLOYMENT_TYPE_PROD; + default: + return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { + return internalValueMap; + } + + private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public DeploymentType findValueByNumber(int number) { + return DeploymentType.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + + public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + return getDescriptor(); + } + + public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDescriptor() + .getEnumTypes() + .get(0); + } + + private static final DeploymentType[] VALUES = values(); + + public static DeploymentType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private DeploymentType(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType) + } + + public static final int DEPLOYMENT_TYPE_FIELD_NUMBER = 1; + private int deploymentType_ = 0; + + /** + * + * + *
+   * Required. The kind of deployment.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The enum numeric value on the wire for deploymentType. + */ + @java.lang.Override + public int getDeploymentTypeValue() { + return deploymentType_; + } + + /** + * + * + *
+   * Required. The kind of deployment.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The deploymentType. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType + getDeploymentType() { + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType result = + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType.forNumber( + deploymentType_); + return result == null + ? com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType.UNRECOGNIZED + : result; + } + + public static final int MODEL_INFERENCE_UNIT_COUNT_FIELD_NUMBER = 2; + private int modelInferenceUnitCount_ = 0; + + /** + * + * + *
+   * Optional. The number of model inference units to use for this deployment.
+   * This can only be specified for DEPLOYMENT_TYPE_PROD.
+   * The following table lists the number of model inference units for different
+   * model types:
+   * * Gemini 2.5 Flash
+   *   * Foundation FMIU: 25
+   *   * Expansion FMIU: 4
+   * * Gemini 2.5 Pro
+   *   * Foundation FMIU: 32
+   *   * Expansion FMIU: 16
+   * * Veo 3.0 (undistilled)
+   *   * Foundation FMIU: 63
+   *   * Expansion FMIU: 7
+   * * Veo 3.0 (distilled)
+   *   * Foundation FMIU: 30
+   *   * Expansion FMIU: 10
+   * 
+ * + * int32 model_inference_unit_count = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The modelInferenceUnitCount. + */ + @java.lang.Override + public int getModelInferenceUnitCount() { + return modelInferenceUnitCount_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (deploymentType_ + != com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType + .DEPLOYMENT_TYPE_UNSPECIFIED + .getNumber()) { + output.writeEnum(1, deploymentType_); + } + if (modelInferenceUnitCount_ != 0) { + output.writeInt32(2, modelInferenceUnitCount_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (deploymentType_ + != com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType + .DEPLOYMENT_TYPE_UNSPECIFIED + .getNumber()) { + size += com.google.protobuf.CodedOutputStream.computeEnumSize(1, deploymentType_); + } + if (modelInferenceUnitCount_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(2, modelInferenceUnitCount_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1beta1.FullFineTunedResources)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources other = + (com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) obj; + + if (deploymentType_ != other.deploymentType_) return false; + if (getModelInferenceUnitCount() != other.getModelInferenceUnitCount()) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DEPLOYMENT_TYPE_FIELD_NUMBER; + hash = (53 * hash) + deploymentType_; + hash = (37 * hash) + MODEL_INFERENCE_UNIT_COUNT_FIELD_NUMBER; + hash = (53 * hash) + getModelInferenceUnitCount(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Resources for an fft model.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.FullFineTunedResources} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.FullFineTunedResources) + com.google.cloud.aiplatform.v1beta1.FullFineTunedResourcesOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.class, + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + deploymentType_ = 0; + modelInferenceUnitCount_ = 0; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources build() { + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources buildPartial() { + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources result = + new com.google.cloud.aiplatform.v1beta1.FullFineTunedResources(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.FullFineTunedResources result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.deploymentType_ = deploymentType_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.modelInferenceUnitCount_ = modelInferenceUnitCount_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) { + return mergeFrom((com.google.cloud.aiplatform.v1beta1.FullFineTunedResources) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.FullFineTunedResources other) { + if (other == com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.getDefaultInstance()) + return this; + if (other.deploymentType_ != 0) { + setDeploymentTypeValue(other.getDeploymentTypeValue()); + } + if (other.getModelInferenceUnitCount() != 0) { + setModelInferenceUnitCount(other.getModelInferenceUnitCount()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: + { + deploymentType_ = input.readEnum(); + bitField0_ |= 0x00000001; + break; + } // case 8 + case 16: + { + modelInferenceUnitCount_ = input.readInt32(); + bitField0_ |= 0x00000002; + break; + } // case 16 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private int deploymentType_ = 0; + + /** + * + * + *
+     * Required. The kind of deployment.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The enum numeric value on the wire for deploymentType. + */ + @java.lang.Override + public int getDeploymentTypeValue() { + return deploymentType_; + } + + /** + * + * + *
+     * Required. The kind of deployment.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @param value The enum numeric value on the wire for deploymentType to set. + * @return This builder for chaining. + */ + public Builder setDeploymentTypeValue(int value) { + deploymentType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The kind of deployment.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The deploymentType. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType + getDeploymentType() { + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType result = + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType.forNumber( + deploymentType_); + return result == null + ? com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType.UNRECOGNIZED + : result; + } + + /** + * + * + *
+     * Required. The kind of deployment.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @param value The deploymentType to set. + * @return This builder for chaining. + */ + public Builder setDeploymentType( + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000001; + deploymentType_ = value.getNumber(); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The kind of deployment.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return This builder for chaining. + */ + public Builder clearDeploymentType() { + bitField0_ = (bitField0_ & ~0x00000001); + deploymentType_ = 0; + onChanged(); + return this; + } + + private int modelInferenceUnitCount_; + + /** + * + * + *
+     * Optional. The number of model inference units to use for this deployment.
+     * This can only be specified for DEPLOYMENT_TYPE_PROD.
+     * The following table lists the number of model inference units for different
+     * model types:
+     * * Gemini 2.5 Flash
+     *   * Foundation FMIU: 25
+     *   * Expansion FMIU: 4
+     * * Gemini 2.5 Pro
+     *   * Foundation FMIU: 32
+     *   * Expansion FMIU: 16
+     * * Veo 3.0 (undistilled)
+     *   * Foundation FMIU: 63
+     *   * Expansion FMIU: 7
+     * * Veo 3.0 (distilled)
+     *   * Foundation FMIU: 30
+     *   * Expansion FMIU: 10
+     * 
+ * + * int32 model_inference_unit_count = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The modelInferenceUnitCount. + */ + @java.lang.Override + public int getModelInferenceUnitCount() { + return modelInferenceUnitCount_; + } + + /** + * + * + *
+     * Optional. The number of model inference units to use for this deployment.
+     * This can only be specified for DEPLOYMENT_TYPE_PROD.
+     * The following table lists the number of model inference units for different
+     * model types:
+     * * Gemini 2.5 Flash
+     *   * Foundation FMIU: 25
+     *   * Expansion FMIU: 4
+     * * Gemini 2.5 Pro
+     *   * Foundation FMIU: 32
+     *   * Expansion FMIU: 16
+     * * Veo 3.0 (undistilled)
+     *   * Foundation FMIU: 63
+     *   * Expansion FMIU: 7
+     * * Veo 3.0 (distilled)
+     *   * Foundation FMIU: 30
+     *   * Expansion FMIU: 10
+     * 
+ * + * int32 model_inference_unit_count = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The modelInferenceUnitCount to set. + * @return This builder for chaining. + */ + public Builder setModelInferenceUnitCount(int value) { + + modelInferenceUnitCount_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The number of model inference units to use for this deployment.
+     * This can only be specified for DEPLOYMENT_TYPE_PROD.
+     * The following table lists the number of model inference units for different
+     * model types:
+     * * Gemini 2.5 Flash
+     *   * Foundation FMIU: 25
+     *   * Expansion FMIU: 4
+     * * Gemini 2.5 Pro
+     *   * Foundation FMIU: 32
+     *   * Expansion FMIU: 16
+     * * Veo 3.0 (undistilled)
+     *   * Foundation FMIU: 63
+     *   * Expansion FMIU: 7
+     * * Veo 3.0 (distilled)
+     *   * Foundation FMIU: 30
+     *   * Expansion FMIU: 10
+     * 
+ * + * int32 model_inference_unit_count = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearModelInferenceUnitCount() { + bitField0_ = (bitField0_ & ~0x00000002); + modelInferenceUnitCount_ = 0; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.FullFineTunedResources) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.FullFineTunedResources) + private static final com.google.cloud.aiplatform.v1beta1.FullFineTunedResources DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1beta1.FullFineTunedResources(); + } + + public static com.google.cloud.aiplatform.v1beta1.FullFineTunedResources getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public FullFineTunedResources parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.FullFineTunedResources getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FullFineTunedResourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FullFineTunedResourcesOrBuilder.java new file mode 100644 index 000000000000..66b9da57b67c --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FullFineTunedResourcesOrBuilder.java @@ -0,0 +1,84 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/machine_resources.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +public interface FullFineTunedResourcesOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.FullFineTunedResources) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The kind of deployment.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The enum numeric value on the wire for deploymentType. + */ + int getDeploymentTypeValue(); + + /** + * + * + *
+   * Required. The kind of deployment.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType deployment_type = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The deploymentType. + */ + com.google.cloud.aiplatform.v1beta1.FullFineTunedResources.DeploymentType getDeploymentType(); + + /** + * + * + *
+   * Optional. The number of model inference units to use for this deployment.
+   * This can only be specified for DEPLOYMENT_TYPE_PROD.
+   * The following table lists the number of model inference units for different
+   * model types:
+   * * Gemini 2.5 Flash
+   *   * Foundation FMIU: 25
+   *   * Expansion FMIU: 4
+   * * Gemini 2.5 Pro
+   *   * Foundation FMIU: 32
+   *   * Expansion FMIU: 16
+   * * Veo 3.0 (undistilled)
+   *   * Foundation FMIU: 63
+   *   * Expansion FMIU: 7
+   * * Veo 3.0 (distilled)
+   *   * Foundation FMIU: 30
+   *   * Expansion FMIU: 10
+   * 
+ * + * int32 model_inference_unit_count = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The modelInferenceUnitCount. + */ + int getModelInferenceUnitCount(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCall.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCall.java index 1b01ba118f7c..2b3787555a17 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCall.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCall.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,6 +44,7 @@ private FunctionCall(com.google.protobuf.GeneratedMessageV3.Builder builder) private FunctionCall() { id_ = ""; name_ = ""; + partialArgs_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -132,11 +133,11 @@ public com.google.protobuf.ByteString getIdBytes() { * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The name. */ @@ -157,11 +158,11 @@ public java.lang.String getName() { * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for name. */ @@ -185,8 +186,8 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -202,8 +203,8 @@ public boolean hasArgs() { * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -219,8 +220,8 @@ public com.google.protobuf.Struct getArgs() { * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -230,6 +231,124 @@ public com.google.protobuf.StructOrBuilder getArgsOrBuilder() { return args_ == null ? com.google.protobuf.Struct.getDefaultInstance() : args_; } + public static final int PARTIAL_ARGS_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private java.util.List partialArgs_; + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List getPartialArgsList() { + return partialArgs_; + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getPartialArgsOrBuilderList() { + return partialArgs_; + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public int getPartialArgsCount() { + return partialArgs_.size(); + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.PartialArg getPartialArgs(int index) { + return partialArgs_.get(index); + } + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder getPartialArgsOrBuilder( + int index) { + return partialArgs_.get(index); + } + + public static final int WILL_CONTINUE_FIELD_NUMBER = 5; + private boolean willContinue_ = false; + + /** + * + * + *
+   * Optional. Whether this is the last part of the FunctionCall.
+   * If true, another partial message for the current FunctionCall is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -253,6 +372,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, id_); } + for (int i = 0; i < partialArgs_.size(); i++) { + output.writeMessage(4, partialArgs_.get(i)); + } + if (willContinue_ != false) { + output.writeBool(5, willContinue_); + } getUnknownFields().writeTo(output); } @@ -271,6 +396,12 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, id_); } + for (int i = 0; i < partialArgs_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, partialArgs_.get(i)); + } + if (willContinue_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(5, willContinue_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -293,6 +424,8 @@ public boolean equals(final java.lang.Object obj) { if (hasArgs()) { if (!getArgs().equals(other.getArgs())) return false; } + if (!getPartialArgsList().equals(other.getPartialArgsList())) return false; + if (getWillContinue() != other.getWillContinue()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -312,6 +445,12 @@ public int hashCode() { hash = (37 * hash) + ARGS_FIELD_NUMBER; hash = (53 * hash) + getArgs().hashCode(); } + if (getPartialArgsCount() > 0) { + hash = (37 * hash) + PARTIAL_ARGS_FIELD_NUMBER; + hash = (53 * hash) + getPartialArgsList().hashCode(); + } + hash = (37 * hash) + WILL_CONTINUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getWillContinue()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -456,6 +595,7 @@ private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getArgsFieldBuilder(); + getPartialArgsFieldBuilder(); } } @@ -470,6 +610,14 @@ public Builder clear() { argsBuilder_.dispose(); argsBuilder_ = null; } + if (partialArgsBuilder_ == null) { + partialArgs_ = java.util.Collections.emptyList(); + } else { + partialArgs_ = null; + partialArgsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000008); + willContinue_ = false; return this; } @@ -497,6 +645,7 @@ public com.google.cloud.aiplatform.v1beta1.FunctionCall build() { public com.google.cloud.aiplatform.v1beta1.FunctionCall buildPartial() { com.google.cloud.aiplatform.v1beta1.FunctionCall result = new com.google.cloud.aiplatform.v1beta1.FunctionCall(this); + buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } @@ -504,6 +653,19 @@ public com.google.cloud.aiplatform.v1beta1.FunctionCall buildPartial() { return result; } + private void buildPartialRepeatedFields( + com.google.cloud.aiplatform.v1beta1.FunctionCall result) { + if (partialArgsBuilder_ == null) { + if (((bitField0_ & 0x00000008) != 0)) { + partialArgs_ = java.util.Collections.unmodifiableList(partialArgs_); + bitField0_ = (bitField0_ & ~0x00000008); + } + result.partialArgs_ = partialArgs_; + } else { + result.partialArgs_ = partialArgsBuilder_.build(); + } + } + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.FunctionCall result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { @@ -517,6 +679,9 @@ private void buildPartial0(com.google.cloud.aiplatform.v1beta1.FunctionCall resu result.args_ = argsBuilder_ == null ? args_ : argsBuilder_.build(); to_bitField0_ |= 0x00000001; } + if (((from_bitField0_ & 0x00000010) != 0)) { + result.willContinue_ = willContinue_; + } result.bitField0_ |= to_bitField0_; } @@ -579,6 +744,36 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.FunctionCall other) if (other.hasArgs()) { mergeArgs(other.getArgs()); } + if (partialArgsBuilder_ == null) { + if (!other.partialArgs_.isEmpty()) { + if (partialArgs_.isEmpty()) { + partialArgs_ = other.partialArgs_; + bitField0_ = (bitField0_ & ~0x00000008); + } else { + ensurePartialArgsIsMutable(); + partialArgs_.addAll(other.partialArgs_); + } + onChanged(); + } + } else { + if (!other.partialArgs_.isEmpty()) { + if (partialArgsBuilder_.isEmpty()) { + partialArgsBuilder_.dispose(); + partialArgsBuilder_ = null; + partialArgs_ = other.partialArgs_; + bitField0_ = (bitField0_ & ~0x00000008); + partialArgsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getPartialArgsFieldBuilder() + : null; + } else { + partialArgsBuilder_.addAllMessages(other.partialArgs_); + } + } + } + if (other.getWillContinue() != false) { + setWillContinue(other.getWillContinue()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -623,6 +818,25 @@ public Builder mergeFrom( bitField0_ |= 0x00000001; break; } // case 26 + case 34: + { + com.google.cloud.aiplatform.v1beta1.PartialArg m = + input.readMessage( + com.google.cloud.aiplatform.v1beta1.PartialArg.parser(), extensionRegistry); + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.add(m); + } else { + partialArgsBuilder_.addMessage(m); + } + break; + } // case 34 + case 40: + { + willContinue_ = input.readBool(); + bitField0_ |= 0x00000010; + break; + } // case 40 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -764,11 +978,11 @@ public Builder setIdBytes(com.google.protobuf.ByteString value) { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The name. */ @@ -788,11 +1002,11 @@ public java.lang.String getName() { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for name. */ @@ -812,11 +1026,11 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The name to set. * @return This builder for chaining. @@ -835,11 +1049,11 @@ public Builder setName(java.lang.String value) { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return This builder for chaining. */ @@ -854,11 +1068,11 @@ public Builder clearName() { * * *
-     * Required. The name of the function to call.
+     * Optional. The name of the function to call.
      * Matches [FunctionDeclaration.name].
      * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The bytes for name to set. * @return This builder for chaining. @@ -885,8 +1099,8 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -901,8 +1115,8 @@ public boolean hasArgs() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -921,8 +1135,8 @@ public com.google.protobuf.Struct getArgs() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -945,8 +1159,8 @@ public Builder setArgs(com.google.protobuf.Struct value) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -966,8 +1180,8 @@ public Builder setArgs(com.google.protobuf.Struct.Builder builderForValue) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -995,8 +1209,8 @@ public Builder mergeArgs(com.google.protobuf.Struct value) { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1016,8 +1230,8 @@ public Builder clearArgs() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1032,8 +1246,8 @@ public com.google.protobuf.Struct.Builder getArgsBuilder() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1050,8 +1264,8 @@ public com.google.protobuf.StructOrBuilder getArgsOrBuilder() { * * *
-     * Optional. Required. The function parameters and values in JSON object
-     * format. See [FunctionDeclaration.parameters] for parameter details.
+     * Optional. The function parameters and values in JSON object format.
+     * See [FunctionDeclaration.parameters] for parameter details.
      * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1072,6 +1286,509 @@ public com.google.protobuf.StructOrBuilder getArgsOrBuilder() { return argsBuilder_; } + private java.util.List partialArgs_ = + java.util.Collections.emptyList(); + + private void ensurePartialArgsIsMutable() { + if (!((bitField0_ & 0x00000008) != 0)) { + partialArgs_ = + new java.util.ArrayList(partialArgs_); + bitField0_ |= 0x00000008; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.PartialArg, + com.google.cloud.aiplatform.v1beta1.PartialArg.Builder, + com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder> + partialArgsBuilder_; + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List getPartialArgsList() { + if (partialArgsBuilder_ == null) { + return java.util.Collections.unmodifiableList(partialArgs_); + } else { + return partialArgsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public int getPartialArgsCount() { + if (partialArgsBuilder_ == null) { + return partialArgs_.size(); + } else { + return partialArgsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.PartialArg getPartialArgs(int index) { + if (partialArgsBuilder_ == null) { + return partialArgs_.get(index); + } else { + return partialArgsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setPartialArgs(int index, com.google.cloud.aiplatform.v1beta1.PartialArg value) { + if (partialArgsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensurePartialArgsIsMutable(); + partialArgs_.set(index, value); + onChanged(); + } else { + partialArgsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setPartialArgs( + int index, com.google.cloud.aiplatform.v1beta1.PartialArg.Builder builderForValue) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.set(index, builderForValue.build()); + onChanged(); + } else { + partialArgsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs(com.google.cloud.aiplatform.v1beta1.PartialArg value) { + if (partialArgsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensurePartialArgsIsMutable(); + partialArgs_.add(value); + onChanged(); + } else { + partialArgsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs(int index, com.google.cloud.aiplatform.v1beta1.PartialArg value) { + if (partialArgsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensurePartialArgsIsMutable(); + partialArgs_.add(index, value); + onChanged(); + } else { + partialArgsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs( + com.google.cloud.aiplatform.v1beta1.PartialArg.Builder builderForValue) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.add(builderForValue.build()); + onChanged(); + } else { + partialArgsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addPartialArgs( + int index, com.google.cloud.aiplatform.v1beta1.PartialArg.Builder builderForValue) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.add(index, builderForValue.build()); + onChanged(); + } else { + partialArgsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addAllPartialArgs( + java.lang.Iterable values) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, partialArgs_); + onChanged(); + } else { + partialArgsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearPartialArgs() { + if (partialArgsBuilder_ == null) { + partialArgs_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + } else { + partialArgsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder removePartialArgs(int index) { + if (partialArgsBuilder_ == null) { + ensurePartialArgsIsMutable(); + partialArgs_.remove(index); + onChanged(); + } else { + partialArgsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.PartialArg.Builder getPartialArgsBuilder(int index) { + return getPartialArgsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder getPartialArgsOrBuilder( + int index) { + if (partialArgsBuilder_ == null) { + return partialArgs_.get(index); + } else { + return partialArgsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getPartialArgsOrBuilderList() { + if (partialArgsBuilder_ != null) { + return partialArgsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(partialArgs_); + } + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.PartialArg.Builder addPartialArgsBuilder() { + return getPartialArgsFieldBuilder() + .addBuilder(com.google.cloud.aiplatform.v1beta1.PartialArg.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.PartialArg.Builder addPartialArgsBuilder(int index) { + return getPartialArgsFieldBuilder() + .addBuilder(index, com.google.cloud.aiplatform.v1beta1.PartialArg.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. The partial argument value of the function call.
+     * If provided, represents the arguments/fields that are streamed
+     * incrementally.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getPartialArgsBuilderList() { + return getPartialArgsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.PartialArg, + com.google.cloud.aiplatform.v1beta1.PartialArg.Builder, + com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder> + getPartialArgsFieldBuilder() { + if (partialArgsBuilder_ == null) { + partialArgsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.PartialArg, + com.google.cloud.aiplatform.v1beta1.PartialArg.Builder, + com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder>( + partialArgs_, ((bitField0_ & 0x00000008) != 0), getParentForChildren(), isClean()); + partialArgs_ = null; + } + return partialArgsBuilder_; + } + + private boolean willContinue_; + + /** + * + * + *
+     * Optional. Whether this is the last part of the FunctionCall.
+     * If true, another partial message for the current FunctionCall is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + + /** + * + * + *
+     * Optional. Whether this is the last part of the FunctionCall.
+     * If true, another partial message for the current FunctionCall is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The willContinue to set. + * @return This builder for chaining. + */ + public Builder setWillContinue(boolean value) { + + willContinue_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Whether this is the last part of the FunctionCall.
+     * If true, another partial message for the current FunctionCall is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearWillContinue() { + bitField0_ = (bitField0_ & ~0x00000010); + willContinue_ = false; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallOrBuilder.java index 6fd6b3436f35..8e787db4bd20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,11 +56,11 @@ public interface FunctionCallOrBuilder * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The name. */ @@ -70,11 +70,11 @@ public interface FunctionCallOrBuilder * * *
-   * Required. The name of the function to call.
+   * Optional. The name of the function to call.
    * Matches [FunctionDeclaration.name].
    * 
* - * string name = 1 [(.google.api.field_behavior) = REQUIRED]; + * string name = 1 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for name. */ @@ -84,8 +84,8 @@ public interface FunctionCallOrBuilder * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -98,8 +98,8 @@ public interface FunctionCallOrBuilder * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -112,11 +112,102 @@ public interface FunctionCallOrBuilder * * *
-   * Optional. Required. The function parameters and values in JSON object
-   * format. See [FunctionDeclaration.parameters] for parameter details.
+   * Optional. The function parameters and values in JSON object format.
+   * See [FunctionDeclaration.parameters] for parameter details.
    * 
* * .google.protobuf.Struct args = 2 [(.google.api.field_behavior) = OPTIONAL]; */ com.google.protobuf.StructOrBuilder getArgsOrBuilder(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List getPartialArgsList(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1beta1.PartialArg getPartialArgs(int index); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + int getPartialArgsCount(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List + getPartialArgsOrBuilderList(); + + /** + * + * + *
+   * Optional. The partial argument value of the function call.
+   * If provided, represents the arguments/fields that are streamed
+   * incrementally.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.PartialArg partial_args = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder getPartialArgsOrBuilder(int index); + + /** + * + * + *
+   * Optional. Whether this is the last part of the FunctionCall.
+   * If true, another partial message for the current FunctionCall is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + boolean getWillContinue(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfig.java index 1873c301be32..bff68fa3e0a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -417,6 +417,27 @@ public com.google.protobuf.ByteString getAllowedFunctionNamesBytes(int index) { return allowedFunctionNames_.getByteString(index); } + public static final int STREAM_FUNCTION_CALL_ARGUMENTS_FIELD_NUMBER = 4; + private boolean streamFunctionCallArguments_ = false; + + /** + * + * + *
+   * Optional. When set to true, arguments of a single function call will be
+   * streamed out in multiple parts/contents/responses. Partial parameter
+   * results will be returned in the [FunctionCall.partial_args] field.
+   * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The streamFunctionCallArguments. + */ + @java.lang.Override + public boolean getStreamFunctionCallArguments() { + return streamFunctionCallArguments_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -440,6 +461,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io com.google.protobuf.GeneratedMessageV3.writeString( output, 2, allowedFunctionNames_.getRaw(i)); } + if (streamFunctionCallArguments_ != false) { + output.writeBool(4, streamFunctionCallArguments_); + } getUnknownFields().writeTo(output); } @@ -462,6 +486,10 @@ public int getSerializedSize() { size += dataSize; size += 1 * getAllowedFunctionNamesList().size(); } + if (streamFunctionCallArguments_ != false) { + size += + com.google.protobuf.CodedOutputStream.computeBoolSize(4, streamFunctionCallArguments_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -480,6 +508,7 @@ public boolean equals(final java.lang.Object obj) { if (mode_ != other.mode_) return false; if (!getAllowedFunctionNamesList().equals(other.getAllowedFunctionNamesList())) return false; + if (getStreamFunctionCallArguments() != other.getStreamFunctionCallArguments()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -497,6 +526,8 @@ public int hashCode() { hash = (37 * hash) + ALLOWED_FUNCTION_NAMES_FIELD_NUMBER; hash = (53 * hash) + getAllowedFunctionNamesList().hashCode(); } + hash = (37 * hash) + STREAM_FUNCTION_CALL_ARGUMENTS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getStreamFunctionCallArguments()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -640,6 +671,7 @@ public Builder clear() { bitField0_ = 0; mode_ = 0; allowedFunctionNames_ = com.google.protobuf.LazyStringArrayList.emptyList(); + streamFunctionCallArguments_ = false; return this; } @@ -683,6 +715,9 @@ private void buildPartial0(com.google.cloud.aiplatform.v1beta1.FunctionCallingCo allowedFunctionNames_.makeImmutable(); result.allowedFunctionNames_ = allowedFunctionNames_; } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.streamFunctionCallArguments_ = streamFunctionCallArguments_; + } } @java.lang.Override @@ -744,6 +779,9 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.FunctionCallingConf } onChanged(); } + if (other.getStreamFunctionCallArguments() != false) { + setStreamFunctionCallArguments(other.getStreamFunctionCallArguments()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -783,6 +821,12 @@ public Builder mergeFrom( allowedFunctionNames_.add(s); break; } // case 18 + case 32: + { + streamFunctionCallArguments_ = input.readBool(); + bitField0_ |= 0x00000004; + break; + } // case 32 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -1119,6 +1163,71 @@ public Builder addAllowedFunctionNamesBytes(com.google.protobuf.ByteString value return this; } + private boolean streamFunctionCallArguments_; + + /** + * + * + *
+     * Optional. When set to true, arguments of a single function call will be
+     * streamed out in multiple parts/contents/responses. Partial parameter
+     * results will be returned in the [FunctionCall.partial_args] field.
+     * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The streamFunctionCallArguments. + */ + @java.lang.Override + public boolean getStreamFunctionCallArguments() { + return streamFunctionCallArguments_; + } + + /** + * + * + *
+     * Optional. When set to true, arguments of a single function call will be
+     * streamed out in multiple parts/contents/responses. Partial parameter
+     * results will be returned in the [FunctionCall.partial_args] field.
+     * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The streamFunctionCallArguments to set. + * @return This builder for chaining. + */ + public Builder setStreamFunctionCallArguments(boolean value) { + + streamFunctionCallArguments_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. When set to true, arguments of a single function call will be
+     * streamed out in multiple parts/contents/responses. Partial parameter
+     * results will be returned in the [FunctionCall.partial_args] field.
+     * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return This builder for chaining. + */ + public Builder clearStreamFunctionCallArguments() { + bitField0_ = (bitField0_ & ~0x00000004); + streamFunctionCallArguments_ = false; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfigOrBuilder.java index 5428c81be571..a051b8242bea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionCallingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -119,4 +119,19 @@ public interface FunctionCallingConfigOrBuilder * @return The bytes of the allowedFunctionNames at the given index. */ com.google.protobuf.ByteString getAllowedFunctionNamesBytes(int index); + + /** + * + * + *
+   * Optional. When set to true, arguments of a single function call will be
+   * streamed out in multiple parts/contents/responses. Partial parameter
+   * results will be returned in the [FunctionCall.partial_args] field.
+   * 
+ * + * bool stream_function_call_arguments = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The streamFunctionCallArguments. + */ + boolean getStreamFunctionCallArguments(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclaration.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclaration.java index f1be7716876f..08f8f7ceefb5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclaration.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclaration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclarationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclarationOrBuilder.java index f6936253610e..392e50f0838d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclarationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionDeclarationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponse.java index e7bece9ebc14..ae8b58637202 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlob.java index e600b12c4c5f..c1e0617f3a4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlobOrBuilder.java index 961ab3bf6809..46f72608151c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseBlobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileData.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileData.java index 69e1dc64e450..08bafa4f07a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileData.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileDataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileDataOrBuilder.java index bbb8a875e510..a4fee1aee232 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileDataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseFileDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseOrBuilder.java index 0584df06fe6d..fecb933a02cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePart.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePart.java index 5a04be9717d2..34642644e37d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePart.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePart.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePartOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePartOrBuilder.java index 680e689a5c9b..1f0ebb3d687e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePartOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/FunctionResponsePartOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestination.java index 4d119cd7f91a..462700956171 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestinationOrBuilder.java index c49427596ab7..99dc5fec78c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSource.java index 1d1521fe350c..83df3fb90196 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSourceOrBuilder.java index a978e7965084..7729bab4245c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExample.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExample.java index 351890a2cce9..69a9c4091acd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExample.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExample.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExampleOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExampleOrBuilder.java index e18e1bf80c4e..2d0f3508fab1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExampleOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiExampleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfig.java index 35b346c6ac7a..a2293e79119e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfigOrBuilder.java index 29067ea15011..8ad4c3255c95 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiRequestReadConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfig.java index 28fd1df52043..cf0fb86ff8ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfigOrBuilder.java index 1799ae768033..dc3df1bf2824 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GeminiTemplateConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfig.java index cadcca7172f0..00746ef13c4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfigOrBuilder.java index e9044819bbee..c6bc9cc74fd3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiAdvancedFeaturesConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceProto.java index f1804d172518..7859412517df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiCacheServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceProto.java index f4f60a7a4f9b..1eeb5e11f176 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenAiTuningServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequest.java index c236f46d49cb..fecd436bf58e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequestOrBuilder.java index 4c30a37dd777..e3308ad6ef5a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponse.java index e7bee4c996ff..91dc3dcb2abd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponseOrBuilder.java index 1379eb698a8d..919dbe6c3513 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateContentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequest.java index a218a1772d38..d13aee65076e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequestOrBuilder.java index 7989d0fb954f..ac1ce4973ab8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponse.java index 3bb5c936ded5..3b7d2b3510e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponseOrBuilder.java index 68596041cafc..e19b77959dae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateFetchAccessTokenResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadata.java index 3c562413cc08..62f1d6258f24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadataOrBuilder.java index 3b7f8763f116..5361e00de0db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequest.java index 360690960cef..0f8f237bf1ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequestOrBuilder.java index a9514b48c81b..a25f32854ab8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponse.java index 3270db12da26..5638064ae413 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponseOrBuilder.java index a9205a6f0228..f27bb4bb4f00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateMemoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponse.java index 2e324fa97bbe..9935045b347b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponseOrBuilder.java index d15c7f867e3e..23a1faa19c78 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerateVideoResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfig.java index 4d0d3016c618..7a06d755b01a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfigOrBuilder.java index c0dfd9d22725..db53bbed598d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenerationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadata.java index 1895d47eedb7..5386e26c43b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadataOrBuilder.java index 8118cf2b253a..be15a76a5346 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenericOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSource.java index 4f886ca9a43f..4e280417f267 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSourceOrBuilder.java index aac3935694c5..5435eb471e4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GenieSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequest.java index ee7d007f8f87..7a932fc968dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequestOrBuilder.java index aceee91fde4d..a8fa62c4c958 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetAnnotationSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequest.java index fdeb8ab28ce8..8ad8a39d68d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequestOrBuilder.java index 2b4a7f711241..69b0d224c41a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequest.java index 9f79f61d65e1..36d6abe9971d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequestOrBuilder.java index 23affc045b07..acdc6b2ddffc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetBatchPredictionJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequest.java index 8b09867d144c..7bbbe080974d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequestOrBuilder.java index 10a8b55b39b2..2534d204c1a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCachedContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequest.java index 5c434c9bdd76..70bf073a4512 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequestOrBuilder.java index 8e265b27650e..871a6847281a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetContextRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequest.java index 023332a5ad5d..117244e060ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequestOrBuilder.java index b9aa8fb6d577..82458f39e290 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetCustomJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequest.java index ccff9afb0013..993192e960f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequestOrBuilder.java index fa08e4d85752..b7e3082ecf0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDataLabelingJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequest.java index 096d5beb118a..3b51e1424702 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequestOrBuilder.java index 0c37494d1324..f98946122156 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequest.java index 39804efc5ee4..d62ccdbfc19a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequestOrBuilder.java index 3bd74716721b..05a3aea56ef0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDatasetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequest.java index 4ed6f9b3af4e..569a42047be5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequestOrBuilder.java index f9fc639cc70d..393583eaab57 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetDeploymentResourcePoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequest.java index 0f1794ecc981..545b9ffdde12 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequestOrBuilder.java index 99eb2e743ef0..96453072b9e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequest.java index 40a92e63861a..00f57e4e5041 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequestOrBuilder.java index e85c36b64a37..52e05bfd69c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetEntityTypeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequest.java index ea75d952aa0f..c3214575424a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequestOrBuilder.java index 21ee33c07cfd..90dac82ffd14 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExampleStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequest.java index d72257deea64..0d3365c74f5e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequestOrBuilder.java index be85b3a4b189..9d6ddcbf5f38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExecutionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequest.java index e2b955bde49c..f6c48f9ddecf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequestOrBuilder.java index 7c2ab820b5cf..9ed15e56ada0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetExtensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequest.java index d17ab78d8cfd..0129ad2ae798 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequestOrBuilder.java index 71d782e9e483..edbf5fc82ed8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequest.java index 035cc8886ffc..a383c582d2a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequestOrBuilder.java index 71513ed3a6a8..99d310def023 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequest.java index 82aa97875180..d8dc3763d178 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequestOrBuilder.java index c89479d282b7..83c253258742 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureMonitorRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequest.java index 64df40b1d9a9..a9f502d8e1f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequestOrBuilder.java index b9e0d4129c50..3b4d6cb6fadc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureOnlineStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequest.java index 2fb997470d71..cd16e6013625 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequestOrBuilder.java index 63ddceae8b90..67692195384a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequest.java index 06460bebe1af..4bcf16ddf80b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequestOrBuilder.java index 4860b4379df7..927d1e982724 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequest.java index 3b4bffdd92a0..fa5bec3c5596 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequestOrBuilder.java index 505bb5a69013..6750cdef5875 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeatureViewSyncRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequest.java index f085a4257b6d..04563d83b3ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequestOrBuilder.java index e5d72424a936..2a49281c34a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetFeaturestoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequest.java index 1390aa511db6..f624f905d1cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequestOrBuilder.java index 9be29326eb2a..9d0f60501b37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetHyperparameterTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequest.java index 971131b809c8..0d8695a45a42 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequestOrBuilder.java index b16530768340..23b5740c86e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequest.java index 318ec464eb95..810e4ecf8de4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequestOrBuilder.java index 27709c0ff389..bd6440a455aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequest.java index a936a9f25d6e..5e843973203b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequestOrBuilder.java index a57e1c6d8e41..28c385edb4ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMemoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequest.java index 38abdad0d3c9..d6328d6caa46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequestOrBuilder.java index 80c1fcbc02ea..575e9682bd85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataSchemaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequest.java index dcb483f925c4..068adc61bba0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequestOrBuilder.java index c03ec3602dad..5488794d28d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetMetadataStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequest.java index e1d10e65bc20..cd306afdd44d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequestOrBuilder.java index babd04e56e46..acb20401c607 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequest.java index 23b0befab678..c1d17ffce4d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequestOrBuilder.java index 11d3b99f11f8..d9cd2b280f39 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequest.java index 739573085f15..44083f9d188c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequestOrBuilder.java index 95fc3dd4fe20..fe8530222ca7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelEvaluationSliceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequest.java index 944368625357..21679569a9b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequestOrBuilder.java index a3e87f211142..e8072cfc1ba4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitorRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequest.java index e3528366072a..5596af22680f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequestOrBuilder.java index 2593ebbeeabe..b9fedf116b52 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequest.java index 2bdf3a42a51a..84efebf51008 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequestOrBuilder.java index 7bce3b183b3c..c681bcd7dcfa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequest.java index 67435f23a186..30f618fe02fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequestOrBuilder.java index 260ebe0d4ea9..2ccfa32387fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequest.java index 744fa957a662..b981f426a1ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequestOrBuilder.java index 54de9e77d6a1..fbe4cf124f04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNasTrialDetailRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequest.java index e6081c4dc49f..68159cfef997 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequestOrBuilder.java index 4baa475e58c7..6f45961e84a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookExecutionJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequest.java index e6dab5daa0e4..f0998cdd5b88 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequestOrBuilder.java index 80967494bb48..b471f3e47104 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequest.java index 7281c1025fc3..a3c0342cde48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequestOrBuilder.java index 7e425c80b35b..75fd962667d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetNotebookRuntimeTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequest.java index 3b1707b662e4..62e1919a7d22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequestOrBuilder.java index 7d63c3b48009..fa87259a71ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPersistentResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequest.java index 666dceecd170..adddd9f92fe1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequestOrBuilder.java index 0f07f51e4d64..2704da1b7f23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPipelineJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequest.java index 3c0ec0e7f0b3..98153ad50753 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequestOrBuilder.java index 6342d418ecbb..863c102f2ebb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetPublisherModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequest.java index be753539caf8..b0793575ab57 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequestOrBuilder.java index 1e6fcd5c07d8..95cc742062bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagCorpusRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequest.java index 35ad48180587..89843c7047f1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequestOrBuilder.java index 74565630328c..cbabae6f482f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagEngineConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequest.java index 1605038832b8..d4ffa692ee0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequestOrBuilder.java index 3b9326319ba1..b6d9283f0c6f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetRagFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequest.java index 7f11850abe66..400de48cddcc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequestOrBuilder.java index 79559d6f8645..c52c207b623f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequest.java index 509481db6d18..8561a74f0aa0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequestOrBuilder.java index 1d5c690acccb..87465a3e422b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequest.java index 003cf314cf06..743c548ce245 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequestOrBuilder.java index d49718d3ff4f..de023b04a5f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSessionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequest.java index b68dad8cd7bd..1cbd4dbe7226 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequestOrBuilder.java index d8e0666b4080..8f93dbbc89f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetSpecialistPoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequest.java index d9d6fdf4d4d6..b2f98d7084d5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequestOrBuilder.java index 8e27240ce6c1..9f2d3b789b1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetStudyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequest.java index 72c2c6930940..ceedbe8410b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequestOrBuilder.java index ab16172f21bf..61750eda2eba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardExperimentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequest.java index 7240c8689edb..f7d43357e2f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequestOrBuilder.java index 677c30799ff3..f1ca553ea156 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequest.java index c03f5331f97a..29e16846c0eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequestOrBuilder.java index e149754959f6..cd487be488a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardRunRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequest.java index bcfb65e072fc..5cabe60f0c35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequestOrBuilder.java index 8ce2593d6391..44424b91f0d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequest.java index b98ac6305f41..f47279f3c984 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequestOrBuilder.java index 9389429199cb..fb3ddc155441 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrainingPipelineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequest.java index 68bbdd3ca5c4..abd74717ba6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequestOrBuilder.java index 6f45cc84ce72..7f61e829334e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTrialRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequest.java index b177b10acef3..5c3bd090fa00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequestOrBuilder.java index d04ee1ea31bf..7ffb74aa1fa0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GetTuningJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSource.java index 96ef3904a8c2..4d1c4a4695fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSourceOrBuilder.java index 17dfdee8b284..f961ef833f37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleDriveSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMaps.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMaps.java index 19ca398b3058..5d8cfdea0051 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMaps.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMaps.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMapsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMapsOrBuilder.java index 9f35d84c1700..04d3ef69e82a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMapsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleMapsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrieval.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrieval.java index 09e979a0ed78..c310097848af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrieval.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrieval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrievalOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrievalOrBuilder.java index c696ccdb52a4..a750a15b81ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrievalOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GoogleSearchRetrievalOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInput.java index b32e65d418c7..9634a67ee779 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInputOrBuilder.java index 7ae5c027ad58..12386f4e3092 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstance.java index 7d13b8dc7fb6..e918b418271d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstanceOrBuilder.java index 1d8c3a78a0dd..0bf40d925b24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResult.java index 2fcbe564a671..a9648390ece7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResultOrBuilder.java index bc979f628d3d..5fd231b612bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpec.java index ea34ac329de1..52406ec806d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpecOrBuilder.java index fe2cfcfbbe77..5d7622ddd0b1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundednessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunk.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunk.java index af556d40f77a..4ceb69806da5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunk.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunk.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunkOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunkOrBuilder.java index b61b428216b7..9e7d1221fb97 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunkOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingChunkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadata.java index 8b88436b6841..33a06383cef3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadataOrBuilder.java index 8c93ae8398e7..4bc1c355e0af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupport.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupport.java index abbf98bda315..18a1c9f170b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupport.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupportOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupportOrBuilder.java index 47c1c57319d9..917620b9ef1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupportOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/GroundingSupportOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HarmCategory.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HarmCategory.java index 75dcef435a34..1de55839ed7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HarmCategory.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HarmCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HttpElementLocation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HttpElementLocation.java index 88c2b32e6967..b2996533a229 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HttpElementLocation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HttpElementLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJob.java index d65924bfecf2..28c5ef4036df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobName.java index d3c93c71d028..09a4fe9178e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobOrBuilder.java index 785d582a33a5..57d490a30da2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobProto.java index db9bb80bf3e4..3d952b68c9d4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/HyperparameterTuningJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcher.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcher.java index 89cabf775c2c..c42e2698ae45 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcher.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcherOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcherOrBuilder.java index 5c6cc8b64946..b34069140e36 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcherOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IdMatcherOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfig.java index febf4fe29bea..79042a2fadf2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfigOrBuilder.java index cfcda988f08d..8ac4e1bc2081 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImageConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfig.java index a3c33a537550..10f213cfec4c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfigOrBuilder.java index 69561f5f1ccb..29c714ed0dbe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadata.java index f75ee7b6b765..910cd17d57c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadataOrBuilder.java index 9a3edb099804..14d567c4afa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequest.java index 049132b67db9..ad8122735a91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequestOrBuilder.java index d1b89559f15e..1b7429d3d9f6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponse.java index 268709d90cf5..e8b6339ede92 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponseOrBuilder.java index a588fcc15fae..f75d239716c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadata.java index 20e8ed2a9aa7..d60d33ad00f7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadataOrBuilder.java index 521fb5d7f2cf..0921835b0088 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequest.java index d3d13cb0f72a..ce0da8f69a66 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequestOrBuilder.java index aeace4ffa21d..02bfce811a3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportExtensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadata.java index 71faf3d32eef..2e316caa64b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadataOrBuilder.java index 65a5835a726f..c3d2fca103dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequest.java index d1de84cea212..dc01b8d5fdaa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequestOrBuilder.java index 6c6af35b4cd1..8039318c91fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponse.java index f6c1f0b60d25..63956b1bda1f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponseOrBuilder.java index bd45df81ad98..f7536ced6c3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadata.java index 1e3ffbd61e9a..a967022e17c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadataOrBuilder.java index 2ed648c0d61b..534b9abce08d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequest.java index f3169fa550ba..cf7a59351c81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequestOrBuilder.java index fc9faffeffb1..54b8d0696c44 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequest.java index 013abfe9fbaa..329280d208ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequestOrBuilder.java index 49f7a020432d..7c317ef585fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportModelEvaluationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfig.java index eeeac8751148..dc284639d624 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -523,7 +523,7 @@ public com.google.cloud.aiplatform.v1beta1.SharePointSources getSharePointSource * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_gcs_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=689 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=710 * @return Whether the partialFailureGcsSink field is set. */ @java.lang.Override @@ -545,7 +545,7 @@ public boolean hasPartialFailureGcsSink() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_gcs_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=689 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=710 * @return The partialFailureGcsSink. */ @java.lang.Override @@ -599,7 +599,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsDestination getPartialFailureGcsSi * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_bigquery_sink - * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=698 + * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=719 * @return Whether the partialFailureBigquerySink field is set. */ @java.lang.Override @@ -626,7 +626,7 @@ public boolean hasPartialFailureBigquerySink() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_bigquery_sink - * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=698 + * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=719 * @return The partialFailureBigquerySink. */ @java.lang.Override @@ -808,7 +808,7 @@ public com.google.cloud.aiplatform.v1beta1.BigQueryDestination getImportResultBi * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=717 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=738 * @return Whether the ragFileChunkingConfig field is set. */ @java.lang.Override @@ -829,7 +829,7 @@ public boolean hasRagFileChunkingConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=717 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=738 * @return The ragFileChunkingConfig. */ @java.lang.Override @@ -3239,7 +3239,7 @@ public Builder clearSharePointSources() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_gcs_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=689 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=710 * @return Whether the partialFailureGcsSink field is set. */ @java.lang.Override @@ -3261,7 +3261,7 @@ public boolean hasPartialFailureGcsSink() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_gcs_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=689 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=710 * @return The partialFailureGcsSink. */ @java.lang.Override @@ -3508,7 +3508,7 @@ public Builder clearPartialFailureGcsSink() { * * @deprecated * google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_bigquery_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=698 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=719 * @return Whether the partialFailureBigquerySink field is set. */ @java.lang.Override @@ -3536,7 +3536,7 @@ public boolean hasPartialFailureBigquerySink() { * * @deprecated * google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_bigquery_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=698 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=719 * @return The partialFailureBigquerySink. */ @java.lang.Override @@ -4314,7 +4314,7 @@ public Builder clearImportResultBigquerySink() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=717 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=738 * @return Whether the ragFileChunkingConfig field is set. */ @java.lang.Deprecated @@ -4334,7 +4334,7 @@ public boolean hasRagFileChunkingConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=717 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=738 * @return The ragFileChunkingConfig. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfigOrBuilder.java index 52b99f4b57a1..cb43767328f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -234,7 +234,7 @@ public interface ImportRagFilesConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_gcs_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=689 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=710 * @return Whether the partialFailureGcsSink field is set. */ @java.lang.Deprecated @@ -253,7 +253,7 @@ public interface ImportRagFilesConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_gcs_sink is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=689 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=710 * @return The partialFailureGcsSink. */ @java.lang.Deprecated @@ -292,7 +292,7 @@ public interface ImportRagFilesConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_bigquery_sink - * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=698 + * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=719 * @return Whether the partialFailureBigquerySink field is set. */ @java.lang.Deprecated @@ -316,7 +316,7 @@ public interface ImportRagFilesConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.partial_failure_bigquery_sink - * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=698 + * is deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=719 * @return The partialFailureBigquerySink. */ @java.lang.Deprecated @@ -448,7 +448,7 @@ public interface ImportRagFilesConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=717 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=738 * @return Whether the ragFileChunkingConfig field is set. */ @java.lang.Deprecated @@ -466,7 +466,7 @@ public interface ImportRagFilesConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=717 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=738 * @return The ragFileChunkingConfig. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadata.java index 4828ec268b79..a000f3c30691 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadataOrBuilder.java index 259fec4b1e91..250a7dff400b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequest.java index 0d0ea7ea4a32..83f64d5c69fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequestOrBuilder.java index 863888d8b37c..6ebd40fd3ada 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponse.java index c49bd665d1e4..6e82c2ec60ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponseOrBuilder.java index 9350f0cecc42..988539d48c7b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ImportRagFilesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Index.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Index.java index 6280f1a5e8b4..5ee200d72785 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Index.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Index.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapoint.java index 6747dfd4b04d..bfaa89d45125 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapointOrBuilder.java index 4d6e62859c05..2b15ae8d8546 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexDatapointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpoint.java index 286bdc485850..c37e9f81b3d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointName.java index cdaa88b4098f..0342ed8e8fe5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointOrBuilder.java index 016676eb80fe..4173cfb23c69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointProto.java index bcf3ef8c076c..e9a7c8f1b67c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceProto.java index 9bb0437bf687..ed8ef517d24d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexEndpointServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexName.java index 717f176a9fcf..60507fae96e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexOrBuilder.java index 56d514a3bea6..223e12906676 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpoints.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpoints.java index 1c1dc89b43dc..38c5d83cfb00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpoints.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpointsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpointsOrBuilder.java index 675df3cda048..7c5c9a319525 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpointsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexPrivateEndpointsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexProto.java index 66fab45c9747..1a24b8a02e05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceProto.java index 6e6dfedf3731..a9945bf937ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStats.java index fffd22a1127e..f26cfa0c1cdb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStatsOrBuilder.java index 27f545c14595..c2b49a29d89c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IndexStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfig.java index f2a71fd113ab..d877bf22d789 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfigOrBuilder.java index 42dcd8f97ae9..c209daf3a99d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/InputDataConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64Array.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64Array.java index 8100fbecc38f..63d8f5c2abc1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64Array.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64Array.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64ArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64ArrayOrBuilder.java index 1668aab333f5..c56de1707111 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64ArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Int64ArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttribution.java index cea2a0b4b6c7..68a6e7abfbb9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttributionOrBuilder.java index bfd6b16a6547..5e91150ae912 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IntegratedGradientsAttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IoProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IoProto.java index 6054eb652896..828c99ec0f63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IoProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/IoProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSource.java index 5bd4aa07744e..7500a1324b08 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSourceOrBuilder.java index 7472968e31c2..4280e4f1db67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JiraSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceProto.java index f3127bbdc1c4..13d4931db30b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobState.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobState.java index 1942fd6c4ed4..e6855d9489b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobState.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobStateProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobStateProto.java index c057fd991462..fad40e6c1fb9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobStateProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/JobStateProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReference.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReference.java index b5c262e4f33a..50fbd0a4cd8c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReference.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReferenceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReferenceOrBuilder.java index 30f9432659ea..eb93c34d5635 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReferenceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LargeModelReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraph.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraph.java index 3487bbe60801..a9f1738b37ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraph.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphOrBuilder.java index f2d97c82af91..63cc7e337c4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphProto.java index 9ab8ddb21880..903728258cdc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LineageSubgraphProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequest.java index a32852b9702f..5995385e15e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequestOrBuilder.java index 82b30dbbaa7d..0b0ef8709bae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponse.java index 3a5fb2f22239..ef7476832a32 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponseOrBuilder.java index 4032ad295367..e408859f5ad2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListAnnotationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequest.java index 646423d9e21e..9f2dc5a40824 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequestOrBuilder.java index ed6163477389..5f31e77d03e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponse.java index 263ffb9b4786..6805e1996fd6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponseOrBuilder.java index 2c8d8579f297..3482c9805ba8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequest.java index cb21eca76801..494413c9a690 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequestOrBuilder.java index 2898c35d507f..4862d8743c72 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponse.java index ed778789ecbe..6cba8c8932a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponseOrBuilder.java index c3c4a19cecd2..39923803dd00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListBatchPredictionJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequest.java index b585bcc984bc..13bfd3a67b86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequestOrBuilder.java index 5c0341066c9c..6406eb58bbb0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponse.java index f6addb0cc48d..e0449467ba5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponseOrBuilder.java index 74c9a82ce246..e1dcf4d43dad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCachedContentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequest.java index 9e2b5cb97918..22a14031e844 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequestOrBuilder.java index a6b9bf6a2be4..236202ed2fe2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponse.java index dc830faf85a5..efc18a27c16b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponseOrBuilder.java index cdf60b400acc..29b6fdbe840e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListContextsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequest.java index 806149353b08..0c1d53f15366 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequestOrBuilder.java index aa81aa5ad68a..6842e723ca55 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponse.java index 13193a6bdf08..138a8fa0d24f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponseOrBuilder.java index 0eb2df0705ae..31bd873c1eae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListCustomJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequest.java index ceeb607992ec..f6340d37cc27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequestOrBuilder.java index 5a1bc91ed73d..17bd26412480 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponse.java index fd95141084f8..748ece3fcaa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponseOrBuilder.java index d43414f189e5..1555e92ab582 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataItemsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequest.java index 895529af01e2..744f1de9b2cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequestOrBuilder.java index d62990737238..68e565e46a72 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponse.java index 402d55d8857d..bef945592245 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponseOrBuilder.java index 341c5c12e538..85d42bbd4a47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDataLabelingJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequest.java index 4ea8d06961d5..fc77d916cc26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequestOrBuilder.java index 16f7404e043c..bb7a69afbeea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponse.java index 92e6044df49b..99560da7fa8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponseOrBuilder.java index a035926dacf4..b7b0833ddc2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequest.java index 8cfb9122fd56..06b836ffabec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequestOrBuilder.java index e160f3fe69c7..3772642a988b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponse.java index 7aaf3883f283..3d7def127027 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponseOrBuilder.java index 6209b1d92d8a..7bd9a9c31fe0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDatasetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequest.java index 7792fdbde50f..311145f2c5bf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequestOrBuilder.java index a10fecce47d3..1e8ac24f7d5b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponse.java index 993c36b24fc4..197275a225e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponseOrBuilder.java index 5fe3092bfa2f..a2850908b2ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListDeploymentResourcePoolsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequest.java index 270854061ca1..f19320d7f13c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequestOrBuilder.java index cd2af24dec85..c2e08d2ebea6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponse.java index 29b56263b9ef..3327e6e4453f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponseOrBuilder.java index ad451a31e5a5..ec2406cb89d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEndpointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequest.java index 07db26ccd1af..9c968685c786 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequestOrBuilder.java index 8448a000bb59..fbe249ace033 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponse.java index a53d10741d21..56458e096474 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponseOrBuilder.java index 5a745a280266..cd31a628333c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEntityTypesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequest.java index 06af55bb07d5..1441f172ea21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequestOrBuilder.java index 7013e0804b1a..2f78062ab629 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponse.java index 8cd0dc711b99..b557ce2e1b1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponseOrBuilder.java index f4ac3596a740..db06c693ad3e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequest.java index 670e5831c2b3..8b0db95b2a10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequestOrBuilder.java index 26335b218422..e4f284ae0096 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponse.java index 5104129b39bc..00e7e15ef587 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponseOrBuilder.java index b970dccd426c..56a3a93223d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExampleStoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequest.java index 485a990f91b5..f798be1356b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequestOrBuilder.java index f2a456d37f9a..a20115445c9f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponse.java index 341be567a3c1..6eabfcaa1c37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponseOrBuilder.java index 713f06989a50..64d9a3ac87dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExecutionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequest.java index a882fe6489bf..e36af3709cfb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequestOrBuilder.java index e4511e68aa7d..d7079c0544e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponse.java index a92448a6a838..083445f8f76e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponseOrBuilder.java index a41a6fc6aca1..f7dd2eb68a28 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListExtensionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequest.java index b2d9d50d8ff6..007655186c93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequestOrBuilder.java index 443495711af0..46dc5a5eef67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponse.java index 27b75f5dd904..00dd9ad940ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponseOrBuilder.java index 65612d8c8752..42002f2d2e1e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureGroupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequest.java index 685716760e37..c8f93cba8b6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequestOrBuilder.java index 91a71f7911a1..6fb5406abcba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponse.java index 9ea471c3550b..deab22d72e9a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponseOrBuilder.java index 0445ad7da0dd..dfd9af90f0cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequest.java index 30e1d554da1f..aa642af9ae0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequestOrBuilder.java index 0b3d17297ea7..41afc4a6113f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponse.java index f653a12ee78b..b49cb2a74f96 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponseOrBuilder.java index 22d9c076065b..e6b172e97fa8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureMonitorsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequest.java index 5352b3dbeff0..387c1f85f015 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequestOrBuilder.java index 2c83ae15fded..6c83fd884a24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponse.java index fb1130609f80..bb163719022e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponseOrBuilder.java index b9b541e5051d..ea63478fad92 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureOnlineStoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequest.java index 845248e62b8d..a5405d7e06cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequestOrBuilder.java index 39d851108554..8ddfe2a69430 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponse.java index 30b890df2cc3..58aaa72c9d2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponseOrBuilder.java index bd89422697d8..40084762112f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewSyncsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequest.java index f5e19e58623f..aee49df2a6c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequestOrBuilder.java index 92f1699c0bda..b758d6602aff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponse.java index 905fc7413d05..399166b0a398 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponseOrBuilder.java index aab52d3a4e5e..48f84872fcfe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeatureViewsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequest.java index cc0ce6a5a607..3ad856122b89 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequestOrBuilder.java index c6b9781f0e31..098ae16c0f00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponse.java index e3c9ed9747e7..55c67cb6daac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponseOrBuilder.java index e3c00c502a07..25d00f334e6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequest.java index dd6f5a6fef55..905cc5f35b16 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequestOrBuilder.java index c6703eefe1e9..989a4c71b6c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponse.java index ffdc00641750..c69016595f6e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponseOrBuilder.java index 41a9e0f3b459..7535ecae488f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListFeaturestoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequest.java index 8e8d3d1aa147..0fdd15a04fe4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequestOrBuilder.java index 9b46bd401e6f..e35036eba3bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponse.java index 9ceebdc121c4..96157fb11b44 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponseOrBuilder.java index 1bea2d371708..5bbfe20039c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListHyperparameterTuningJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequest.java index f2033d60a999..b588f51c08c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequestOrBuilder.java index 7230a1c83f03..b6b4ae8fdd7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponse.java index 9ba1f3f4f67b..653ede508cd3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponseOrBuilder.java index c5c43a48e4f8..62b823ec8f97 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexEndpointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequest.java index 1e02eb4b7811..867c4741eb6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequestOrBuilder.java index 23d2944ae5fa..052c22469517 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponse.java index a6ae137f5d0c..3901e906ef8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponseOrBuilder.java index cfa835411980..1890489f7a6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListIndexesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequest.java index 32da06daec1e..9fa9d77388fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequestOrBuilder.java index bfffdc4f5139..4db28205f92f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponse.java index 5f23a79d570c..51e1474af107 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponseOrBuilder.java index f6fe57c4a080..e529df75abce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMemoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequest.java index 02ad7b56290e..81d685ae8a87 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequestOrBuilder.java index 16e08d7cfbb5..4dc83308bb1b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponse.java index b641082d7187..207c3e159193 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponseOrBuilder.java index 17d118485488..821bfee6ea03 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataSchemasResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequest.java index d8ddaf5caec2..22d3bdcee7ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequestOrBuilder.java index 561a453e0397..d5ac36ebe40f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponse.java index 1057ecacf31d..da50fc2ca524 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponseOrBuilder.java index 51df35599e8c..0b60b9401875 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListMetadataStoresResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequest.java index ce350bf2c1a5..8f575df0c03a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java index d4a54b5df0e8..cbbf9d157a11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponse.java index d90737a955d4..48ad841050cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java index 97ee89ed6727..5a2d004fae0b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelDeploymentMonitoringJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequest.java index 06873af322f4..19d61ee683be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequestOrBuilder.java index c496bb4b3f83..afe0c2e56496 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponse.java index 6c64434642e9..9c102d325683 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponseOrBuilder.java index bdb2cb3cc50f..665aac321da8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationSlicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequest.java index 452501b3ed8f..a1e9a65ff671 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequestOrBuilder.java index f51977bb83fa..fba313d6aba4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponse.java index 52bf67e0ed19..1cc17297b7dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponseOrBuilder.java index 202c55139f63..87b3e2dbe6c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelEvaluationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequest.java index 3a9d36f5dece..1265a7c627b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequestOrBuilder.java index 2bbb3610e8da..ed91420c09ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponse.java index 9fe1c391205f..03d2e2dd2519 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponseOrBuilder.java index 9ea29c3fc130..bf3258469da9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitoringJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequest.java index f833b9775192..e16f6a46fb54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequestOrBuilder.java index 005cfbd0c802..e5fd4b067d8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponse.java index cde2c4e13c9e..f7ad48a4f3f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponseOrBuilder.java index 8f0490763f3d..a31bfc23d67c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelMonitorsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequest.java index d761379cd367..36ddf50e65e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequestOrBuilder.java index 488877c7cede..f159f6bf72b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponse.java index 6d2556a11782..cfc258904a11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponseOrBuilder.java index 6f2e776549a0..f93035e6effd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionCheckpointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequest.java index 1b38b73465d8..385240ff750b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequestOrBuilder.java index e24d6bbf834d..becbff8285a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponse.java index d0d960450259..f4bde84db1ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponseOrBuilder.java index c7d0fe24cd13..6b53f07a6080 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequest.java index 5b7917f6434c..41edadb8708a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequestOrBuilder.java index c587dfd86d40..2204f3bcd88c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponse.java index 91443894954f..ea2975b0bcc8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponseOrBuilder.java index 8c03b5183d58..0618461cd802 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequest.java index 12a5578e1e7f..53ea2bf9411f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequestOrBuilder.java index eedc6c6c62b9..105029933b8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponse.java index fa851b1fc426..d7d1e59d41ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponseOrBuilder.java index 65011a3164aa..aa6bb8699a75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequest.java index 2ebbf6e432b7..388d1a8553e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequestOrBuilder.java index b459b8de1572..4bd435fc24f7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponse.java index 2ea38e36180c..2ca98ddb096f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponseOrBuilder.java index d84764523e8a..f08fd81d7907 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNasTrialDetailsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequest.java index d0de258cff1c..f5f584679d38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequestOrBuilder.java index b88e1d82fe63..85e5abe6d6b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponse.java index 8d08dc6fe330..85e6414bf907 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponseOrBuilder.java index 83a67fed0855..ab9f15c69b47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookExecutionJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequest.java index ccf105bbb36c..4bd48e80e27b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequestOrBuilder.java index 8db7b6e4bd60..4e4e779c99a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponse.java index cc346a53188b..deb613b12d85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponseOrBuilder.java index 47a5c825f19a..a7b4e27e92c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimeTemplatesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequest.java index b2156be520ec..f018a99719cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequestOrBuilder.java index 55a713728c98..9f371fbc849a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponse.java index e2fe2b0331b2..16c70e61960b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponseOrBuilder.java index 4a19ee2ab67f..05d556eea0cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListNotebookRuntimesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequest.java index 947fb945d441..1cdb0bea3060 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequestOrBuilder.java index bb37ec97898c..3ea7a9e10c44 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponse.java index f488f40f8d5f..b68e1317e66d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponseOrBuilder.java index c53211d2ded9..5b82af2c3d00 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListOptimalTrialsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequest.java index cfc0e48b4e54..662db1c1aae1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequestOrBuilder.java index 5de35080a5af..1b0f5534beac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponse.java index c03d31946b0d..4b01620027c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponseOrBuilder.java index 3616db1c999b..f18a51078397 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPersistentResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequest.java index 77ebd93f53d3..8aa482227262 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequestOrBuilder.java index 9936c6e17392..a019e4c78c75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponse.java index 2d513cde95f7..ad17fa4b521a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponseOrBuilder.java index 361f21324cdc..910c84bf1d98 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPipelineJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequest.java index 9ea2197c7102..3828735f277b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequestOrBuilder.java index 7281ddde7617..cd58467e8ffc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponse.java index 0175c7c31eca..e3100863723a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponseOrBuilder.java index 84c63590ab09..9be6b8c3431b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListPublisherModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequest.java index 4c7994ed3a2c..8b633a6243fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequestOrBuilder.java index 4297338a84e7..007d23ade013 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponse.java index 9a804ba1b39d..14e0980195de 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponseOrBuilder.java index 090f697c3d01..0d6069c79ccc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagCorporaResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequest.java index 173c0a0c6e71..570a7585e101 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequestOrBuilder.java index c83d551ae6e5..7b8d59ed43ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponse.java index 4a5a8a39417c..edaad26702b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponseOrBuilder.java index 2e99ece2eb8a..746cd88e37b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListRagFilesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequest.java index a462cf3de4d5..c574791a8295 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequestOrBuilder.java index e03b6b92f747..07ade819714b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponse.java index f92672de990b..46841d7f004e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponseOrBuilder.java index e6000e9f6144..55ed165ac1bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListReasoningEnginesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequest.java index 2ceccb1f7b2d..37818118dcfa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequestOrBuilder.java index 569f35183950..9ac6aaf66886 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponse.java index cc1f82b1ab91..34f1a8e2f82b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponseOrBuilder.java index c858ae337dc1..b1744d781d22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSavedQueriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequest.java index cc5732139b89..3dcdee42a7be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequestOrBuilder.java index 509a7e86e31a..4ef792c6b8ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponse.java index d783b7050548..14d888cd18fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponseOrBuilder.java index d8c841ad7e50..0fb647fe3078 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSchedulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequest.java index f1d46ccb7cfb..12a229d64c0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequestOrBuilder.java index a0084821fb43..1ddc82c045fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponse.java index 2cced192df45..52a0beef1fe8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponseOrBuilder.java index c2647acec887..38f3485b8258 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSessionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequest.java index 26c47e35d69b..d49201de6a1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequestOrBuilder.java index 11123538db27..90710cc27b45 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponse.java index 0586b1c24176..304da9db0c12 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponseOrBuilder.java index 3671ee5f4bd7..c3029305395d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListSpecialistPoolsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequest.java index 4af413ab9b7b..2291ca6e8c7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequestOrBuilder.java index 0e590a8e0717..5694944672bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponse.java index 47f3f47e5726..f0a20efd8e45 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponseOrBuilder.java index 972c99756b80..698eeef6d063 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListStudiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequest.java index 544f18d5c399..b89d8bfd8849 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequestOrBuilder.java index 14589bba66af..bb999c1fbd6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponse.java index 1e2a9a4bec3d..df3a0195aa1f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponseOrBuilder.java index 90ea707670a4..75033f1d1a45 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardExperimentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequest.java index 8aeba70242db..c6b39cc4a25a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequestOrBuilder.java index 8c06023cba54..3e3900a68c6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponse.java index 5ef6ca62624d..b686c706a5e7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponseOrBuilder.java index 38bd4436a1d9..4cb3d1998c9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardRunsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequest.java index f4540a65c867..e4d7dcab9886 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequestOrBuilder.java index 41fecb85490d..455e6eb0f957 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponse.java index 5ade1b65f7be..5d7267f80411 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponseOrBuilder.java index 2b6004369350..1adc169317b1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardTimeSeriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequest.java index 57184bf9baf3..353ad32788bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequestOrBuilder.java index 360f75e3a696..f16124e00dbe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponse.java index 2732ddf2713c..3e2ab649d9b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponseOrBuilder.java index c019d7d60360..bf952cfbd1a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTensorboardsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequest.java index 4151f69e0853..fd740d48d2e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequestOrBuilder.java index e3c333a5b81c..1ae4b4ea84bf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponse.java index dc466698cc65..3d892cc3a0b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponseOrBuilder.java index 8eb4e61300bf..74fdfc93f9d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrainingPipelinesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequest.java index 3ae58ead96ce..c22f5e696af2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequestOrBuilder.java index 90ccb6a19754..e4bb53d95448 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponse.java index 34228998d213..2d7ac893e27c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponseOrBuilder.java index e0e1f498b03f..ad494d91bbe3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTrialsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequest.java index 1f175d146193..c48d5eb49665 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequestOrBuilder.java index 90d7e0a77298..b649c84d1728 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponse.java index f99177b30090..2904011e4187 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponseOrBuilder.java index 1c161290feac..22951f996858 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ListTuningJobsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceProto.java index 2e7ca7b61107..4bab2537438b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LlmUtilityServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LocationName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LocationName.java index ba4f97ed4b72..871ec0fd7191 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LocationName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResult.java index 452c2b6d919c..bafa5c9b9304 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResultOrBuilder.java index 010300d96970..6872d5614eb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LogprobsResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequest.java index bace75e91db2..34178965dd14 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequestOrBuilder.java index 1db40f5b22b1..0d4b50467edd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LookupStudyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LustreMount.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LustreMount.java new file mode 100644 index 000000000000..7cdd704b5fc1 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LustreMount.java @@ -0,0 +1,1208 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/machine_resources.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +/** + * + * + *
+ * Represents a mount configuration for Lustre file system.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.LustreMount} + */ +public final class LustreMount extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.LustreMount) + LustreMountOrBuilder { + private static final long serialVersionUID = 0L; + + // Use LustreMount.newBuilder() to construct. + private LustreMount(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private LustreMount() { + instanceIp_ = ""; + volumeHandle_ = ""; + filesystem_ = ""; + mountPoint_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new LustreMount(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_LustreMount_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_LustreMount_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.LustreMount.class, + com.google.cloud.aiplatform.v1beta1.LustreMount.Builder.class); + } + + public static final int INSTANCE_IP_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object instanceIp_ = ""; + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The instanceIp. + */ + @java.lang.Override + public java.lang.String getInstanceIp() { + java.lang.Object ref = instanceIp_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceIp_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for instanceIp. + */ + @java.lang.Override + public com.google.protobuf.ByteString getInstanceIpBytes() { + java.lang.Object ref = instanceIp_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceIp_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VOLUME_HANDLE_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object volumeHandle_ = ""; + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The volumeHandle. + */ + @java.lang.Override + public java.lang.String getVolumeHandle() { + java.lang.Object ref = volumeHandle_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + volumeHandle_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for volumeHandle. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVolumeHandleBytes() { + java.lang.Object ref = volumeHandle_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + volumeHandle_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int FILESYSTEM_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object filesystem_ = ""; + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The filesystem. + */ + @java.lang.Override + public java.lang.String getFilesystem() { + java.lang.Object ref = filesystem_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + filesystem_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for filesystem. + */ + @java.lang.Override + public com.google.protobuf.ByteString getFilesystemBytes() { + java.lang.Object ref = filesystem_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + filesystem_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int MOUNT_POINT_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object mountPoint_ = ""; + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The mountPoint. + */ + @java.lang.Override + public java.lang.String getMountPoint() { + java.lang.Object ref = mountPoint_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mountPoint_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for mountPoint. + */ + @java.lang.Override + public com.google.protobuf.ByteString getMountPointBytes() { + java.lang.Object ref = mountPoint_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mountPoint_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instanceIp_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, instanceIp_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(volumeHandle_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, volumeHandle_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filesystem_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, filesystem_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mountPoint_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, mountPoint_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instanceIp_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, instanceIp_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(volumeHandle_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, volumeHandle_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filesystem_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, filesystem_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mountPoint_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, mountPoint_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1beta1.LustreMount)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.LustreMount other = + (com.google.cloud.aiplatform.v1beta1.LustreMount) obj; + + if (!getInstanceIp().equals(other.getInstanceIp())) return false; + if (!getVolumeHandle().equals(other.getVolumeHandle())) return false; + if (!getFilesystem().equals(other.getFilesystem())) return false; + if (!getMountPoint().equals(other.getMountPoint())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + INSTANCE_IP_FIELD_NUMBER; + hash = (53 * hash) + getInstanceIp().hashCode(); + hash = (37 * hash) + VOLUME_HANDLE_FIELD_NUMBER; + hash = (53 * hash) + getVolumeHandle().hashCode(); + hash = (37 * hash) + FILESYSTEM_FIELD_NUMBER; + hash = (53 * hash) + getFilesystem().hashCode(); + hash = (37 * hash) + MOUNT_POINT_FIELD_NUMBER; + hash = (53 * hash) + getMountPoint().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1beta1.LustreMount prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Represents a mount configuration for Lustre file system.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.LustreMount} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.LustreMount) + com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_LustreMount_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_LustreMount_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.LustreMount.class, + com.google.cloud.aiplatform.v1beta1.LustreMount.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1beta1.LustreMount.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + instanceIp_ = ""; + volumeHandle_ = ""; + filesystem_ = ""; + mountPoint_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.MachineResourcesProto + .internal_static_google_cloud_aiplatform_v1beta1_LustreMount_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.LustreMount getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.LustreMount.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.LustreMount build() { + com.google.cloud.aiplatform.v1beta1.LustreMount result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.LustreMount buildPartial() { + com.google.cloud.aiplatform.v1beta1.LustreMount result = + new com.google.cloud.aiplatform.v1beta1.LustreMount(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.LustreMount result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.instanceIp_ = instanceIp_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.volumeHandle_ = volumeHandle_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.filesystem_ = filesystem_; + } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.mountPoint_ = mountPoint_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1beta1.LustreMount) { + return mergeFrom((com.google.cloud.aiplatform.v1beta1.LustreMount) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.LustreMount other) { + if (other == com.google.cloud.aiplatform.v1beta1.LustreMount.getDefaultInstance()) + return this; + if (!other.getInstanceIp().isEmpty()) { + instanceIp_ = other.instanceIp_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.getVolumeHandle().isEmpty()) { + volumeHandle_ = other.volumeHandle_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getFilesystem().isEmpty()) { + filesystem_ = other.filesystem_; + bitField0_ |= 0x00000004; + onChanged(); + } + if (!other.getMountPoint().isEmpty()) { + mountPoint_ = other.mountPoint_; + bitField0_ |= 0x00000008; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + instanceIp_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + volumeHandle_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + filesystem_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 34: + { + mountPoint_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 34 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object instanceIp_ = ""; + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The instanceIp. + */ + public java.lang.String getInstanceIp() { + java.lang.Object ref = instanceIp_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceIp_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for instanceIp. + */ + public com.google.protobuf.ByteString getInstanceIpBytes() { + java.lang.Object ref = instanceIp_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceIp_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The instanceIp to set. + * @return This builder for chaining. + */ + public Builder setInstanceIp(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + instanceIp_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearInstanceIp() { + instanceIp_ = getDefaultInstance().getInstanceIp(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. IP address of the Lustre instance.
+     * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for instanceIp to set. + * @return This builder for chaining. + */ + public Builder setInstanceIpBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + instanceIp_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.lang.Object volumeHandle_ = ""; + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The volumeHandle. + */ + public java.lang.String getVolumeHandle() { + java.lang.Object ref = volumeHandle_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + volumeHandle_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for volumeHandle. + */ + public com.google.protobuf.ByteString getVolumeHandleBytes() { + java.lang.Object ref = volumeHandle_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + volumeHandle_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The volumeHandle to set. + * @return This builder for chaining. + */ + public Builder setVolumeHandle(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + volumeHandle_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearVolumeHandle() { + volumeHandle_ = getDefaultInstance().getVolumeHandle(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The unique identifier of the Lustre volume.
+     * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for volumeHandle to set. + * @return This builder for chaining. + */ + public Builder setVolumeHandleBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + volumeHandle_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object filesystem_ = ""; + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The filesystem. + */ + public java.lang.String getFilesystem() { + java.lang.Object ref = filesystem_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + filesystem_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for filesystem. + */ + public com.google.protobuf.ByteString getFilesystemBytes() { + java.lang.Object ref = filesystem_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + filesystem_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The filesystem to set. + * @return This builder for chaining. + */ + public Builder setFilesystem(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + filesystem_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearFilesystem() { + filesystem_ = getDefaultInstance().getFilesystem(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the Lustre filesystem.
+     * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for filesystem to set. + * @return This builder for chaining. + */ + public Builder setFilesystemBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + filesystem_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + private java.lang.Object mountPoint_ = ""; + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The mountPoint. + */ + public java.lang.String getMountPoint() { + java.lang.Object ref = mountPoint_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mountPoint_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for mountPoint. + */ + public com.google.protobuf.ByteString getMountPointBytes() { + java.lang.Object ref = mountPoint_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mountPoint_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The mountPoint to set. + * @return This builder for chaining. + */ + public Builder setMountPoint(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + mountPoint_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearMountPoint() { + mountPoint_ = getDefaultInstance().getMountPoint(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. Destination mount path. The Lustre file system will be mounted
+     * for the user under /mnt/lustre/<mount_point>
+     * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for mountPoint to set. + * @return This builder for chaining. + */ + public Builder setMountPointBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + mountPoint_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.LustreMount) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.LustreMount) + private static final com.google.cloud.aiplatform.v1beta1.LustreMount DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1beta1.LustreMount(); + } + + public static com.google.cloud.aiplatform.v1beta1.LustreMount getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public LustreMount parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.LustreMount getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LustreMountOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LustreMountOrBuilder.java new file mode 100644 index 000000000000..dfd588bf554a --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/LustreMountOrBuilder.java @@ -0,0 +1,132 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/machine_resources.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +public interface LustreMountOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.LustreMount) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The instanceIp. + */ + java.lang.String getInstanceIp(); + + /** + * + * + *
+   * Required. IP address of the Lustre instance.
+   * 
+ * + * string instance_ip = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for instanceIp. + */ + com.google.protobuf.ByteString getInstanceIpBytes(); + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The volumeHandle. + */ + java.lang.String getVolumeHandle(); + + /** + * + * + *
+   * Required. The unique identifier of the Lustre volume.
+   * 
+ * + * string volume_handle = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for volumeHandle. + */ + com.google.protobuf.ByteString getVolumeHandleBytes(); + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The filesystem. + */ + java.lang.String getFilesystem(); + + /** + * + * + *
+   * Required. The name of the Lustre filesystem.
+   * 
+ * + * string filesystem = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for filesystem. + */ + com.google.protobuf.ByteString getFilesystemBytes(); + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The mountPoint. + */ + java.lang.String getMountPoint(); + + /** + * + * + *
+   * Required. Destination mount path. The Lustre file system will be mounted
+   * for the user under /mnt/lustre/<mount_point>
+   * 
+ * + * string mount_point = 4 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for mountPoint. + */ + com.google.protobuf.ByteString getMountPointBytes(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineResourcesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineResourcesProto.java index 78f9132db386..e963b46e2af8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineResourcesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,6 +48,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1beta1_BatchDedicatedResources_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_BatchDedicatedResources_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_ResourcesConsumed_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -64,6 +68,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1beta1_NfsMount_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_NfsMount_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_LustreMount_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_LustreMount_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_AutoscalingMetricSpec_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -93,7 +101,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "7google/cloud/aiplatform/v1beta1/machine_resources.proto\022\037google.cloud.aiplatfo" + "rm.v1beta1\032\037google/api/field_behavior.pr" + "oto\0326google/cloud/aiplatform/v1beta1/accelerator_type.proto\032:google/cloud/aiplat" - + "form/v1beta1/reservation_affinity.proto\032\036google/protobuf/duration.proto\"\331\002\n" + + "form/v1beta1/reservation_affinity.proto\032\036google/protobuf/duration.proto\"\201\003\n" + "\013MachineSpec\022\031\n" + "\014machine_type\030\001 \001(\tB\003\340A\005\022O\n" + "\020accelerator_type\030\002" @@ -103,7 +111,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\014tpu_topology\030\004 \001(\tB\003\340A\005\022(\n" + "\030multihost_gpu_node_count\030\006 \001(\005B\006\340A\005\340A\001\022Z\n" + "\024reservation_affinity\030\005 \001(\01324." - + "google.cloud.aiplatform.v1beta1.ReservationAffinityB\006\340A\005\340A\001\"\233\005\n" + + "google.cloud.aiplatform.v1beta1.ReservationAffinityB\006\340A\005\340A\001\022&\n" + + "\026min_gpu_driver_version\030\t \001(\tB\006\340A\001\340A\005\"\233\005\n" + "\022DedicatedResources\022J\n" + "\014machine_spec\030\001 \001(\0132,.google.cloud." + "aiplatform.v1beta1.MachineSpecB\006\340A\002\340A\005\022!\n" @@ -133,7 +142,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\021max_replica_count\030\003 \001(\005B\003\340A\005\022F\n\n" + "flex_start\030\004" + " \001(\0132*.google.cloud.aiplatform.v1beta1.FlexStartB\006\340A\005\340A\001\022\021\n" - + "\004spot\030\005 \001(\010B\003\340A\001\"/\n" + + "\004spot\030\005 \001(\010B\003\340A\001\"\216\002\n" + + "\026FullFineTunedResources\022d\n" + + "\017deployment_type\030\001 \001(\0162F.google.cloud.aiplatform.v1" + + "beta1.FullFineTunedResources.DeploymentTypeB\003\340A\002\022\'\n" + + "\032model_inference_unit_count\030\002 \001(\005B\003\340A\001\"e\n" + + "\016DeploymentType\022\037\n" + + "\033DEPLOYMENT_TYPE_UNSPECIFIED\020\000\022\030\n" + + "\024DEPLOYMENT_TYPE_EVAL\020\001\022\030\n" + + "\024DEPLOYMENT_TYPE_PROD\020\002\"/\n" + "\021ResourcesConsumed\022\032\n\r" + "replica_hours\030\001 \001(\001B\003\340A\003\"=\n" + "\010DiskSpec\022\026\n" @@ -145,13 +162,18 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\010NfsMount\022\023\n" + "\006server\030\001 \001(\tB\003\340A\002\022\021\n" + "\004path\030\002 \001(\tB\003\340A\002\022\030\n" - + "\013mount_point\030\003 \001(\tB\003\340A\002\"\376\001\n" + + "\013mount_point\030\003 \001(\tB\003\340A\002\"v\n" + + "\013LustreMount\022\030\n" + + "\013instance_ip\030\001 \001(\tB\003\340A\002\022\032\n\r" + + "volume_handle\030\002 \001(\tB\003\340A\002\022\027\n\n" + + "filesystem\030\003 \001(\tB\003\340A\002\022\030\n" + + "\013mount_point\030\004 \001(\tB\003\340A\002\"\376\001\n" + "\025AutoscalingMetricSpec\022\030\n" + "\013metric_name\030\001 \001(\tB\003\340A\002\022\016\n" + "\006target\030\002 \001(\005\022{\n" - + "\031monitored_resource_labels\030\003 \003(\0132S.go" - + "ogle.cloud.aiplatform.v1beta1.Autoscalin" - + "gMetricSpec.MonitoredResourceLabelsEntryB\003\340A\001\032>\n" + + "\031monitored_resource_labels\030\003 \003(\0132S.google.cl" + + "oud.aiplatform.v1beta1.AutoscalingMetric" + + "Spec.MonitoredResourceLabelsEntryB\003\340A\001\032>\n" + "\034MonitoredResourceLabelsEntry\022\013\n" + "\003key\030\001 \001(\t\022\r\n" + "\005value\030\002 \001(\t:\0028\001\".\n" @@ -159,11 +181,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\022enable_secure_boot\030\001 \001(\010\"D\n" + "\tFlexStart\0227\n" + "\024max_runtime_duration\030\001 \001(\0132\031.google.protobuf.DurationB\354\001\n" - + "#com.google.cloud.aiplatform.v1beta1B\025MachineReso" - + "urcesProtoP\001ZCcloud.google.com/go/aiplatform/apiv1beta1/aiplatformpb;aiplatformp" - + "b\252\002\037Google.Cloud.AIPlatform.V1Beta1\312\002\037Go" - + "ogle\\Cloud\\AIPlatform\\V1beta1\352\002\"Google::" - + "Cloud::AIPlatform::V1beta1b\006proto3" + + "#com.google.cloud.aiplatform.v1beta1B\025MachineResourcesPr" + + "otoP\001ZCcloud.google.com/go/aiplatform/ap" + + "iv1beta1/aiplatformpb;aiplatformpb\252\002\037Goo" + + "gle.Cloud.AIPlatform.V1Beta1\312\002\037Google\\Cl" + + "oud\\AIPlatform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -187,6 +209,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "TpuTopology", "MultihostGpuNodeCount", "ReservationAffinity", + "MinGpuDriverVersion", }); internal_static_google_cloud_aiplatform_v1beta1_DedicatedResources_descriptor = getDescriptor().getMessageTypes().get(1); @@ -230,8 +253,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "MachineSpec", "StartingReplicaCount", "MaxReplicaCount", "FlexStart", "Spot", }); - internal_static_google_cloud_aiplatform_v1beta1_ResourcesConsumed_descriptor = + internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_descriptor = getDescriptor().getMessageTypes().get(4); + internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1beta1_FullFineTunedResources_descriptor, + new java.lang.String[] { + "DeploymentType", "ModelInferenceUnitCount", + }); + internal_static_google_cloud_aiplatform_v1beta1_ResourcesConsumed_descriptor = + getDescriptor().getMessageTypes().get(5); internal_static_google_cloud_aiplatform_v1beta1_ResourcesConsumed_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_ResourcesConsumed_descriptor, @@ -239,7 +270,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "ReplicaHours", }); internal_static_google_cloud_aiplatform_v1beta1_DiskSpec_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(6); internal_static_google_cloud_aiplatform_v1beta1_DiskSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_DiskSpec_descriptor, @@ -247,7 +278,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "BootDiskType", "BootDiskSizeGb", }); internal_static_google_cloud_aiplatform_v1beta1_PersistentDiskSpec_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(7); internal_static_google_cloud_aiplatform_v1beta1_PersistentDiskSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_PersistentDiskSpec_descriptor, @@ -255,15 +286,23 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "DiskType", "DiskSizeGb", }); internal_static_google_cloud_aiplatform_v1beta1_NfsMount_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(8); internal_static_google_cloud_aiplatform_v1beta1_NfsMount_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_NfsMount_descriptor, new java.lang.String[] { "Server", "Path", "MountPoint", }); + internal_static_google_cloud_aiplatform_v1beta1_LustreMount_descriptor = + getDescriptor().getMessageTypes().get(9); + internal_static_google_cloud_aiplatform_v1beta1_LustreMount_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1beta1_LustreMount_descriptor, + new java.lang.String[] { + "InstanceIp", "VolumeHandle", "Filesystem", "MountPoint", + }); internal_static_google_cloud_aiplatform_v1beta1_AutoscalingMetricSpec_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(10); internal_static_google_cloud_aiplatform_v1beta1_AutoscalingMetricSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_AutoscalingMetricSpec_descriptor, @@ -281,7 +320,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Key", "Value", }); internal_static_google_cloud_aiplatform_v1beta1_ShieldedVmConfig_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(11); internal_static_google_cloud_aiplatform_v1beta1_ShieldedVmConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_ShieldedVmConfig_descriptor, @@ -289,7 +328,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "EnableSecureBoot", }); internal_static_google_cloud_aiplatform_v1beta1_FlexStart_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(12); internal_static_google_cloud_aiplatform_v1beta1_FlexStart_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FlexStart_descriptor, diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpec.java index 4cb7f8be8e05..9c11b925ddc6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,6 +44,7 @@ private MachineSpec() { acceleratorType_ = 0; gpuPartitionSize_ = ""; tpuTopology_ = ""; + minGpuDriverVersion_ = ""; } @java.lang.Override @@ -434,6 +435,67 @@ public com.google.cloud.aiplatform.v1beta1.ReservationAffinity getReservationAff : reservationAffinity_; } + public static final int MIN_GPU_DRIVER_VERSION_FIELD_NUMBER = 9; + + @SuppressWarnings("serial") + private volatile java.lang.Object minGpuDriverVersion_ = ""; + + /** + * + * + *
+   * Optional. Immutable. The minimum GPU driver version that this machine
+   * requires. For example, "535.104.06". If not specified, the default GPU
+   * driver version will be used by the underlying infrastructure.
+   * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return The minGpuDriverVersion. + */ + @java.lang.Override + public java.lang.String getMinGpuDriverVersion() { + java.lang.Object ref = minGpuDriverVersion_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + minGpuDriverVersion_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. Immutable. The minimum GPU driver version that this machine
+   * requires. For example, "535.104.06". If not specified, the default GPU
+   * driver version will be used by the underlying infrastructure.
+   * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return The bytes for minGpuDriverVersion. + */ + @java.lang.Override + public com.google.protobuf.ByteString getMinGpuDriverVersionBytes() { + java.lang.Object ref = minGpuDriverVersion_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + minGpuDriverVersion_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -471,6 +533,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gpuPartitionSize_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 7, gpuPartitionSize_); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(minGpuDriverVersion_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 9, minGpuDriverVersion_); + } getUnknownFields().writeTo(output); } @@ -503,6 +568,9 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gpuPartitionSize_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, gpuPartitionSize_); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(minGpuDriverVersion_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, minGpuDriverVersion_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -529,6 +597,7 @@ public boolean equals(final java.lang.Object obj) { if (hasReservationAffinity()) { if (!getReservationAffinity().equals(other.getReservationAffinity())) return false; } + if (!getMinGpuDriverVersion().equals(other.getMinGpuDriverVersion())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -556,6 +625,8 @@ public int hashCode() { hash = (37 * hash) + RESERVATION_AFFINITY_FIELD_NUMBER; hash = (53 * hash) + getReservationAffinity().hashCode(); } + hash = (37 * hash) + MIN_GPU_DRIVER_VERSION_FIELD_NUMBER; + hash = (53 * hash) + getMinGpuDriverVersion().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -716,6 +787,7 @@ public Builder clear() { reservationAffinityBuilder_.dispose(); reservationAffinityBuilder_ = null; } + minGpuDriverVersion_ = ""; return this; } @@ -778,6 +850,9 @@ private void buildPartial0(com.google.cloud.aiplatform.v1beta1.MachineSpec resul : reservationAffinityBuilder_.build(); to_bitField0_ |= 0x00000001; } + if (((from_bitField0_ & 0x00000080) != 0)) { + result.minGpuDriverVersion_ = minGpuDriverVersion_; + } result.bitField0_ |= to_bitField0_; } @@ -854,6 +929,11 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.MachineSpec other) if (other.hasReservationAffinity()) { mergeReservationAffinity(other.getReservationAffinity()); } + if (!other.getMinGpuDriverVersion().isEmpty()) { + minGpuDriverVersion_ = other.minGpuDriverVersion_; + bitField0_ |= 0x00000080; + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -923,6 +1003,12 @@ public Builder mergeFrom( bitField0_ |= 0x00000008; break; } // case 58 + case 74: + { + minGpuDriverVersion_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000080; + break; + } // case 74 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -1880,6 +1966,137 @@ public Builder clearReservationAffinity() { return reservationAffinityBuilder_; } + private java.lang.Object minGpuDriverVersion_ = ""; + + /** + * + * + *
+     * Optional. Immutable. The minimum GPU driver version that this machine
+     * requires. For example, "535.104.06". If not specified, the default GPU
+     * driver version will be used by the underlying infrastructure.
+     * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return The minGpuDriverVersion. + */ + public java.lang.String getMinGpuDriverVersion() { + java.lang.Object ref = minGpuDriverVersion_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + minGpuDriverVersion_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. Immutable. The minimum GPU driver version that this machine
+     * requires. For example, "535.104.06". If not specified, the default GPU
+     * driver version will be used by the underlying infrastructure.
+     * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return The bytes for minGpuDriverVersion. + */ + public com.google.protobuf.ByteString getMinGpuDriverVersionBytes() { + java.lang.Object ref = minGpuDriverVersion_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + minGpuDriverVersion_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. Immutable. The minimum GPU driver version that this machine
+     * requires. For example, "535.104.06". If not specified, the default GPU
+     * driver version will be used by the underlying infrastructure.
+     * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @param value The minGpuDriverVersion to set. + * @return This builder for chaining. + */ + public Builder setMinGpuDriverVersion(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + minGpuDriverVersion_ = value; + bitField0_ |= 0x00000080; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Immutable. The minimum GPU driver version that this machine
+     * requires. For example, "535.104.06". If not specified, the default GPU
+     * driver version will be used by the underlying infrastructure.
+     * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return This builder for chaining. + */ + public Builder clearMinGpuDriverVersion() { + minGpuDriverVersion_ = getDefaultInstance().getMinGpuDriverVersion(); + bitField0_ = (bitField0_ & ~0x00000080); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Immutable. The minimum GPU driver version that this machine
+     * requires. For example, "535.104.06". If not specified, the default GPU
+     * driver version will be used by the underlying infrastructure.
+     * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @param value The bytes for minGpuDriverVersion to set. + * @return This builder for chaining. + */ + public Builder setMinGpuDriverVersionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + minGpuDriverVersion_ = value; + bitField0_ |= 0x00000080; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpecOrBuilder.java index e99f4d0f24bb..b747ea0fadc4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MachineSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -267,4 +267,38 @@ public interface MachineSpecOrBuilder */ com.google.cloud.aiplatform.v1beta1.ReservationAffinityOrBuilder getReservationAffinityOrBuilder(); + + /** + * + * + *
+   * Optional. Immutable. The minimum GPU driver version that this machine
+   * requires. For example, "535.104.06". If not specified, the default GPU
+   * driver version will be used by the underlying infrastructure.
+   * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return The minGpuDriverVersion. + */ + java.lang.String getMinGpuDriverVersion(); + + /** + * + * + *
+   * Optional. Immutable. The minimum GPU driver version that this machine
+   * requires. For example, "535.104.06". If not specified, the default GPU
+   * driver version will be used by the underlying infrastructure.
+   * 
+ * + * + * string min_gpu_driver_version = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE]; + * + * + * @return The bytes for minGpuDriverVersion. + */ + com.google.protobuf.ByteString getMinGpuDriverVersionBytes(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParameters.java index 87e2a53d614c..fa68adb5669a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersOrBuilder.java index 8c08fb6038c5..f121b18b405a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersProto.java index 7f962b56554f..b09b88c1b9e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ManualBatchTuningParametersProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceProto.java index eb62c9ce2057..9ede00f5b68d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MatchServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Measurement.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Measurement.java index 92c5c33a6258..19c2b30e356b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Measurement.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Measurement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MeasurementOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MeasurementOrBuilder.java index 42be443f3e86..cd6e46719b60 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MeasurementOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MeasurementOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Memory.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Memory.java index c357f8b2597e..ebc79dba0f68 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Memory.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Memory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankProto.java index c540673930c2..011e4cb4baa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceProto.java index 741fef9e425d..d29c6bb3f18f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryBankServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryName.java index c570af64bea9..a85abde7cd8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryOrBuilder.java index 0f1a85b3ed1b..499431e3074a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MemoryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequest.java index f75c2da97c6a..e088a4aca719 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequestOrBuilder.java index 61b3813cef1f..fa1419679af4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MergeVersionAliasesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataProto.java index 7ff5eba95b76..80b9129bc084 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchema.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchema.java index 71f3d3b9cc97..221166b32378 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchema.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaName.java index 82c0c9c0f903..72aaa2549ea2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaOrBuilder.java index ef1a127de79e..5c1599259677 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaProto.java index e345bdb9b81b..f2e537dcaefa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataSchemaProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceProto.java index 8cb5fb33325b..746a9edc1907 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStore.java index 4535f5b0f59b..f1f61d61654f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreName.java index e46a2a3998de..656673ff97d0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreOrBuilder.java index 7b563d11a99b..2c930c894b9c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetadataStoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Metric.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Metric.java index 4ea4aed5aa9a..c79c02ef77a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Metric.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Metric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricOrBuilder.java index e13b1273f126..5456d6d31c68 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInput.java index 7e46bc3f7af5..143f00c2a9c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInputOrBuilder.java index d444bf622511..026305b74a87 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstance.java index d7e194379a78..a29692c0a438 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstanceOrBuilder.java index 7a864ef5ad59..80b1166317be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResult.java index 151f3d115f6b..d0ec6ba4bb22 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResultOrBuilder.java index ff082dd640a7..f6e11749ed24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpec.java index 9d80950cdb96..bb64626d5d36 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpecOrBuilder.java index 717d05cc0fb2..9bf12241fc85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MetricxSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResource.java index 6233229fd441..53b81c9342e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceOrBuilder.java index 9dbbc859e57b..8f792701167e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceProto.java index 626ed05bf370..68881c5fd2dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigratableResourceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequest.java index 56396d928e54..0bcd0683af82 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequestOrBuilder.java index e695d8a53a8b..331a4f0742cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponse.java index 7647c6d39536..01bf2b9829d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponseOrBuilder.java index 6d6ba048a6d5..4d3160d0e5bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrateResourceResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceProto.java index abd1b58c2cab..a039eaa9dfee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MigrationServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Modality.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Modality.java index 4c2724b72e39..d29b9229f47c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Modality.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Modality.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCount.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCount.java index 06571cbf2e31..e5bc615ef667 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCount.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCountOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCountOrBuilder.java index 7b9200c3bd83..05f90db58ae6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCountOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModalityTokenCountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Model.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Model.java index 2b59bbafab2b..95b2241a2956 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Model.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Model.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfig.java index fab4d15412d9..e7fceca6ab90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfigOrBuilder.java index b987ee1bb607..de9ac5347a7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelArmorConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpec.java index 01df19132fc1..d2060ad7227c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpecOrBuilder.java index 13cde84b8aea..8e12a791be54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelContainerSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTable.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTable.java index becdbaf294cb..dabc1bd08dbe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTable.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java index 60bc73d518ed..8118443f52cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringBigQueryTableOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJob.java index c21aed86c931..2be2dd844aea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobName.java index d223eb42e2ca..893d2374958e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobOrBuilder.java index cb6901ac67e1..53c19f3d717e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobProto.java index 33e89c68a161..6fe543669e09 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfig.java index 4ced601c2f6e..7f64cfa6b87a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java index 1acef9d27fb1..0c49d2c8c0ad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveType.java index 4bd229f03ffd..9473e64432b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringObjectiveType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfig.java index ec3d4ee73193..782c7bb87ad9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java index 1c115fc9d6b0..04ab74521e1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelDeploymentMonitoringScheduleConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluation.java index 5783f0a864e3..6c711e156ee5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationName.java index bd57033382cd..38bfbe364ec0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationOrBuilder.java index b37f7903e83f..c9a6240a0202 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationProto.java index fe4164ddff9e..df7331cf09cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSlice.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSlice.java index ebeacf6d0b0e..8dab45066c9c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSlice.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSlice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceName.java index a86dd20d72e7..377ee20b5219 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceOrBuilder.java index ed3d6c368d3a..7fd812e10d59 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceProto.java index 7a43cd6ae389..a8ba030b4788 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelEvaluationSliceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanation.java index 15bef968bfe8..be2006e6c085 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanationOrBuilder.java index 4ae649f4ee80..429d4479ddd2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelExplanationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceProto.java index fcf25024b4e3..a4425d40648a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSource.java index 1844eb6a577e..e50aa726078b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSourceOrBuilder.java index 978fbc0717cb..c01672039889 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelGardenSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitor.java index 3275556fb55a..07ad19ff6405 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorName.java index 8d504c7a962a..e47945d3ae26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorOrBuilder.java index 9a326c0c9e92..d431c380d975 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorProto.java index fca60154c3ba..e5facf7c03e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitorProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlert.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlert.java index 7d5cd9251f9d..a26eb0d1a994 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlert.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlert.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertCondition.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertCondition.java index 8b00b538b784..ad111bb00203 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertCondition.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertCondition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConditionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConditionOrBuilder.java index 0265c86ddfa4..d9966f310cb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConditionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConditionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfig.java index 8e616af27b45..50a78beaff8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfigOrBuilder.java index 735145e4ef8d..5319c659639f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertOrBuilder.java index b676e93272f2..b12a0c723d26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertProto.java index ea6b95ee5d29..6d5db9324b2a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAlertProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomaly.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomaly.java index c218a271a8f9..9d9d9524046c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomaly.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomaly.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomalyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomalyOrBuilder.java index 561a961e8ece..1eb28eed7092 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomalyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringAnomalyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfig.java index a86a0f51e487..190b2df52f10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfigOrBuilder.java index 75bee0d16929..3c0ae604d16f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInput.java index 2ec35ee557d8..6c845fe6a1aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInputOrBuilder.java index bc2f8b580b9b..059b92ba751d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJob.java index e698c30632fa..d0c9c110a8e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetail.java index 91cc0f8836a5..ba633f3349a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetailOrBuilder.java index 8289aa1ed3ad..ee6266d1b71d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobExecutionDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobName.java index 5cac8a44786a..6e003ebbb805 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobOrBuilder.java index 0fd8b52c553d..70ae3e39324a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobProto.java index 2afb02ad610b..38dedbb469d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpec.java index a5b48855f29f..13eea93d38a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpecOrBuilder.java index d36af21bd5bc..4040fd524f0f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringNotificationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfig.java index f369f2a6bfef..29ec12e7f022 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfigOrBuilder.java index fd47eca12993..ac2939b6423b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpec.java index 76ce95de3a38..533f683019d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpecOrBuilder.java index 723b34cb2033..db9b3d326635 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringObjectiveSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpec.java index 06da000137d3..d7e58948a794 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpecOrBuilder.java index c85bf1d08dc8..93fc92e74e05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringOutputSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringProto.java index 38b797c10ae9..8f46a5b3c12f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchema.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchema.java index e96a0f2c6902..e334c450652e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchema.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchemaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchemaOrBuilder.java index bea94b563c77..614b43c1e528 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchemaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceProto.java index 657d370a8a0e..04efe62c3af3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpec.java index 5d24c0bc4cd2..7b773517f946 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecOrBuilder.java index 64aa78170470..20673a9b9b8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecProto.java index 3f7d47f6f172..b83b4bef098b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStats.java index 899c806907da..0610957860b6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomalies.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomalies.java index 6214c17cae8f..150cb2bcc947 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomalies.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomalies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomaliesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomaliesOrBuilder.java index 6fb06ef0757d..3ca107a22f9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomaliesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsAnomaliesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPoint.java index 1085552015d6..585a0b08e2fa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPointOrBuilder.java index ebe04d93a6b6..87c628699620 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsDataPointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsOrBuilder.java index ea7419423ed0..01341530b3b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsProto.java index 973c6e4cb903..21153f56f771 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringStatsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStats.java index 1cc354e7d145..8486af47a06e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStatsOrBuilder.java index 732af4af85dc..645b0f37b7ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelMonitoringTabularStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelName.java index f103c5df15ff..bc4d749ed39a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelOrBuilder.java index 9e7ca83c3420..5c2c6f55eaf5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelProto.java index de352ce0a7bd..14b2b63894a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceProto.java index 0f496bf01257..1d208248f100 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfo.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfo.java index 575291aec57f..b3f1b4fee947 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfo.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfoOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfoOrBuilder.java index 7b7aa73f2af2..1916e1e7a81c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfoOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelSourceInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpoint.java index 5a0f7eaf495c..b872571a2baa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpointOrBuilder.java index 9bdd652ecaba..c4639a44906f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ModelVersionCheckpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MultiSpeakerVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MultiSpeakerVoiceConfig.java new file mode 100644 index 000000000000..422d113db36e --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MultiSpeakerVoiceConfig.java @@ -0,0 +1,1052 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +/** + * + * + *
+ * Configuration for a multi-speaker text-to-speech request.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig} + */ +public final class MultiSpeakerVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) + MultiSpeakerVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use MultiSpeakerVoiceConfig.newBuilder() to construct. + private MultiSpeakerVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private MultiSpeakerVoiceConfig() { + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new MultiSpeakerVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder.class); + } + + public static final int SPEAKER_VOICE_CONFIGS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private java.util.List + speakerVoiceConfigs_; + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getSpeakerVoiceConfigsList() { + return speakerVoiceConfigs_; + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public java.util.List + getSpeakerVoiceConfigsOrBuilderList() { + return speakerVoiceConfigs_; + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public int getSpeakerVoiceConfigsCount() { + return speakerVoiceConfigs_.size(); + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig getSpeakerVoiceConfigs(int index) { + return speakerVoiceConfigs_.get(index); + } + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder + getSpeakerVoiceConfigsOrBuilder(int index) { + return speakerVoiceConfigs_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < speakerVoiceConfigs_.size(); i++) { + output.writeMessage(2, speakerVoiceConfigs_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < speakerVoiceConfigs_.size(); i++) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(2, speakerVoiceConfigs_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig other = + (com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) obj; + + if (!getSpeakerVoiceConfigsList().equals(other.getSpeakerVoiceConfigsList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getSpeakerVoiceConfigsCount() > 0) { + hash = (37 * hash) + SPEAKER_VOICE_CONFIGS_FIELD_NUMBER; + hash = (53 * hash) + getSpeakerVoiceConfigsList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for a multi-speaker text-to-speech request.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (speakerVoiceConfigsBuilder_ == null) { + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + } else { + speakerVoiceConfigs_ = null; + speakerVoiceConfigsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_MultiSpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig build() { + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig result = + new com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig result) { + if (speakerVoiceConfigsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + speakerVoiceConfigs_ = java.util.Collections.unmodifiableList(speakerVoiceConfigs_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.speakerVoiceConfigs_ = speakerVoiceConfigs_; + } else { + result.speakerVoiceConfigs_ = speakerVoiceConfigsBuilder_.build(); + } + } + + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.getDefaultInstance()) + return this; + if (speakerVoiceConfigsBuilder_ == null) { + if (!other.speakerVoiceConfigs_.isEmpty()) { + if (speakerVoiceConfigs_.isEmpty()) { + speakerVoiceConfigs_ = other.speakerVoiceConfigs_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.addAll(other.speakerVoiceConfigs_); + } + onChanged(); + } + } else { + if (!other.speakerVoiceConfigs_.isEmpty()) { + if (speakerVoiceConfigsBuilder_.isEmpty()) { + speakerVoiceConfigsBuilder_.dispose(); + speakerVoiceConfigsBuilder_ = null; + speakerVoiceConfigs_ = other.speakerVoiceConfigs_; + bitField0_ = (bitField0_ & ~0x00000001); + speakerVoiceConfigsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getSpeakerVoiceConfigsFieldBuilder() + : null; + } else { + speakerVoiceConfigsBuilder_.addAllMessages(other.speakerVoiceConfigs_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 18: + { + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig m = + input.readMessage( + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.parser(), + extensionRegistry); + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(m); + } else { + speakerVoiceConfigsBuilder_.addMessage(m); + } + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + + private void ensureSpeakerVoiceConfigsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + speakerVoiceConfigs_ = + new java.util.ArrayList( + speakerVoiceConfigs_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder> + speakerVoiceConfigsBuilder_; + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getSpeakerVoiceConfigsList() { + if (speakerVoiceConfigsBuilder_ == null) { + return java.util.Collections.unmodifiableList(speakerVoiceConfigs_); + } else { + return speakerVoiceConfigsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public int getSpeakerVoiceConfigsCount() { + if (speakerVoiceConfigsBuilder_ == null) { + return speakerVoiceConfigs_.size(); + } else { + return speakerVoiceConfigsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig getSpeakerVoiceConfigs( + int index) { + if (speakerVoiceConfigsBuilder_ == null) { + return speakerVoiceConfigs_.get(index); + } else { + return speakerVoiceConfigsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig value) { + if (speakerVoiceConfigsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.set(index, value); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder builderForValue) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.set(index, builderForValue.build()); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig value) { + if (speakerVoiceConfigsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(value); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig value) { + if (speakerVoiceConfigsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(index, value); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder builderForValue) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(builderForValue.build()); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addSpeakerVoiceConfigs( + int index, com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder builderForValue) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.add(index, builderForValue.build()); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder addAllSpeakerVoiceConfigs( + java.lang.Iterable + values) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, speakerVoiceConfigs_); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearSpeakerVoiceConfigs() { + if (speakerVoiceConfigsBuilder_ == null) { + speakerVoiceConfigs_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder removeSpeakerVoiceConfigs(int index) { + if (speakerVoiceConfigsBuilder_ == null) { + ensureSpeakerVoiceConfigsIsMutable(); + speakerVoiceConfigs_.remove(index); + onChanged(); + } else { + speakerVoiceConfigsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder + getSpeakerVoiceConfigsBuilder(int index) { + return getSpeakerVoiceConfigsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder + getSpeakerVoiceConfigsOrBuilder(int index) { + if (speakerVoiceConfigsBuilder_ == null) { + return speakerVoiceConfigs_.get(index); + } else { + return speakerVoiceConfigsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getSpeakerVoiceConfigsOrBuilderList() { + if (speakerVoiceConfigsBuilder_ != null) { + return speakerVoiceConfigsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(speakerVoiceConfigs_); + } + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder + addSpeakerVoiceConfigsBuilder() { + return getSpeakerVoiceConfigsFieldBuilder() + .addBuilder(com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder + addSpeakerVoiceConfigsBuilder(int index) { + return getSpeakerVoiceConfigsFieldBuilder() + .addBuilder( + index, com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.getDefaultInstance()); + } + + /** + * + * + *
+     * Required. A list of configurations for the voices of the speakers. Exactly
+     * two speaker voice configurations must be provided.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public java.util.List + getSpeakerVoiceConfigsBuilderList() { + return getSpeakerVoiceConfigsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder> + getSpeakerVoiceConfigsFieldBuilder() { + if (speakerVoiceConfigsBuilder_ == null) { + speakerVoiceConfigsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder>( + speakerVoiceConfigs_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + speakerVoiceConfigs_ = null; + } + return speakerVoiceConfigsBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) + private static final com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public MultiSpeakerVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MultiSpeakerVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MultiSpeakerVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..7650ced23ebf --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MultiSpeakerVoiceConfigOrBuilder.java @@ -0,0 +1,99 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +public interface MultiSpeakerVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getSpeakerVoiceConfigsList(); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig getSpeakerVoiceConfigs(int index); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + int getSpeakerVoiceConfigsCount(); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + java.util.List + getSpeakerVoiceConfigsOrBuilderList(); + + /** + * + * + *
+   * Required. A list of configurations for the voices of the speakers. Exactly
+   * two speaker voice configurations must be provided.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig speaker_voice_configs = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder getSpeakerVoiceConfigsOrBuilder( + int index); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadata.java index 14a71e86f9a3..661d2bb9a4c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadataOrBuilder.java index b46846af6e2c..a119001e2159 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequest.java index 5597795610fc..0e401561219c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequestOrBuilder.java index 36316f9440de..0ee968fbc75e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponse.java index 4938ba702dc5..44a8ad2ce028 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponseOrBuilder.java index f4afd78093a9..435833233558 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedIndexResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadata.java index 7d75b234fd79..517169bd0071 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadataOrBuilder.java index a8cc3930e7a4..6193ae0e9fde 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequest.java index b0e7a7301f36..3cb2c464f8bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequestOrBuilder.java index fbab11bbee09..62fc81d25001 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponse.java index 1f887a673145..5004fa4270a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponseOrBuilder.java index 7ec2f8ec5aad..951a0ddffda4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/MutateDeployedModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJob.java index 8732978c54b9..8f744fcefa0b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobName.java index 141ea2389b14..4be079fbc3ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOrBuilder.java index 7d16a4beae3d..1aaf7b085383 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutput.java index b99198063024..144b731827a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutputOrBuilder.java index 57e62fd556c2..4e13e2a17fc5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobOutputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobProto.java index a3c267a9f742..f0f1d6f8b9e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpec.java index aba7fb137374..fb8a214ee04f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpecOrBuilder.java index 2c5ed1fbd155..ee9bbe1acd6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasJobSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrial.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrial.java index d808db93824e..fe3bb27ffdf2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrial.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetail.java index 244cd7b19d5d..cf9370f94784 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailName.java index 21770f421ecb..73ca6fb95c5a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailOrBuilder.java index 612baa48cb66..fa377771f0a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialOrBuilder.java index e1232ad1cba6..70522ebe1b50 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NasTrialOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQuery.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQuery.java index a362ceadadc0..06f706a829e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQuery.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQueryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQueryOrBuilder.java index ff0634bf0f1c..5811ca00b098 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQueryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadata.java index 58d42b87c303..b553faadb4d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadataOrBuilder.java index 1a1f8d4f371d..d0cc00e0f48f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborSearchOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighbors.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighbors.java index 6c1e3c1f7ded..337c3e00da48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighbors.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborsOrBuilder.java index eb8b47470069..053c043ded8b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NearestNeighborsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Neighbor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Neighbor.java index 3c50271a11b1..3f4fae2f64a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Neighbor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Neighbor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NeighborOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NeighborOrBuilder.java index b4f01d0320ae..2421613f5155 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NeighborOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NeighborOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpec.java index fcd05df2c83e..7d9e126c9036 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecOrBuilder.java index 0aa7a3961669..5be9f5f457a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecProto.java index 0cb4cc125208..f444f7869fc7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NetworkSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMount.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMount.java index 46781a8bfad6..43ec0b9ee25f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMount.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMountOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMountOrBuilder.java index 22e351d0263f..44d210c7313c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMountOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NfsMountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfig.java index 26f7cb6dfb65..45a968d3a878 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigOrBuilder.java index 8a5cf5687cf3..98196dc5ad10 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigProto.java index 30c53055d8a4..0d089a3c4a5c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookEucConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJob.java index a3aee1fd7fd6..6075f076026c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobName.java index ab4dcb470d39..fd0a5252f140 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobOrBuilder.java index 388930f4a2d3..9c8b6cc7c3eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobProto.java index 09020c3e21c0..fa6b1ee180ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobView.java index b844df2e968b..dd070cfa0981 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookExecutionJobView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfig.java index 98fb4e8b2702..7b96f78cf3ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigOrBuilder.java index e4353ca43b1b..bd30d9e6359a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigProto.java index 2b0a2744f1ab..996ed5d4d518 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookIdleShutdownConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntime.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntime.java index 2e13656c4698..aa64e13c380b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntime.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeName.java index 5f5215d06b67..3e3281c8b38d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeOrBuilder.java index d64b2c0ce6ad..24818f310a63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeProto.java index d02116633584..d9c135165f6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplate.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplate.java index 625d0292b7b0..6d16208ddd57 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplate.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateName.java index 0516397d7003..a7d150372cae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateOrBuilder.java index c7393cf4c805..f4e8fd256fb0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRef.java index 598772f0b642..62220fee0332 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefOrBuilder.java index 3476b90f407d..d37d97d64d0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefProto.java index 63d4c61a4790..505c6461abc4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeTemplateRefProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeType.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeType.java index 1e0d09cfc9fb..107355d08d82 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeType.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookRuntimeType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceProto.java index d420104d9a37..a1703df7f926 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfig.java index 46063398b4ec..e3ee6f2a9b9e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigOrBuilder.java index 153983b3149c..9c88304c7267 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigProto.java index 3f27ebf74de0..69e74dc1f7d5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/NotebookSoftwareConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OpenApiProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OpenApiProto.java index 28da6991f660..81c04e9d4989 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OpenApiProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OpenApiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OperationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OperationProto.java index 5411b370465b..9d0067f8a9a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OperationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OperationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfig.java index a1791d2d5079..ed16e005cb30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfigOrBuilder.java index 7316556af9f6..56078f81c309 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfo.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfo.java index 3414a92e263a..a75378ad8cbc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfo.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfoOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfoOrBuilder.java index a76aa9a69f83..0a2fe9803908 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfoOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/OutputInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfig.java index 0e1dc23a962c..338bcffffc15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfigOrBuilder.java index 8b2aaaf414c0..7fe445f8365c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationState.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationState.java index 6f9b75d57f0f..171ed62c6cc9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationState.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PSCAutomationState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseChoice.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseChoice.java index 804fa62b96d5..161909376f56 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseChoice.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseChoice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInput.java index 9723d0c42953..b33be35ddbe4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInputOrBuilder.java index 2de12eda25b7..150f525d7023 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstance.java index 6f975b8f2fa7..652de99ab5c2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstanceOrBuilder.java index c5d17083a536..ec12623c9f07 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResult.java index 005cf03e4f5b..e03aae1989cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResultOrBuilder.java index 45754142b713..aace89e3de93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpec.java index 444efc980b62..c641c02c57e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpecOrBuilder.java index be0565caecb3..aba5029211a2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInput.java index 269140582c89..358eaa1cffd8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInputOrBuilder.java index d811939dff73..f514d1c912bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstance.java index a7d3352182d9..c952b0cd84d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java index d4b0bbd9cc27..83f06b207bef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResult.java index 39b12e47a824..59175ff780ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResultOrBuilder.java index cf11d6ccb037..93177f657166 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpec.java index 70a1147de02a..b1116291c4e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java index 7c70154bd6c4..d888fd909e93 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseQuestionAnsweringQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInput.java index 29b990d33e66..e4be6fe8d03b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInputOrBuilder.java index 7c23a7a55274..3ed694c82858 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstance.java index 95883ce4c9cd..a022c8a1ddce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstanceOrBuilder.java index 5f6dd60073d6..2b5aba9128d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResult.java index e08b9ae02b5d..a9a74696201f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResultOrBuilder.java index 94799cb943bd..80327508ad35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpec.java index eae744bdabc0..de3df57ca9db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpecOrBuilder.java index 872e4d7c0ef8..e3c8e6c5f57b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PairwiseSummarizationQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Part.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Part.java index ee6ac6103e5b..464319b82822 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Part.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Part.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartOrBuilder.java index 5942bcdb11ba..3013e8e0595d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartialArg.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartialArg.java new file mode 100644 index 000000000000..34f456d7a77b --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartialArg.java @@ -0,0 +1,1560 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/tool.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +/** + * + * + *
+ * Partial argument value of the function call.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.PartialArg} + */ +public final class PartialArg extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.PartialArg) + PartialArgOrBuilder { + private static final long serialVersionUID = 0L; + + // Use PartialArg.newBuilder() to construct. + private PartialArg(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private PartialArg() { + jsonPath_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new PartialArg(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ToolProto + .internal_static_google_cloud_aiplatform_v1beta1_PartialArg_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ToolProto + .internal_static_google_cloud_aiplatform_v1beta1_PartialArg_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.PartialArg.class, + com.google.cloud.aiplatform.v1beta1.PartialArg.Builder.class); + } + + private int deltaCase_ = 0; + + @SuppressWarnings("serial") + private java.lang.Object delta_; + + public enum DeltaCase + implements + com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + NULL_VALUE(2), + NUMBER_VALUE(3), + STRING_VALUE(4), + BOOL_VALUE(5), + DELTA_NOT_SET(0); + private final int value; + + private DeltaCase(int value) { + this.value = value; + } + + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static DeltaCase valueOf(int value) { + return forNumber(value); + } + + public static DeltaCase forNumber(int value) { + switch (value) { + case 2: + return NULL_VALUE; + case 3: + return NUMBER_VALUE; + case 4: + return STRING_VALUE; + case 5: + return BOOL_VALUE; + case 0: + return DELTA_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public DeltaCase getDeltaCase() { + return DeltaCase.forNumber(deltaCase_); + } + + public static final int NULL_VALUE_FIELD_NUMBER = 2; + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the nullValue field is set. + */ + public boolean hasNullValue() { + return deltaCase_ == 2; + } + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The enum numeric value on the wire for nullValue. + */ + public int getNullValueValue() { + if (deltaCase_ == 2) { + return (java.lang.Integer) delta_; + } + return 0; + } + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The nullValue. + */ + public com.google.protobuf.NullValue getNullValue() { + if (deltaCase_ == 2) { + com.google.protobuf.NullValue result = + com.google.protobuf.NullValue.forNumber((java.lang.Integer) delta_); + return result == null ? com.google.protobuf.NullValue.UNRECOGNIZED : result; + } + return com.google.protobuf.NullValue.NULL_VALUE; + } + + public static final int NUMBER_VALUE_FIELD_NUMBER = 3; + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the numberValue field is set. + */ + @java.lang.Override + public boolean hasNumberValue() { + return deltaCase_ == 3; + } + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The numberValue. + */ + @java.lang.Override + public double getNumberValue() { + if (deltaCase_ == 3) { + return (java.lang.Double) delta_; + } + return 0D; + } + + public static final int STRING_VALUE_FIELD_NUMBER = 4; + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the stringValue field is set. + */ + public boolean hasStringValue() { + return deltaCase_ == 4; + } + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The stringValue. + */ + public java.lang.String getStringValue() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (deltaCase_ == 4) { + delta_ = s; + } + return s; + } + } + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for stringValue. + */ + public com.google.protobuf.ByteString getStringValueBytes() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (deltaCase_ == 4) { + delta_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int BOOL_VALUE_FIELD_NUMBER = 5; + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the boolValue field is set. + */ + @java.lang.Override + public boolean hasBoolValue() { + return deltaCase_ == 5; + } + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The boolValue. + */ + @java.lang.Override + public boolean getBoolValue() { + if (deltaCase_ == 5) { + return (java.lang.Boolean) delta_; + } + return false; + } + + public static final int JSON_PATH_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object jsonPath_ = ""; + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The jsonPath. + */ + @java.lang.Override + public java.lang.String getJsonPath() { + java.lang.Object ref = jsonPath_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + jsonPath_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for jsonPath. + */ + @java.lang.Override + public com.google.protobuf.ByteString getJsonPathBytes() { + java.lang.Object ref = jsonPath_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + jsonPath_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int WILL_CONTINUE_FIELD_NUMBER = 6; + private boolean willContinue_ = false; + + /** + * + * + *
+   * Optional. Whether this is not the last part of the same json_path.
+   * If true, another PartialArg message for the current json_path is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(jsonPath_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, jsonPath_); + } + if (deltaCase_ == 2) { + output.writeEnum(2, ((java.lang.Integer) delta_)); + } + if (deltaCase_ == 3) { + output.writeDouble(3, (double) ((java.lang.Double) delta_)); + } + if (deltaCase_ == 4) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, delta_); + } + if (deltaCase_ == 5) { + output.writeBool(5, (boolean) ((java.lang.Boolean) delta_)); + } + if (willContinue_ != false) { + output.writeBool(6, willContinue_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(jsonPath_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, jsonPath_); + } + if (deltaCase_ == 2) { + size += + com.google.protobuf.CodedOutputStream.computeEnumSize(2, ((java.lang.Integer) delta_)); + } + if (deltaCase_ == 3) { + size += + com.google.protobuf.CodedOutputStream.computeDoubleSize( + 3, (double) ((java.lang.Double) delta_)); + } + if (deltaCase_ == 4) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, delta_); + } + if (deltaCase_ == 5) { + size += + com.google.protobuf.CodedOutputStream.computeBoolSize( + 5, (boolean) ((java.lang.Boolean) delta_)); + } + if (willContinue_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(6, willContinue_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1beta1.PartialArg)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.PartialArg other = + (com.google.cloud.aiplatform.v1beta1.PartialArg) obj; + + if (!getJsonPath().equals(other.getJsonPath())) return false; + if (getWillContinue() != other.getWillContinue()) return false; + if (!getDeltaCase().equals(other.getDeltaCase())) return false; + switch (deltaCase_) { + case 2: + if (getNullValueValue() != other.getNullValueValue()) return false; + break; + case 3: + if (java.lang.Double.doubleToLongBits(getNumberValue()) + != java.lang.Double.doubleToLongBits(other.getNumberValue())) return false; + break; + case 4: + if (!getStringValue().equals(other.getStringValue())) return false; + break; + case 5: + if (getBoolValue() != other.getBoolValue()) return false; + break; + case 0: + default: + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + JSON_PATH_FIELD_NUMBER; + hash = (53 * hash) + getJsonPath().hashCode(); + hash = (37 * hash) + WILL_CONTINUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getWillContinue()); + switch (deltaCase_) { + case 2: + hash = (37 * hash) + NULL_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getNullValueValue(); + break; + case 3: + hash = (37 * hash) + NUMBER_VALUE_FIELD_NUMBER; + hash = + (53 * hash) + + com.google.protobuf.Internal.hashLong( + java.lang.Double.doubleToLongBits(getNumberValue())); + break; + case 4: + hash = (37 * hash) + STRING_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getStringValue().hashCode(); + break; + case 5: + hash = (37 * hash) + BOOL_VALUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getBoolValue()); + break; + case 0: + default: + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder(com.google.cloud.aiplatform.v1beta1.PartialArg prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Partial argument value of the function call.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.PartialArg} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.PartialArg) + com.google.cloud.aiplatform.v1beta1.PartialArgOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ToolProto + .internal_static_google_cloud_aiplatform_v1beta1_PartialArg_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ToolProto + .internal_static_google_cloud_aiplatform_v1beta1_PartialArg_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.PartialArg.class, + com.google.cloud.aiplatform.v1beta1.PartialArg.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1beta1.PartialArg.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + jsonPath_ = ""; + willContinue_ = false; + deltaCase_ = 0; + delta_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.ToolProto + .internal_static_google_cloud_aiplatform_v1beta1_PartialArg_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.PartialArg getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.PartialArg.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.PartialArg build() { + com.google.cloud.aiplatform.v1beta1.PartialArg result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.PartialArg buildPartial() { + com.google.cloud.aiplatform.v1beta1.PartialArg result = + new com.google.cloud.aiplatform.v1beta1.PartialArg(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + buildPartialOneofs(result); + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.PartialArg result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000010) != 0)) { + result.jsonPath_ = jsonPath_; + } + if (((from_bitField0_ & 0x00000020) != 0)) { + result.willContinue_ = willContinue_; + } + } + + private void buildPartialOneofs(com.google.cloud.aiplatform.v1beta1.PartialArg result) { + result.deltaCase_ = deltaCase_; + result.delta_ = this.delta_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1beta1.PartialArg) { + return mergeFrom((com.google.cloud.aiplatform.v1beta1.PartialArg) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.PartialArg other) { + if (other == com.google.cloud.aiplatform.v1beta1.PartialArg.getDefaultInstance()) return this; + if (!other.getJsonPath().isEmpty()) { + jsonPath_ = other.jsonPath_; + bitField0_ |= 0x00000010; + onChanged(); + } + if (other.getWillContinue() != false) { + setWillContinue(other.getWillContinue()); + } + switch (other.getDeltaCase()) { + case NULL_VALUE: + { + setNullValueValue(other.getNullValueValue()); + break; + } + case NUMBER_VALUE: + { + setNumberValue(other.getNumberValue()); + break; + } + case STRING_VALUE: + { + deltaCase_ = 4; + delta_ = other.delta_; + onChanged(); + break; + } + case BOOL_VALUE: + { + setBoolValue(other.getBoolValue()); + break; + } + case DELTA_NOT_SET: + { + break; + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + jsonPath_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000010; + break; + } // case 10 + case 16: + { + int rawValue = input.readEnum(); + deltaCase_ = 2; + delta_ = rawValue; + break; + } // case 16 + case 25: + { + delta_ = input.readDouble(); + deltaCase_ = 3; + break; + } // case 25 + case 34: + { + java.lang.String s = input.readStringRequireUtf8(); + deltaCase_ = 4; + delta_ = s; + break; + } // case 34 + case 40: + { + delta_ = input.readBool(); + deltaCase_ = 5; + break; + } // case 40 + case 48: + { + willContinue_ = input.readBool(); + bitField0_ |= 0x00000020; + break; + } // case 48 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int deltaCase_ = 0; + private java.lang.Object delta_; + + public DeltaCase getDeltaCase() { + return DeltaCase.forNumber(deltaCase_); + } + + public Builder clearDelta() { + deltaCase_ = 0; + delta_ = null; + onChanged(); + return this; + } + + private int bitField0_; + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the nullValue field is set. + */ + @java.lang.Override + public boolean hasNullValue() { + return deltaCase_ == 2; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The enum numeric value on the wire for nullValue. + */ + @java.lang.Override + public int getNullValueValue() { + if (deltaCase_ == 2) { + return ((java.lang.Integer) delta_).intValue(); + } + return 0; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The enum numeric value on the wire for nullValue to set. + * @return This builder for chaining. + */ + public Builder setNullValueValue(int value) { + deltaCase_ = 2; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The nullValue. + */ + @java.lang.Override + public com.google.protobuf.NullValue getNullValue() { + if (deltaCase_ == 2) { + com.google.protobuf.NullValue result = + com.google.protobuf.NullValue.forNumber((java.lang.Integer) delta_); + return result == null ? com.google.protobuf.NullValue.UNRECOGNIZED : result; + } + return com.google.protobuf.NullValue.NULL_VALUE; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @param value The nullValue to set. + * @return This builder for chaining. + */ + public Builder setNullValue(com.google.protobuf.NullValue value) { + if (value == null) { + throw new NullPointerException(); + } + deltaCase_ = 2; + delta_ = value.getNumber(); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a null value.
+     * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return This builder for chaining. + */ + public Builder clearNullValue() { + if (deltaCase_ == 2) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the numberValue field is set. + */ + public boolean hasNumberValue() { + return deltaCase_ == 3; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The numberValue. + */ + public double getNumberValue() { + if (deltaCase_ == 3) { + return (java.lang.Double) delta_; + } + return 0D; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The numberValue to set. + * @return This builder for chaining. + */ + public Builder setNumberValue(double value) { + + deltaCase_ = 3; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a double value.
+     * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearNumberValue() { + if (deltaCase_ == 3) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the stringValue field is set. + */ + @java.lang.Override + public boolean hasStringValue() { + return deltaCase_ == 4; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The stringValue. + */ + @java.lang.Override + public java.lang.String getStringValue() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (deltaCase_ == 4) { + delta_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for stringValue. + */ + @java.lang.Override + public com.google.protobuf.ByteString getStringValueBytes() { + java.lang.Object ref = ""; + if (deltaCase_ == 4) { + ref = delta_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (deltaCase_ == 4) { + delta_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The stringValue to set. + * @return This builder for chaining. + */ + public Builder setStringValue(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + deltaCase_ = 4; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearStringValue() { + if (deltaCase_ == 4) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Optional. Represents a string value.
+     * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for stringValue to set. + * @return This builder for chaining. + */ + public Builder setStringValueBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + deltaCase_ = 4; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the boolValue field is set. + */ + public boolean hasBoolValue() { + return deltaCase_ == 5; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The boolValue. + */ + public boolean getBoolValue() { + if (deltaCase_ == 5) { + return (java.lang.Boolean) delta_; + } + return false; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The boolValue to set. + * @return This builder for chaining. + */ + public Builder setBoolValue(boolean value) { + + deltaCase_ = 5; + delta_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Represents a boolean value.
+     * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearBoolValue() { + if (deltaCase_ == 5) { + deltaCase_ = 0; + delta_ = null; + onChanged(); + } + return this; + } + + private java.lang.Object jsonPath_ = ""; + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The jsonPath. + */ + public java.lang.String getJsonPath() { + java.lang.Object ref = jsonPath_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + jsonPath_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for jsonPath. + */ + public com.google.protobuf.ByteString getJsonPathBytes() { + java.lang.Object ref = jsonPath_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + jsonPath_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The jsonPath to set. + * @return This builder for chaining. + */ + public Builder setJsonPath(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + jsonPath_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearJsonPath() { + jsonPath_ = getDefaultInstance().getJsonPath(); + bitField0_ = (bitField0_ & ~0x00000010); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. A JSON Path (RFC 9535) to the argument being streamed.
+     * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+     * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for jsonPath to set. + * @return This builder for chaining. + */ + public Builder setJsonPathBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + jsonPath_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + private boolean willContinue_; + + /** + * + * + *
+     * Optional. Whether this is not the last part of the same json_path.
+     * If true, another PartialArg message for the current json_path is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + @java.lang.Override + public boolean getWillContinue() { + return willContinue_; + } + + /** + * + * + *
+     * Optional. Whether this is not the last part of the same json_path.
+     * If true, another PartialArg message for the current json_path is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The willContinue to set. + * @return This builder for chaining. + */ + public Builder setWillContinue(boolean value) { + + willContinue_ = value; + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. Whether this is not the last part of the same json_path.
+     * If true, another PartialArg message for the current json_path is expected
+     * to follow.
+     * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearWillContinue() { + bitField0_ = (bitField0_ & ~0x00000020); + willContinue_ = false; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.PartialArg) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.PartialArg) + private static final com.google.cloud.aiplatform.v1beta1.PartialArg DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1beta1.PartialArg(); + } + + public static com.google.cloud.aiplatform.v1beta1.PartialArg getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public PartialArg parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.PartialArg getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartialArgOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartialArgOrBuilder.java new file mode 100644 index 000000000000..ab19a4a6225d --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartialArgOrBuilder.java @@ -0,0 +1,204 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/tool.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +public interface PartialArgOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.PartialArg) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the nullValue field is set. + */ + boolean hasNullValue(); + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The enum numeric value on the wire for nullValue. + */ + int getNullValueValue(); + + /** + * + * + *
+   * Optional. Represents a null value.
+   * 
+ * + * .google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The nullValue. + */ + com.google.protobuf.NullValue getNullValue(); + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the numberValue field is set. + */ + boolean hasNumberValue(); + + /** + * + * + *
+   * Optional. Represents a double value.
+   * 
+ * + * double number_value = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The numberValue. + */ + double getNumberValue(); + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the stringValue field is set. + */ + boolean hasStringValue(); + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The stringValue. + */ + java.lang.String getStringValue(); + + /** + * + * + *
+   * Optional. Represents a string value.
+   * 
+ * + * string string_value = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for stringValue. + */ + com.google.protobuf.ByteString getStringValueBytes(); + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return Whether the boolValue field is set. + */ + boolean hasBoolValue(); + + /** + * + * + *
+   * Optional. Represents a boolean value.
+   * 
+ * + * bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The boolValue. + */ + boolean getBoolValue(); + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The jsonPath. + */ + java.lang.String getJsonPath(); + + /** + * + * + *
+   * Required. A JSON Path (RFC 9535) to the argument being streamed.
+   * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
+   * 
+ * + * string json_path = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for jsonPath. + */ + com.google.protobuf.ByteString getJsonPathBytes(); + + /** + * + * + *
+   * Optional. Whether this is not the last part of the same json_path.
+   * If true, another PartialArg message for the current json_path is expected
+   * to follow.
+   * 
+ * + * bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The willContinue. + */ + boolean getWillContinue(); + + com.google.cloud.aiplatform.v1beta1.PartialArg.DeltaCase getDeltaCase(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpec.java index a6cf07918b00..2fcacb8beb8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpecOrBuilder.java index bed349f0bc2f..0a5a346a8373 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PartnerModelTuningSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequest.java index bd9cab02a1ad..0de452a38c90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java index 0b2e3c5ea2c9..0a8f17796a81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequest.java index 8523f735a280..98b81e73619b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequestOrBuilder.java index 4efdf43a50c9..c8f9162f8795 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PauseScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpec.java index a0b2a74f2a08..379c084be2ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpecOrBuilder.java index 48b1c2ad1091..7fd918ba2af7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentDiskSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResource.java index c6e95763e75b..0fb996708007 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceName.java index e6ae01cf9d68..62a57bb4b2e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceOrBuilder.java index 93cbc57bd3f2..b2b7ce7241b3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceProto.java index 5ef127278234..478081f19cc1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceProto.java index a7d15f409d19..06fb91235e3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PersistentResourceServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Pipeline.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Pipeline.java index 83b585ada360..f33cb171cba1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Pipeline.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Pipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicy.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicy.java index de4df8fe907a..d9994813a5fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicy.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicyProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicyProto.java index 9a8a9c840efb..ddc59947164c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicyProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineFailurePolicyProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJob.java index d4919de67e34..34abecef15cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetail.java index d7c3ccf0ef61..db544648235f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetailOrBuilder.java index 5b7f2abf6b3a..49060a18cba9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobName.java index ab4815a874df..24bfadf7cfe1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobOrBuilder.java index 11f95ef13072..23a8fde01e66 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceProto.java index eb8767bef1ef..47462a9cb091 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineState.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineState.java index f44705fe470f..f409b59ce73d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineState.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineStateProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineStateProto.java index 4d8d0eb5a69a..d72039832814 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineStateProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineStateProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetail.java index 4d1d24c281fd..eaece17dff3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetailOrBuilder.java index 9b9f490a777a..d5a0ae392d74 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetail.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetail.java index 4006803058d6..5c9616a86c3b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetail.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetailOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetailOrBuilder.java index c49a71697950..c17e7fe01cfc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetailOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskExecutorDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfig.java index c0dbbc07f70e..7abb6821e770 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfigOrBuilder.java index 9384d91d0e62..1c0836bfeff0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTaskRerunConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadata.java index 5d2509499772..298a57eafb33 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadataOrBuilder.java index 547e11e7ef0f..48d4b566ff02 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PipelineTemplateMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInput.java index 11eb74b263e6..476f43eccbc6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInputOrBuilder.java index 4562453847fc..dbabd797edad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstance.java index f8c95b8b1ef2..cd6fd32d1392 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstanceOrBuilder.java index 36686a5e0487..83bae2238042 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResult.java index 7f21f23e13ee..b7cc8a0017f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResultOrBuilder.java index 8fea59339d42..aace631cdef2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpec.java index 00da1774c7c2..892fabb636a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpecOrBuilder.java index 22b6132cab45..bcf102ad23d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PointwiseMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Port.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Port.java index e906918e422a..af3372ac652b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Port.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Port.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PortOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PortOrBuilder.java index ad2ff5131060..27f5915f0825 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PortOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PortOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfig.java index e9a063c7f45c..5448c932ab23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfigOrBuilder.java index 1bc06bcc099f..5d9f3092bd18 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PostStartupScriptConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModel.java index e58bf1248754..fc9a2190392a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModelOrBuilder.java index 2fa0ae1f259e..b35b0f2f4854 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PreTunedModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfig.java index 82e5d3bbee1f..0b0a031c7539 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfigOrBuilder.java index 7a5885f83cbf..8594a0f3a788 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrebuiltVoiceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplit.java index e1d3d863daee..8912b9bde580 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplitOrBuilder.java index 867fff8fc04f..a27a273a60fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredefinedSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadata.java index 5e5c2b293137..8bf9953fef17 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadataOrBuilder.java index f0d6a146c04d..10ab7f5788e4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponse.java index bace33c0d593..660b9686a704 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponseOrBuilder.java index bf823a533465..6aa15f95d882 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictLongRunningResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequest.java index 273ee8dc9905..6878081faa27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestOrBuilder.java index 8df626611b07..51763e173108 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfig.java index 66e81c22690b..f2490d39d51a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfigOrBuilder.java index 0e3efd4dc1e6..bef2b95b6bdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictRequestResponseLoggingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponse.java index 11c4ca3242b4..2477e72fbdb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponseOrBuilder.java index 4a9c908336b8..25bedac08553 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemata.java index 894fe167f7ff..90c6beabb48c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemataOrBuilder.java index 274df50f3996..b7b35d8fef47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictSchemataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceProto.java index dc6f48621121..907ab52cef64 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PredictionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Presets.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Presets.java index 31b4439ceca0..7caf2160124b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Presets.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Presets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PresetsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PresetsOrBuilder.java index a2b8c44e7bab..dfcf6df8a418 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PresetsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PresetsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpoints.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpoints.java index a53463822e5a..66c3babe4d66 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpoints.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpointsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpointsOrBuilder.java index d74a5e0b0217..7ca1cd586d69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpointsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateEndpointsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfig.java index d4ffb98cb25e..c74de7398bde 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfigOrBuilder.java index be9ad3cb451e..6022b9f264a1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PrivateServiceConnectConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Probe.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Probe.java index fa8041b9dd59..cb0bffce0587 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Probe.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Probe.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProbeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProbeOrBuilder.java index dc4e1531a085..55bc03206679 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProbeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProbeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProjectName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProjectName.java index 485835deb920..3fb5e9112658 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProjectName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ProjectName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpoints.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpoints.java index 4232263c015b..6b7a9541e024 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpoints.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpointsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpointsOrBuilder.java index f6983ece3523..68f1123c949f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpointsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscAutomatedEndpointsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfig.java index 72c7f7f2311d..8de8bf8b55be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfigOrBuilder.java index 80196049377e..4a4dbb57cb32 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PscInterfaceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModel.java index 0c5dfe516e3a..02ad68ca880a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfig.java index 582b6eac1a77..403945318d91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfigOrBuilder.java index 04c933d8239e..9c2dab9c708b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptance.java index 0b41a4680f46..e6f18a440631 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptanceOrBuilder.java index 04e597c53023..7f7cc824fa3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelEulaAcceptanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelName.java index 7f9e466eb4e6..f540d6bb73ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelOrBuilder.java index 62ee4c2dca7a..b513496dd5a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelProto.java index bc6ed0393608..06bfc55b7331 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelView.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelView.java index 32ce08db4f52..3e56647a38cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelView.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PublisherModelView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadata.java index 749661559b0a..954018d6b9bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadataOrBuilder.java index 33a8eb6ed084..09824033f94c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequest.java index 46f5e31e334e..86e21f1bda8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequestOrBuilder.java index 7d31f5919c4a..a25902dd7a48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponse.java index 7b98794d50e7..18e04d72e1b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponseOrBuilder.java index 2b250f675303..2bbee256cd99 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadata.java index 7dfd01122766..2c7cfccd8f04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadataOrBuilder.java index cd48d18492b8..e8390dc112f0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequest.java index 3029667a9dc3..daa7e0a08761 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequestOrBuilder.java index 53c386293021..ba411a162111 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponse.java index 902f73479c80..57b716470bae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponseOrBuilder.java index 1811251f5c83..2c82411dff50 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeContextsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadata.java index dc1b4be8f872..8132d87b0919 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadataOrBuilder.java index 6c12283278c0..0eba62bdeb80 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequest.java index 4c7a549ac4b1..cbd4345680a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequestOrBuilder.java index 50b939ac8313..cc8fc12bd49c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponse.java index b9520ad86028..26aa8055a3cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponseOrBuilder.java index b7c49868668c..2943e267f8fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PurgeExecutionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpec.java index 6785622dc1de..9dd851844ec9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpecOrBuilder.java index d680ef211c31..d75ad3ceda43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/PythonPackageSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequest.java index 4176a71fdc28..6c4a1ed647cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequestOrBuilder.java index b24247898883..7e110223c57d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryArtifactLineageSubgraphRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequest.java index a474515e12d5..432697ff9a67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequestOrBuilder.java index b8df5d953e7a..a7a46d2b4b07 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryContextLineageSubgraphRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequest.java index 68f301e778f5..e3238010157b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequestOrBuilder.java index 01c1f44f335e..a9b261a34539 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponse.java index 114740ee51a8..a97d5d1949eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponseOrBuilder.java index 25ebdd09ee99..9ec1eee97d24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryDeployedModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequest.java index 44d1cb5bd1f5..74349bc8fe07 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequestOrBuilder.java index 063553194c56..230bdc152559 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExecutionInputsAndOutputsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequest.java index fc64791a6e94..ce448025e69e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequestOrBuilder.java index 48c1c610c6b2..80e4e43d6d75 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponse.java index f5cccbe67cca..619e4709893d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponseOrBuilder.java index 90e298c3e95a..d20c3776cb71 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryExtensionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequest.java index f37abf689d06..070b032b078e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequestOrBuilder.java index 3383f26cded1..395b5e4a8f15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponse.java index bbd80ba117ac..d60a552db4de 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponseOrBuilder.java index 080c30fd74b2..2a723c6fdc9b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QueryReasoningEngineResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInput.java index 6393c2d1a6f3..97921805120a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInputOrBuilder.java index df2349dda295..ea6c32df22e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstance.java index e12abd07e1ae..795949652873 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstanceOrBuilder.java index 3f3aa3e6f21c..344226989284 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResult.java index 20152b6d0a7c..daae3f74ca9c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResultOrBuilder.java index 7c4ad386f4a1..d5ddf3fd2d89 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpec.java index dd2c7c6bf803..cc4556cd4f5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpecOrBuilder.java index b58425f08c86..4e10b99fa29e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringCorrectnessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInput.java index 199d2f3dec44..c02900689cc2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInputOrBuilder.java index 80e70512928e..09b3cdd16483 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstance.java index 8bfe1a3c2c25..4d956ca0d9db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java index e5ef753ed73e..87d52c1c8be6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResult.java index 1b46b91e592d..44b752607d41 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResultOrBuilder.java index d0e4335e2d88..7b4304ae0e67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpec.java index 96e1c53ab450..15b1e1b834a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpecOrBuilder.java index ec97280997e4..74f13abad604 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringHelpfulnessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInput.java index e38e8a3dc85d..9e44362e9942 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInputOrBuilder.java index 76d205b3619d..f2f8deee7669 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstance.java index 5ab3ad5be500..09526fb2443f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstanceOrBuilder.java index 00c85f0979be..156494ea8424 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResult.java index b7d5a7756fcc..c7eb1d7f2eb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResultOrBuilder.java index 6b361f08e102..a59689956f74 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpec.java index a925ffc8d66c..6036e5cb8b1f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpecOrBuilder.java index 28bb090aabdf..063c1d02c52b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInput.java index 40bcc002842a..7e290893dbe3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInputOrBuilder.java index 76abd493dffc..c9b414c647e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstance.java index 31625ff7063a..83f156cdede0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstanceOrBuilder.java index b566e5193817..4ed8f9857663 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResult.java index 873e458dbc4f..3d8297f49804 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResultOrBuilder.java index ed0d218a4a59..cc5cc384a370 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpec.java index 0d672adbba29..4f2dd2b52553 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpecOrBuilder.java index de2f89f362b2..74c700600198 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/QuestionAnsweringRelevanceSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunk.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunk.java index 6d304ec5f99f..ca03dd0dd9bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunk.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunk.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunkOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunkOrBuilder.java index de524c29a596..5138ba260a54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunkOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagChunkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContexts.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContexts.java index a89ff4cc9f77..2d326ba0a520 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContexts.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContextsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContextsOrBuilder.java index 3b6afc293b5f..e667140c031d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContextsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagContextsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpus.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpus.java index 0cef861b82bf..cee3dad060a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpus.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -3048,7 +3048,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_embedding_model_config is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=348 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=360 * @return Whether the ragEmbeddingModelConfig field is set. */ @java.lang.Override @@ -3069,7 +3069,7 @@ public boolean hasRagEmbeddingModelConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_embedding_model_config is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=348 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=360 * @return The ragEmbeddingModelConfig. */ @java.lang.Override @@ -3115,7 +3115,7 @@ public com.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig getRagEmbeddi * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_vector_db_config is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=355 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=367 * @return Whether the ragVectorDbConfig field is set. */ @java.lang.Override @@ -3136,7 +3136,7 @@ public boolean hasRagVectorDbConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_vector_db_config is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=355 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=367 * @return The ragVectorDbConfig. */ @java.lang.Override @@ -3338,6 +3338,9 @@ public com.google.cloud.aiplatform.v1beta1.CorpusStatusOrBuilder getCorpusStatus * *
    * Output only. Number of RagFiles in the RagCorpus.
+   *
+   * NOTE: This field is not populated in the response of
+   * [VertexRagDataService.ListRagCorpora][google.cloud.aiplatform.v1beta1.VertexRagDataService.ListRagCorpora].
    * 
* * int32 rag_files_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3477,6 +3480,44 @@ public com.google.cloud.aiplatform.v1beta1.RagCorpus.CorpusTypeConfig getCorpusT : corpusTypeConfig_; } + public static final int SATISFIES_PZS_FIELD_NUMBER = 19; + private boolean satisfiesPzs_ = false; + + /** + * + * + *
+   * Output only. Reserved for future use.
+   * 
+ * + * bool satisfies_pzs = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The satisfiesPzs. + */ + @java.lang.Override + public boolean getSatisfiesPzs() { + return satisfiesPzs_; + } + + public static final int SATISFIES_PZI_FIELD_NUMBER = 20; + private boolean satisfiesPzi_ = false; + + /** + * + * + *
+   * Output only. Reserved for future use.
+   * 
+ * + * bool satisfies_pzi = 20 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The satisfiesPzi. + */ + @java.lang.Override + public boolean getSatisfiesPzi() { + return satisfiesPzi_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -3532,6 +3573,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000040) != 0)) { output.writeMessage(13, getCorpusTypeConfig()); } + if (satisfiesPzs_ != false) { + output.writeBool(19, satisfiesPzs_); + } + if (satisfiesPzi_ != false) { + output.writeBool(20, satisfiesPzi_); + } getUnknownFields().writeTo(output); } @@ -3585,6 +3632,12 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000040) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(13, getCorpusTypeConfig()); } + if (satisfiesPzs_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(19, satisfiesPzs_); + } + if (satisfiesPzi_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(20, satisfiesPzi_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -3633,6 +3686,8 @@ public boolean equals(final java.lang.Object obj) { if (hasCorpusTypeConfig()) { if (!getCorpusTypeConfig().equals(other.getCorpusTypeConfig())) return false; } + if (getSatisfiesPzs() != other.getSatisfiesPzs()) return false; + if (getSatisfiesPzi() != other.getSatisfiesPzi()) return false; if (!getBackendConfigCase().equals(other.getBackendConfigCase())) return false; switch (backendConfigCase_) { case 9: @@ -3691,6 +3746,10 @@ public int hashCode() { hash = (37 * hash) + CORPUS_TYPE_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getCorpusTypeConfig().hashCode(); } + hash = (37 * hash) + SATISFIES_PZS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getSatisfiesPzs()); + hash = (37 * hash) + SATISFIES_PZI_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getSatisfiesPzi()); switch (backendConfigCase_) { case 9: hash = (37 * hash) + VECTOR_DB_CONFIG_FIELD_NUMBER; @@ -3904,6 +3963,8 @@ public Builder clear() { corpusTypeConfigBuilder_.dispose(); corpusTypeConfigBuilder_ = null; } + satisfiesPzs_ = false; + satisfiesPzi_ = false; backendConfigCase_ = 0; backendConfig_ = null; return this; @@ -3993,6 +4054,12 @@ private void buildPartial0(com.google.cloud.aiplatform.v1beta1.RagCorpus result) corpusTypeConfigBuilder_ == null ? corpusTypeConfig_ : corpusTypeConfigBuilder_.build(); to_bitField0_ |= 0x00000040; } + if (((from_bitField0_ & 0x00002000) != 0)) { + result.satisfiesPzs_ = satisfiesPzs_; + } + if (((from_bitField0_ & 0x00004000) != 0)) { + result.satisfiesPzi_ = satisfiesPzi_; + } result.bitField0_ |= to_bitField0_; } @@ -4091,6 +4158,12 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.RagCorpus other) { if (other.hasCorpusTypeConfig()) { mergeCorpusTypeConfig(other.getCorpusTypeConfig()); } + if (other.getSatisfiesPzs() != false) { + setSatisfiesPzs(other.getSatisfiesPzs()); + } + if (other.getSatisfiesPzi() != false) { + setSatisfiesPzi(other.getSatisfiesPzi()); + } switch (other.getBackendConfigCase()) { case VECTOR_DB_CONFIG: { @@ -4215,6 +4288,18 @@ public Builder mergeFrom( bitField0_ |= 0x00001000; break; } // case 106 + case 152: + { + satisfiesPzs_ = input.readBool(); + bitField0_ |= 0x00002000; + break; + } // case 152 + case 160: + { + satisfiesPzi_ = input.readBool(); + bitField0_ |= 0x00004000; + break; + } // case 160 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -5093,7 +5178,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_embedding_model_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=348 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=360 * @return Whether the ragEmbeddingModelConfig field is set. */ @java.lang.Deprecated @@ -5113,7 +5198,7 @@ public boolean hasRagEmbeddingModelConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_embedding_model_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=348 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=360 * @return The ragEmbeddingModelConfig. */ @java.lang.Deprecated @@ -5325,7 +5410,7 @@ public Builder clearRagEmbeddingModelConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_vector_db_config is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=355 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=367 * @return Whether the ragVectorDbConfig field is set. */ @java.lang.Deprecated @@ -5345,7 +5430,7 @@ public boolean hasRagVectorDbConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_vector_db_config is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=355 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=367 * @return The ragVectorDbConfig. */ @java.lang.Deprecated @@ -6181,6 +6266,9 @@ public com.google.cloud.aiplatform.v1beta1.CorpusStatusOrBuilder getCorpusStatus * *
      * Output only. Number of RagFiles in the RagCorpus.
+     *
+     * NOTE: This field is not populated in the response of
+     * [VertexRagDataService.ListRagCorpora][google.cloud.aiplatform.v1beta1.VertexRagDataService.ListRagCorpora].
      * 
* * int32 rag_files_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6197,6 +6285,9 @@ public int getRagFilesCount() { * *
      * Output only. Number of RagFiles in the RagCorpus.
+     *
+     * NOTE: This field is not populated in the response of
+     * [VertexRagDataService.ListRagCorpora][google.cloud.aiplatform.v1beta1.VertexRagDataService.ListRagCorpora].
      * 
* * int32 rag_files_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6217,6 +6308,9 @@ public Builder setRagFilesCount(int value) { * *
      * Output only. Number of RagFiles in the RagCorpus.
+     *
+     * NOTE: This field is not populated in the response of
+     * [VertexRagDataService.ListRagCorpora][google.cloud.aiplatform.v1beta1.VertexRagDataService.ListRagCorpora].
      * 
* * int32 rag_files_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6691,6 +6785,118 @@ public Builder clearCorpusTypeConfig() { return corpusTypeConfigBuilder_; } + private boolean satisfiesPzs_; + + /** + * + * + *
+     * Output only. Reserved for future use.
+     * 
+ * + * bool satisfies_pzs = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The satisfiesPzs. + */ + @java.lang.Override + public boolean getSatisfiesPzs() { + return satisfiesPzs_; + } + + /** + * + * + *
+     * Output only. Reserved for future use.
+     * 
+ * + * bool satisfies_pzs = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @param value The satisfiesPzs to set. + * @return This builder for chaining. + */ + public Builder setSatisfiesPzs(boolean value) { + + satisfiesPzs_ = value; + bitField0_ |= 0x00002000; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. Reserved for future use.
+     * 
+ * + * bool satisfies_pzs = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return This builder for chaining. + */ + public Builder clearSatisfiesPzs() { + bitField0_ = (bitField0_ & ~0x00002000); + satisfiesPzs_ = false; + onChanged(); + return this; + } + + private boolean satisfiesPzi_; + + /** + * + * + *
+     * Output only. Reserved for future use.
+     * 
+ * + * bool satisfies_pzi = 20 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The satisfiesPzi. + */ + @java.lang.Override + public boolean getSatisfiesPzi() { + return satisfiesPzi_; + } + + /** + * + * + *
+     * Output only. Reserved for future use.
+     * 
+ * + * bool satisfies_pzi = 20 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @param value The satisfiesPzi to set. + * @return This builder for chaining. + */ + public Builder setSatisfiesPzi(boolean value) { + + satisfiesPzi_ = value; + bitField0_ |= 0x00004000; + onChanged(); + return this; + } + + /** + * + * + *
+     * Output only. Reserved for future use.
+     * 
+ * + * bool satisfies_pzi = 20 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return This builder for chaining. + */ + public Builder clearSatisfiesPzi() { + bitField0_ = (bitField0_ & ~0x00004000); + satisfiesPzi_ = false; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusName.java index 1f13260f4a40..0971cb8cc01b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusOrBuilder.java index 2ae2b11f7044..a1ce9e6e5e61 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagCorpusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -205,7 +205,7 @@ public interface RagCorpusOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_embedding_model_config is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=348 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=360 * @return Whether the ragEmbeddingModelConfig field is set. */ @java.lang.Deprecated @@ -223,7 +223,7 @@ public interface RagCorpusOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_embedding_model_config is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=348 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=360 * @return The ragEmbeddingModelConfig. */ @java.lang.Deprecated @@ -256,7 +256,7 @@ public interface RagCorpusOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_vector_db_config is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=355 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=367 * @return Whether the ragVectorDbConfig field is set. */ @java.lang.Deprecated @@ -274,7 +274,7 @@ public interface RagCorpusOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.RagCorpus.rag_vector_db_config is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=355 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=367 * @return The ragVectorDbConfig. */ @java.lang.Deprecated @@ -422,6 +422,9 @@ public interface RagCorpusOrBuilder * *
    * Output only. Number of RagFiles in the RagCorpus.
+   *
+   * NOTE: This field is not populated in the response of
+   * [VertexRagDataService.ListRagCorpora][google.cloud.aiplatform.v1beta1.VertexRagDataService.ListRagCorpora].
    * 
* * int32 rag_files_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -526,5 +529,31 @@ public interface RagCorpusOrBuilder com.google.cloud.aiplatform.v1beta1.RagCorpus.CorpusTypeConfigOrBuilder getCorpusTypeConfigOrBuilder(); + /** + * + * + *
+   * Output only. Reserved for future use.
+   * 
+ * + * bool satisfies_pzs = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The satisfiesPzs. + */ + boolean getSatisfiesPzs(); + + /** + * + * + *
+   * Output only. Reserved for future use.
+   * 
+ * + * bool satisfies_pzi = 20 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The satisfiesPzi. + */ + boolean getSatisfiesPzi(); + com.google.cloud.aiplatform.v1beta1.RagCorpus.BackendConfigCase getBackendConfigCase(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfig.java index f5cabcf68b74..593072e65c73 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfigOrBuilder.java index 330a6332c08d..8f3fe7a79472 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEmbeddingModelConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfig.java index 5567976d1cee..de18e48e735b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigName.java index dce6e09a6aef..4d2388bda05e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigOrBuilder.java index 902a213be3f0..626bbe2c55c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagEngineConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFile.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFile.java index debfc2437242..cf8e5b1a43b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFile.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1041,7 +1041,7 @@ public com.google.cloud.aiplatform.v1beta1.FileStatusOrBuilder getFileStatusOrBu * * *
-   * Output only. The metadata for metadata search. The contents will be
+   * Output only. The metadata for metadata search. The user_metadata Needs to
    * be in JSON format.
    * 
* @@ -1066,7 +1066,7 @@ public java.lang.String getUserMetadata() { * * *
-   * Output only. The metadata for metadata search. The contents will be
+   * Output only. The metadata for metadata search. The user_metadata Needs to
    * be in JSON format.
    * 
* @@ -4452,7 +4452,7 @@ public com.google.cloud.aiplatform.v1beta1.FileStatusOrBuilder getFileStatusOrBu * * *
-     * Output only. The metadata for metadata search. The contents will be
+     * Output only. The metadata for metadata search. The user_metadata Needs to
      * be in JSON format.
      * 
* @@ -4476,7 +4476,7 @@ public java.lang.String getUserMetadata() { * * *
-     * Output only. The metadata for metadata search. The contents will be
+     * Output only. The metadata for metadata search. The user_metadata Needs to
      * be in JSON format.
      * 
* @@ -4500,7 +4500,7 @@ public com.google.protobuf.ByteString getUserMetadataBytes() { * * *
-     * Output only. The metadata for metadata search. The contents will be
+     * Output only. The metadata for metadata search. The user_metadata Needs to
      * be in JSON format.
      * 
* @@ -4523,7 +4523,7 @@ public Builder setUserMetadata(java.lang.String value) { * * *
-     * Output only. The metadata for metadata search. The contents will be
+     * Output only. The metadata for metadata search. The user_metadata Needs to
      * be in JSON format.
      * 
* @@ -4542,7 +4542,7 @@ public Builder clearUserMetadata() { * * *
-     * Output only. The metadata for metadata search. The contents will be
+     * Output only. The metadata for metadata search. The user_metadata Needs to
      * be in JSON format.
      * 
* diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfig.java index 35caa86d0718..feabb5524669 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -873,7 +873,7 @@ public boolean hasFixedLengthChunking() { * int32 chunk_size = 1 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_size is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=507 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=528 * @return The chunkSize. */ @java.lang.Override @@ -895,7 +895,7 @@ public int getChunkSize() { * int32 chunk_overlap = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_overlap is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=510 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=531 * @return The chunkOverlap. */ @java.lang.Override @@ -1613,7 +1613,7 @@ public Builder clearFixedLengthChunking() { * int32 chunk_size = 1 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_size is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=507 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=528 * @return The chunkSize. */ @java.lang.Override @@ -1632,7 +1632,7 @@ public int getChunkSize() { * int32 chunk_size = 1 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_size is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=507 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=528 * @param value The chunkSize to set. * @return This builder for chaining. */ @@ -1655,7 +1655,7 @@ public Builder setChunkSize(int value) { * int32 chunk_size = 1 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_size is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=507 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=528 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1678,7 +1678,7 @@ public Builder clearChunkSize() { * int32 chunk_overlap = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_overlap is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=510 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=531 * @return The chunkOverlap. */ @java.lang.Override @@ -1697,7 +1697,7 @@ public int getChunkOverlap() { * int32 chunk_overlap = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_overlap is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=510 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=531 * @param value The chunkOverlap to set. * @return This builder for chaining. */ @@ -1720,7 +1720,7 @@ public Builder setChunkOverlap(int value) { * int32 chunk_overlap = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_overlap is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=510 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=531 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfigOrBuilder.java index 1e19cadba1ad..f71a7983d920 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileChunkingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,7 +79,7 @@ public interface RagFileChunkingConfigOrBuilder * int32 chunk_size = 1 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_size is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=507 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=528 * @return The chunkSize. */ @java.lang.Deprecated @@ -95,7 +95,7 @@ public interface RagFileChunkingConfigOrBuilder * int32 chunk_overlap = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.chunk_overlap is deprecated. - * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=510 + * See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=531 * @return The chunkOverlap. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfig.java index d615b611de16..f7b781d0ecec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -178,7 +178,7 @@ public MetadataSourceCase getMetadataSourceCase() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -199,7 +199,7 @@ public boolean hasGcsMetadataSchemaSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -223,7 +223,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSource getGcsMetadataSchemaSource( * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -246,7 +246,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSource getGcsMetadataSchemaSource( *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a folder, the metadata schema will be read from
+   * If the user provides a folder, the metadata schema will be read from
    * the files that ends with "metadata_schema.json" in the directory.
    * 
* @@ -267,7 +267,7 @@ public boolean hasGoogleDriveMetadataSchemaSource() { *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a folder, the metadata schema will be read from
+   * If the user provides a folder, the metadata schema will be read from
    * the files that ends with "metadata_schema.json" in the directory.
    * 
* @@ -292,7 +292,7 @@ public boolean hasGoogleDriveMetadataSchemaSource() { *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a folder, the metadata schema will be read from
+   * If the user provides a folder, the metadata schema will be read from
    * the files that ends with "metadata_schema.json" in the directory.
    * 
* @@ -392,7 +392,7 @@ public com.google.protobuf.ByteString getInlineMetadataSchemaSourceBytes() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -413,7 +413,7 @@ public boolean hasGcsMetadataSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -437,7 +437,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSource getGcsMetadataSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -459,7 +459,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSourceOrBuilder getGcsMetadataSour *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a directory, the metadata will be read from
+   * If the user provides a directory, the metadata will be read from
    * the files that ends with "metadata.json" in the directory.
    * 
* @@ -479,7 +479,7 @@ public boolean hasGoogleDriveMetadataSource() { *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a directory, the metadata will be read from
+   * If the user provides a directory, the metadata will be read from
    * the files that ends with "metadata.json" in the directory.
    * 
* @@ -502,7 +502,7 @@ public com.google.cloud.aiplatform.v1beta1.GoogleDriveSource getGoogleDriveMetad *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a directory, the metadata will be read from
+   * If the user provides a directory, the metadata will be read from
    * the files that ends with "metadata.json" in the directory.
    * 
* @@ -1188,7 +1188,7 @@ public Builder clearMetadataSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1209,7 +1209,7 @@ public boolean hasGcsMetadataSchemaSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1240,7 +1240,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSource getGcsMetadataSchemaSource( * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1268,7 +1268,7 @@ public Builder setGcsMetadataSchemaSource(com.google.cloud.aiplatform.v1beta1.Gc * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1294,7 +1294,7 @@ public Builder setGcsMetadataSchemaSource( * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1334,7 +1334,7 @@ public Builder mergeGcsMetadataSchemaSource( * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1365,7 +1365,7 @@ public Builder clearGcsMetadataSchemaSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1384,7 +1384,7 @@ public Builder clearGcsMetadataSchemaSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1411,7 +1411,7 @@ public Builder clearGcsMetadataSchemaSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -1454,7 +1454,7 @@ public Builder clearGcsMetadataSchemaSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1475,7 +1475,7 @@ public boolean hasGoogleDriveMetadataSchemaSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1507,7 +1507,7 @@ public boolean hasGoogleDriveMetadataSchemaSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1536,7 +1536,7 @@ public Builder setGoogleDriveMetadataSchemaSource( *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1562,7 +1562,7 @@ public Builder setGoogleDriveMetadataSchemaSource( *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1602,7 +1602,7 @@ public Builder mergeGoogleDriveMetadataSchemaSource( *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1633,7 +1633,7 @@ public Builder clearGoogleDriveMetadataSchemaSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1652,7 +1652,7 @@ public Builder clearGoogleDriveMetadataSchemaSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1679,7 +1679,7 @@ public Builder clearGoogleDriveMetadataSchemaSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a folder, the metadata schema will be read from
+     * If the user provides a folder, the metadata schema will be read from
      * the files that ends with "metadata_schema.json" in the directory.
      * 
* @@ -1865,7 +1865,7 @@ public Builder setInlineMetadataSchemaSourceBytes(com.google.protobuf.ByteString * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -1886,7 +1886,7 @@ public boolean hasGcsMetadataSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -1917,7 +1917,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSource getGcsMetadataSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -1945,7 +1945,7 @@ public Builder setGcsMetadataSource(com.google.cloud.aiplatform.v1beta1.GcsSourc * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -1971,7 +1971,7 @@ public Builder setGcsMetadataSource( * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -2010,7 +2010,7 @@ public Builder mergeGcsMetadataSource(com.google.cloud.aiplatform.v1beta1.GcsSou * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -2041,7 +2041,7 @@ public Builder clearGcsMetadataSource() { * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -2059,7 +2059,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSource.Builder getGcsMetadataSourc * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -2085,7 +2085,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSourceOrBuilder getGcsMetadataSour * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -2127,7 +2127,7 @@ public com.google.cloud.aiplatform.v1beta1.GcsSourceOrBuilder getGcsMetadataSour *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2147,7 +2147,7 @@ public boolean hasGoogleDriveMetadataSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2177,7 +2177,7 @@ public com.google.cloud.aiplatform.v1beta1.GoogleDriveSource getGoogleDriveMetad *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2205,7 +2205,7 @@ public Builder setGoogleDriveMetadataSource( *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2230,7 +2230,7 @@ public Builder setGoogleDriveMetadataSource( *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2269,7 +2269,7 @@ public Builder mergeGoogleDriveMetadataSource( *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2299,7 +2299,7 @@ public Builder clearGoogleDriveMetadataSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2317,7 +2317,7 @@ public Builder clearGoogleDriveMetadataSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* @@ -2343,7 +2343,7 @@ public Builder clearGoogleDriveMetadataSource() { *
      * Google Drive location. Supports importing individual files as
      * well as Google Drive folders.
-     * If providing a directory, the metadata will be read from
+     * If the user provides a directory, the metadata will be read from
      * the files that ends with "metadata.json" in the directory.
      * 
* diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfigOrBuilder.java index 7a0805d436d2..0568c91e118b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileMetadataConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,7 +32,7 @@ public interface RagFileMetadataConfigOrBuilder * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -50,7 +50,7 @@ public interface RagFileMetadataConfigOrBuilder * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -68,7 +68,7 @@ public interface RagFileMetadataConfigOrBuilder * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata_schema.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata schema will be read from + * If the user provides a directory, the metadata schema will be read from * the files that ends with "metadata_schema.json" in the directory. * * @@ -82,7 +82,7 @@ public interface RagFileMetadataConfigOrBuilder *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a folder, the metadata schema will be read from
+   * If the user provides a folder, the metadata schema will be read from
    * the files that ends with "metadata_schema.json" in the directory.
    * 
* @@ -100,7 +100,7 @@ public interface RagFileMetadataConfigOrBuilder *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a folder, the metadata schema will be read from
+   * If the user provides a folder, the metadata schema will be read from
    * the files that ends with "metadata_schema.json" in the directory.
    * 
* @@ -118,7 +118,7 @@ public interface RagFileMetadataConfigOrBuilder *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a folder, the metadata schema will be read from
+   * If the user provides a folder, the metadata schema will be read from
    * the files that ends with "metadata_schema.json" in the directory.
    * 
* @@ -176,7 +176,7 @@ public interface RagFileMetadataConfigOrBuilder * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -194,7 +194,7 @@ public interface RagFileMetadataConfigOrBuilder * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -212,7 +212,7 @@ public interface RagFileMetadataConfigOrBuilder * well as entire Google Cloud Storage directories. Sample formats: * - `gs://bucket_name/my_directory/object_name/metadata.json` * - `gs://bucket_name/my_directory` - * If providing a directory, the metadata will be read from + * If the user provides a directory, the metadata will be read from * the files that ends with "metadata.json" in the directory. * * @@ -226,7 +226,7 @@ public interface RagFileMetadataConfigOrBuilder *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a directory, the metadata will be read from
+   * If the user provides a directory, the metadata will be read from
    * the files that ends with "metadata.json" in the directory.
    * 
* @@ -243,7 +243,7 @@ public interface RagFileMetadataConfigOrBuilder *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a directory, the metadata will be read from
+   * If the user provides a directory, the metadata will be read from
    * the files that ends with "metadata.json" in the directory.
    * 
* @@ -260,7 +260,7 @@ public interface RagFileMetadataConfigOrBuilder *
    * Google Drive location. Supports importing individual files as
    * well as Google Drive folders.
-   * If providing a directory, the metadata will be read from
+   * If the user provides a directory, the metadata will be read from
    * the files that ends with "metadata.json" in the directory.
    * 
* diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileName.java index 236ef2e5d7ab..540f26814fbf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileOrBuilder.java index 93870200ec02..00cec0343442 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -525,7 +525,7 @@ public interface RagFileOrBuilder * * *
-   * Output only. The metadata for metadata search. The contents will be
+   * Output only. The metadata for metadata search. The user_metadata Needs to
    * be in JSON format.
    * 
* @@ -539,7 +539,7 @@ public interface RagFileOrBuilder * * *
-   * Output only. The metadata for metadata search. The contents will be
+   * Output only. The metadata for metadata search. The user_metadata Needs to
    * be in JSON format.
    * 
* diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfig.java index 8514dc49e3e5..96eeb11d5983 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -3036,7 +3036,7 @@ public com.google.cloud.aiplatform.v1beta1.RagFileParsingConfig.LlmParser getLlm * bool use_advanced_pdf_parsing = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileParsingConfig.use_advanced_pdf_parsing is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=595 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=616 * @return The useAdvancedPdfParsing. */ @java.lang.Override @@ -4256,7 +4256,7 @@ public Builder clearLlmParser() { * bool use_advanced_pdf_parsing = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileParsingConfig.use_advanced_pdf_parsing is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=595 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=616 * @return The useAdvancedPdfParsing. */ @java.lang.Override @@ -4275,7 +4275,7 @@ public boolean getUseAdvancedPdfParsing() { * bool use_advanced_pdf_parsing = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileParsingConfig.use_advanced_pdf_parsing is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=595 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=616 * @param value The useAdvancedPdfParsing to set. * @return This builder for chaining. */ @@ -4298,7 +4298,7 @@ public Builder setUseAdvancedPdfParsing(boolean value) { * bool use_advanced_pdf_parsing = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileParsingConfig.use_advanced_pdf_parsing is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=595 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=616 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfigOrBuilder.java index 8d6cac10b0a7..5db3f41f5e9d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileParsingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -154,7 +154,7 @@ public interface RagFileParsingConfigOrBuilder * bool use_advanced_pdf_parsing = 2 [deprecated = true]; * * @deprecated google.cloud.aiplatform.v1beta1.RagFileParsingConfig.use_advanced_pdf_parsing is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=595 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=616 * @return The useAdvancedPdfParsing. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfig.java index 2d1b53f44c33..ce39cd22e363 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfigOrBuilder.java index 37e4c066d4a4..ca047aa2dd34 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagFileTransformationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfig.java index 25bf7bd5483b..b46c8c6e03cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -72,7 +72,6 @@ public interface EnterpriseOrBuilder * * *
-   * Deprecated: Please use `Scaled` tier instead.
    * Enterprise tier offers production grade performance along with
    * autoscaling functionality. It is suitable for customers with large
    * amounts of data or performance sensitive workloads.
@@ -273,7 +272,6 @@ protected Builder newBuilderForType(
      *
      *
      * 
-     * Deprecated: Please use `Scaled` tier instead.
      * Enterprise tier offers production grade performance along with
      * autoscaling functionality. It is suitable for customers with large
      * amounts of data or performance sensitive workloads.
@@ -1897,9 +1895,7 @@ public TierCase getTierCase() {
    *
    *
    * 
-   * Deprecated: Please use `Scaled` tier instead.
-   * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-   * if not explicitly chosen.
+   * Sets the RagManagedDb to the Enterprise tier.
    * 
* * @@ -1907,7 +1903,7 @@ public TierCase getTierCase() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagManagedDbConfig.enterprise is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=796 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=814 * @return Whether the enterprise field is set. */ @java.lang.Override @@ -1920,9 +1916,7 @@ public boolean hasEnterprise() { * * *
-   * Deprecated: Please use `Scaled` tier instead.
-   * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-   * if not explicitly chosen.
+   * Sets the RagManagedDb to the Enterprise tier.
    * 
* * @@ -1930,7 +1924,7 @@ public boolean hasEnterprise() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagManagedDbConfig.enterprise is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=796 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=814 * @return The enterprise. */ @java.lang.Override @@ -1946,9 +1940,7 @@ public com.google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Enterprise getEnte * * *
-   * Deprecated: Please use `Scaled` tier instead.
-   * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-   * if not explicitly chosen.
+   * Sets the RagManagedDb to the Enterprise tier.
    * 
* * @@ -1971,7 +1963,8 @@ public com.google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Enterprise getEnte * * *
-   * Sets the RagManagedDb to the Scaled tier.
+   * Sets the RagManagedDb to the Scaled tier. This is the default tier
+   * if not explicitly chosen.
    * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -1987,7 +1980,8 @@ public boolean hasScaled() { * * *
-   * Sets the RagManagedDb to the Scaled tier.
+   * Sets the RagManagedDb to the Scaled tier. This is the default tier
+   * if not explicitly chosen.
    * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -2006,7 +2000,8 @@ public com.google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled getScaled() * * *
-   * Sets the RagManagedDb to the Scaled tier.
+   * Sets the RagManagedDb to the Scaled tier. This is the default tier
+   * if not explicitly chosen.
    * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -2631,9 +2626,7 @@ public Builder clearTier() { * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2641,7 +2634,7 @@ public Builder clearTier() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagManagedDbConfig.enterprise is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=796 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=814 * @return Whether the enterprise field is set. */ @java.lang.Override @@ -2654,9 +2647,7 @@ public boolean hasEnterprise() { * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2664,7 +2655,7 @@ public boolean hasEnterprise() { * * * @deprecated google.cloud.aiplatform.v1beta1.RagManagedDbConfig.enterprise is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=796 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=814 * @return The enterprise. */ @java.lang.Override @@ -2689,9 +2680,7 @@ public com.google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Enterprise getEnte * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2718,9 +2707,7 @@ public Builder setEnterprise( * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2744,9 +2731,7 @@ public Builder setEnterprise( * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2785,9 +2770,7 @@ public Builder mergeEnterprise( * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2816,9 +2799,7 @@ public Builder clearEnterprise() { * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2835,9 +2816,7 @@ public Builder clearEnterprise() { * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2863,9 +2842,7 @@ public Builder clearEnterprise() { * * *
-     * Deprecated: Please use `Scaled` tier instead.
-     * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-     * if not explicitly chosen.
+     * Sets the RagManagedDb to the Enterprise tier.
      * 
* * @@ -2908,7 +2885,8 @@ public Builder clearEnterprise() { * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -2924,7 +2902,8 @@ public boolean hasScaled() { * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -2950,7 +2929,8 @@ public com.google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled getScaled() * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -2973,7 +2953,8 @@ public Builder setScaled(com.google.cloud.aiplatform.v1beta1.RagManagedDbConfig. * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -2994,7 +2975,8 @@ public Builder setScaled( * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -3030,7 +3012,8 @@ public Builder mergeScaled( * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -3056,7 +3039,8 @@ public Builder clearScaled() { * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -3070,7 +3054,8 @@ public Builder clearScaled() { * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -3092,7 +3077,8 @@ public Builder clearScaled() { * * *
-     * Sets the RagManagedDb to the Scaled tier.
+     * Sets the RagManagedDb to the Scaled tier. This is the default tier
+     * if not explicitly chosen.
      * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfigOrBuilder.java index d463d0277058..a4bd1180fc8c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagManagedDbConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,9 +28,7 @@ public interface RagManagedDbConfigOrBuilder * * *
-   * Deprecated: Please use `Scaled` tier instead.
-   * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-   * if not explicitly chosen.
+   * Sets the RagManagedDb to the Enterprise tier.
    * 
* * @@ -38,7 +36,7 @@ public interface RagManagedDbConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.RagManagedDbConfig.enterprise is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=796 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=814 * @return Whether the enterprise field is set. */ @java.lang.Deprecated @@ -48,9 +46,7 @@ public interface RagManagedDbConfigOrBuilder * * *
-   * Deprecated: Please use `Scaled` tier instead.
-   * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-   * if not explicitly chosen.
+   * Sets the RagManagedDb to the Enterprise tier.
    * 
* * @@ -58,7 +54,7 @@ public interface RagManagedDbConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.RagManagedDbConfig.enterprise is deprecated. See - * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=796 + * google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=814 * @return The enterprise. */ @java.lang.Deprecated @@ -68,9 +64,7 @@ public interface RagManagedDbConfigOrBuilder * * *
-   * Deprecated: Please use `Scaled` tier instead.
-   * Sets the RagManagedDb to the Enterprise tier. This is the default tier
-   * if not explicitly chosen.
+   * Sets the RagManagedDb to the Enterprise tier.
    * 
* * @@ -85,7 +79,8 @@ public interface RagManagedDbConfigOrBuilder * * *
-   * Sets the RagManagedDb to the Scaled tier.
+   * Sets the RagManagedDb to the Scaled tier. This is the default tier
+   * if not explicitly chosen.
    * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -98,7 +93,8 @@ public interface RagManagedDbConfigOrBuilder * * *
-   * Sets the RagManagedDb to the Scaled tier.
+   * Sets the RagManagedDb to the Scaled tier. This is the default tier
+   * if not explicitly chosen.
    * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; @@ -111,7 +107,8 @@ public interface RagManagedDbConfigOrBuilder * * *
-   * Sets the RagManagedDb to the Scaled tier.
+   * Sets the RagManagedDb to the Scaled tier. This is the default tier
+   * if not explicitly chosen.
    * 
* * .google.cloud.aiplatform.v1beta1.RagManagedDbConfig.Scaled scaled = 4; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQuery.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQuery.java index a13b96d41a8d..8d84c01f107a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQuery.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQueryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQueryOrBuilder.java index 5573274aa85f..81a933f1df5c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQueryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfig.java index 8b5cfe8a9b31..7af80e07db0e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfigOrBuilder.java index 8d3c4f545aab..73173330b1dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagRetrievalConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfig.java index 85d00c6959fb..5ec64002db7d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -5768,6 +5768,725 @@ public com.google.protobuf.Parser getParserForType() { } } + public interface RagManagedVertexVectorSearchOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+     * Output only. The resource name of the Vector Search 2.0 Collection that
+     * RAG Created for the corpus. Only populated after the corpus is
+     * successfully created. Format:
+     * `projects/{project}/locations/{location}/collections/{collection_id}`
+     * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The collectionName. + */ + java.lang.String getCollectionName(); + + /** + * + * + *
+     * Output only. The resource name of the Vector Search 2.0 Collection that
+     * RAG Created for the corpus. Only populated after the corpus is
+     * successfully created. Format:
+     * `projects/{project}/locations/{location}/collections/{collection_id}`
+     * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The bytes for collectionName. + */ + com.google.protobuf.ByteString getCollectionNameBytes(); + } + + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch} + */ + public static final class RagManagedVertexVectorSearch + extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + RagManagedVertexVectorSearchOrBuilder { + private static final long serialVersionUID = 0L; + + // Use RagManagedVertexVectorSearch.newBuilder() to construct. + private RagManagedVertexVectorSearch( + com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private RagManagedVertexVectorSearch() { + collectionName_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new RagManagedVertexVectorSearch(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.VertexRagDataProto + .internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.VertexRagDataProto + .internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .class, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .Builder.class); + } + + public static final int COLLECTION_NAME_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object collectionName_ = ""; + + /** + * + * + *
+     * Output only. The resource name of the Vector Search 2.0 Collection that
+     * RAG Created for the corpus. Only populated after the corpus is
+     * successfully created. Format:
+     * `projects/{project}/locations/{location}/collections/{collection_id}`
+     * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The collectionName. + */ + @java.lang.Override + public java.lang.String getCollectionName() { + java.lang.Object ref = collectionName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + collectionName_ = s; + return s; + } + } + + /** + * + * + *
+     * Output only. The resource name of the Vector Search 2.0 Collection that
+     * RAG Created for the corpus. Only populated after the corpus is
+     * successfully created. Format:
+     * `projects/{project}/locations/{location}/collections/{collection_id}`
+     * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The bytes for collectionName. + */ + @java.lang.Override + public com.google.protobuf.ByteString getCollectionNameBytes() { + java.lang.Object ref = collectionName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + collectionName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, collectionName_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, collectionName_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch other = + (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) obj; + + if (!getCollectionName().equals(other.getCollectionName())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + COLLECTION_NAME_FIELD_NUMBER; + hash = (53 * hash) + getCollectionName().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearchOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.VertexRagDataProto + .internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.VertexRagDataProto + .internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .class, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .Builder.class); + } + + // Construct using + // com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + collectionName_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.VertexRagDataProto + .internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + build() { + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch result = + buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + buildPartial() { + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch result = + new com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch( + this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.collectionName_ = collectionName_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, + java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) { + return mergeFrom( + (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + other) { + if (other + == com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance()) return this; + if (!other.getCollectionName().isEmpty()) { + collectionName_ = other.collectionName_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + collectionName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object collectionName_ = ""; + + /** + * + * + *
+       * Output only. The resource name of the Vector Search 2.0 Collection that
+       * RAG Created for the corpus. Only populated after the corpus is
+       * successfully created. Format:
+       * `projects/{project}/locations/{location}/collections/{collection_id}`
+       * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The collectionName. + */ + public java.lang.String getCollectionName() { + java.lang.Object ref = collectionName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + collectionName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+       * Output only. The resource name of the Vector Search 2.0 Collection that
+       * RAG Created for the corpus. Only populated after the corpus is
+       * successfully created. Format:
+       * `projects/{project}/locations/{location}/collections/{collection_id}`
+       * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The bytes for collectionName. + */ + public com.google.protobuf.ByteString getCollectionNameBytes() { + java.lang.Object ref = collectionName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + collectionName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+       * Output only. The resource name of the Vector Search 2.0 Collection that
+       * RAG Created for the corpus. Only populated after the corpus is
+       * successfully created. Format:
+       * `projects/{project}/locations/{location}/collections/{collection_id}`
+       * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @param value The collectionName to set. + * @return This builder for chaining. + */ + public Builder setCollectionName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + collectionName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+       * Output only. The resource name of the Vector Search 2.0 Collection that
+       * RAG Created for the corpus. Only populated after the corpus is
+       * successfully created. Format:
+       * `projects/{project}/locations/{location}/collections/{collection_id}`
+       * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return This builder for chaining. + */ + public Builder clearCollectionName() { + collectionName_ = getDefaultInstance().getCollectionName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+       * Output only. The resource name of the Vector Search 2.0 Collection that
+       * RAG Created for the corpus. Only populated after the corpus is
+       * successfully created. Format:
+       * `projects/{project}/locations/{location}/collections/{collection_id}`
+       * 
+ * + * string collection_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @param value The bytes for collectionName to set. + * @return This builder for chaining. + */ + public Builder setCollectionNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + collectionName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + private static final com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearch + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch(); + } + + public static com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public RagManagedVertexVectorSearch parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + private int bitField0_; private int vectorDbCase_ = 0; @@ -5783,6 +6502,7 @@ public enum VectorDbCase PINECONE(3), VERTEX_FEATURE_STORE(4), VERTEX_VECTOR_SEARCH(6), + RAG_MANAGED_VERTEX_VECTOR_SEARCH(8), VECTORDB_NOT_SET(0); private final int value; @@ -5812,6 +6532,8 @@ public static VectorDbCase forNumber(int value) { return VERTEX_FEATURE_STORE; case 6: return VERTEX_VECTOR_SEARCH; + case 8: + return RAG_MANAGED_VERTEX_VECTOR_SEARCH; case 0: return VECTORDB_NOT_SET; default: @@ -6124,6 +6846,72 @@ public boolean hasVertexVectorSearch() { .getDefaultInstance(); } + public static final int RAG_MANAGED_VERTEX_VECTOR_SEARCH_FIELD_NUMBER = 8; + + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + * + * @return Whether the ragManagedVertexVectorSearch field is set. + */ + @java.lang.Override + public boolean hasRagManagedVertexVectorSearch() { + return vectorDbCase_ == 8; + } + + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + * + * @return The ragManagedVertexVectorSearch. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + getRagManagedVertexVectorSearch() { + if (vectorDbCase_ == 8) { + return (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + vectorDb_; + } + return com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } + + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearchOrBuilder + getRagManagedVertexVectorSearchOrBuilder() { + if (vectorDbCase_ == 8) { + return (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + vectorDb_; + } + return com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } + public static final int API_AUTH_FIELD_NUMBER = 5; private com.google.cloud.aiplatform.v1beta1.ApiAuth apiAuth_; @@ -6277,6 +7065,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(7, getRagEmbeddingModelConfig()); } + if (vectorDbCase_ == 8) { + output.writeMessage( + 8, + (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + vectorDb_); + } getUnknownFields().writeTo(output); } @@ -6320,6 +7114,13 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getRagEmbeddingModelConfig()); } + if (vectorDbCase_ == 8) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 8, + (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + vectorDb_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -6361,6 +7162,10 @@ public boolean equals(final java.lang.Object obj) { case 6: if (!getVertexVectorSearch().equals(other.getVertexVectorSearch())) return false; break; + case 8: + if (!getRagManagedVertexVectorSearch().equals(other.getRagManagedVertexVectorSearch())) + return false; + break; case 0: default: } @@ -6404,6 +7209,10 @@ public int hashCode() { hash = (37 * hash) + VERTEX_VECTOR_SEARCH_FIELD_NUMBER; hash = (53 * hash) + getVertexVectorSearch().hashCode(); break; + case 8: + hash = (37 * hash) + RAG_MANAGED_VERTEX_VECTOR_SEARCH_FIELD_NUMBER; + hash = (53 * hash) + getRagManagedVertexVectorSearch().hashCode(); + break; case 0: default: } @@ -6573,6 +7382,9 @@ public Builder clear() { if (vertexVectorSearchBuilder_ != null) { vertexVectorSearchBuilder_.clear(); } + if (ragManagedVertexVectorSearchBuilder_ != null) { + ragManagedVertexVectorSearchBuilder_.clear(); + } apiAuth_ = null; if (apiAuthBuilder_ != null) { apiAuthBuilder_.dispose(); @@ -6623,11 +7435,11 @@ public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig buildPartial() { private void buildPartial0(com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000020) != 0)) { + if (((from_bitField0_ & 0x00000040) != 0)) { result.apiAuth_ = apiAuthBuilder_ == null ? apiAuth_ : apiAuthBuilder_.build(); to_bitField0_ |= 0x00000001; } - if (((from_bitField0_ & 0x00000040) != 0)) { + if (((from_bitField0_ & 0x00000080) != 0)) { result.ragEmbeddingModelConfig_ = ragEmbeddingModelConfigBuilder_ == null ? ragEmbeddingModelConfig_ @@ -6655,6 +7467,9 @@ private void buildPartialOneofs(com.google.cloud.aiplatform.v1beta1.RagVectorDbC if (vectorDbCase_ == 6 && vertexVectorSearchBuilder_ != null) { result.vectorDb_ = vertexVectorSearchBuilder_.build(); } + if (vectorDbCase_ == 8 && ragManagedVertexVectorSearchBuilder_ != null) { + result.vectorDb_ = ragManagedVertexVectorSearchBuilder_.build(); + } } @java.lang.Override @@ -6735,6 +7550,11 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig o mergeVertexVectorSearch(other.getVertexVectorSearch()); break; } + case RAG_MANAGED_VERTEX_VECTOR_SEARCH: + { + mergeRagManagedVertexVectorSearch(other.getRagManagedVertexVectorSearch()); + break; + } case VECTORDB_NOT_SET: { break; @@ -6794,7 +7614,7 @@ public Builder mergeFrom( case 42: { input.readMessage(getApiAuthFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; break; } // case 42 case 50: @@ -6808,9 +7628,16 @@ public Builder mergeFrom( { input.readMessage( getRagEmbeddingModelConfigFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; break; } // case 58 + case 66: + { + input.readMessage( + getRagManagedVertexVectorSearchFieldBuilder().getBuilder(), extensionRegistry); + vectorDbCase_ = 8; + break; + } // case 66 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -8040,6 +8867,271 @@ public Builder clearVertexVectorSearch() { return vertexVectorSearchBuilder_; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .Builder, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearchOrBuilder> + ragManagedVertexVectorSearchBuilder_; + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + * + * @return Whether the ragManagedVertexVectorSearch field is set. + */ + @java.lang.Override + public boolean hasRagManagedVertexVectorSearch() { + return vectorDbCase_ == 8; + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + * + * @return The ragManagedVertexVectorSearch. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + getRagManagedVertexVectorSearch() { + if (ragManagedVertexVectorSearchBuilder_ == null) { + if (vectorDbCase_ == 8) { + return (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearch) + vectorDb_; + } + return com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } else { + if (vectorDbCase_ == 8) { + return ragManagedVertexVectorSearchBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + public Builder setRagManagedVertexVectorSearch( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch value) { + if (ragManagedVertexVectorSearchBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + vectorDb_ = value; + onChanged(); + } else { + ragManagedVertexVectorSearchBuilder_.setMessage(value); + } + vectorDbCase_ = 8; + return this; + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + public Builder setRagManagedVertexVectorSearch( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch.Builder + builderForValue) { + if (ragManagedVertexVectorSearchBuilder_ == null) { + vectorDb_ = builderForValue.build(); + onChanged(); + } else { + ragManagedVertexVectorSearchBuilder_.setMessage(builderForValue.build()); + } + vectorDbCase_ = 8; + return this; + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + public Builder mergeRagManagedVertexVectorSearch( + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch value) { + if (ragManagedVertexVectorSearchBuilder_ == null) { + if (vectorDbCase_ == 8 + && vectorDb_ + != com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearch.getDefaultInstance()) { + vectorDb_ = + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .newBuilder( + (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearch) + vectorDb_) + .mergeFrom(value) + .buildPartial(); + } else { + vectorDb_ = value; + } + onChanged(); + } else { + if (vectorDbCase_ == 8) { + ragManagedVertexVectorSearchBuilder_.mergeFrom(value); + } else { + ragManagedVertexVectorSearchBuilder_.setMessage(value); + } + } + vectorDbCase_ = 8; + return this; + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + public Builder clearRagManagedVertexVectorSearch() { + if (ragManagedVertexVectorSearchBuilder_ == null) { + if (vectorDbCase_ == 8) { + vectorDbCase_ = 0; + vectorDb_ = null; + onChanged(); + } + } else { + if (vectorDbCase_ == 8) { + vectorDbCase_ = 0; + vectorDb_ = null; + } + ragManagedVertexVectorSearchBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .Builder + getRagManagedVertexVectorSearchBuilder() { + return getRagManagedVertexVectorSearchFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearchOrBuilder + getRagManagedVertexVectorSearchOrBuilder() { + if ((vectorDbCase_ == 8) && (ragManagedVertexVectorSearchBuilder_ != null)) { + return ragManagedVertexVectorSearchBuilder_.getMessageOrBuilder(); + } else { + if (vectorDbCase_ == 8) { + return (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearch) + vectorDb_; + } + return com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } + } + + /** + * + * + *
+     * The config for the RAG-managed Vertex Vector Search 2.0.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .Builder, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearchOrBuilder> + getRagManagedVertexVectorSearchFieldBuilder() { + if (ragManagedVertexVectorSearchBuilder_ == null) { + if (!(vectorDbCase_ == 8)) { + vectorDb_ = + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .getDefaultInstance(); + } + ragManagedVertexVectorSearchBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + .Builder, + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig + .RagManagedVertexVectorSearchOrBuilder>( + (com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch) + vectorDb_, + getParentForChildren(), + isClean()); + vectorDb_ = null; + } + vectorDbCase_ = 8; + onChanged(); + return ragManagedVertexVectorSearchBuilder_; + } + private com.google.cloud.aiplatform.v1beta1.ApiAuth apiAuth_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.aiplatform.v1beta1.ApiAuth, @@ -8059,7 +9151,7 @@ public Builder clearVertexVectorSearch() { * @return Whether the apiAuth field is set. */ public boolean hasApiAuth() { - return ((bitField0_ & 0x00000020) != 0); + return ((bitField0_ & 0x00000040) != 0); } /** @@ -8101,7 +9193,7 @@ public Builder setApiAuth(com.google.cloud.aiplatform.v1beta1.ApiAuth value) { } else { apiAuthBuilder_.setMessage(value); } - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -8121,7 +9213,7 @@ public Builder setApiAuth(com.google.cloud.aiplatform.v1beta1.ApiAuth.Builder bu } else { apiAuthBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -8137,7 +9229,7 @@ public Builder setApiAuth(com.google.cloud.aiplatform.v1beta1.ApiAuth.Builder bu */ public Builder mergeApiAuth(com.google.cloud.aiplatform.v1beta1.ApiAuth value) { if (apiAuthBuilder_ == null) { - if (((bitField0_ & 0x00000020) != 0) + if (((bitField0_ & 0x00000040) != 0) && apiAuth_ != null && apiAuth_ != com.google.cloud.aiplatform.v1beta1.ApiAuth.getDefaultInstance()) { getApiAuthBuilder().mergeFrom(value); @@ -8148,7 +9240,7 @@ public Builder mergeApiAuth(com.google.cloud.aiplatform.v1beta1.ApiAuth value) { apiAuthBuilder_.mergeFrom(value); } if (apiAuth_ != null) { - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); } return this; @@ -8164,7 +9256,7 @@ public Builder mergeApiAuth(com.google.cloud.aiplatform.v1beta1.ApiAuth value) { * .google.cloud.aiplatform.v1beta1.ApiAuth api_auth = 5; */ public Builder clearApiAuth() { - bitField0_ = (bitField0_ & ~0x00000020); + bitField0_ = (bitField0_ & ~0x00000040); apiAuth_ = null; if (apiAuthBuilder_ != null) { apiAuthBuilder_.dispose(); @@ -8184,7 +9276,7 @@ public Builder clearApiAuth() { * .google.cloud.aiplatform.v1beta1.ApiAuth api_auth = 5; */ public com.google.cloud.aiplatform.v1beta1.ApiAuth.Builder getApiAuthBuilder() { - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return getApiAuthFieldBuilder().getBuilder(); } @@ -8255,7 +9347,7 @@ public com.google.cloud.aiplatform.v1beta1.ApiAuthOrBuilder getApiAuthOrBuilder( * @return Whether the ragEmbeddingModelConfig field is set. */ public boolean hasRagEmbeddingModelConfig() { - return ((bitField0_ & 0x00000040) != 0); + return ((bitField0_ & 0x00000080) != 0); } /** @@ -8303,7 +9395,7 @@ public Builder setRagEmbeddingModelConfig( } else { ragEmbeddingModelConfigBuilder_.setMessage(value); } - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); return this; } @@ -8326,7 +9418,7 @@ public Builder setRagEmbeddingModelConfig( } else { ragEmbeddingModelConfigBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); return this; } @@ -8345,7 +9437,7 @@ public Builder setRagEmbeddingModelConfig( public Builder mergeRagEmbeddingModelConfig( com.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig value) { if (ragEmbeddingModelConfigBuilder_ == null) { - if (((bitField0_ & 0x00000040) != 0) + if (((bitField0_ & 0x00000080) != 0) && ragEmbeddingModelConfig_ != null && ragEmbeddingModelConfig_ != com.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig @@ -8358,7 +9450,7 @@ public Builder mergeRagEmbeddingModelConfig( ragEmbeddingModelConfigBuilder_.mergeFrom(value); } if (ragEmbeddingModelConfig_ != null) { - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); } return this; @@ -8376,7 +9468,7 @@ public Builder mergeRagEmbeddingModelConfig( *
*/ public Builder clearRagEmbeddingModelConfig() { - bitField0_ = (bitField0_ & ~0x00000040); + bitField0_ = (bitField0_ & ~0x00000080); ragEmbeddingModelConfig_ = null; if (ragEmbeddingModelConfigBuilder_ != null) { ragEmbeddingModelConfigBuilder_.dispose(); @@ -8399,7 +9491,7 @@ public Builder clearRagEmbeddingModelConfig() { */ public com.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.Builder getRagEmbeddingModelConfigBuilder() { - bitField0_ |= 0x00000040; + bitField0_ |= 0x00000080; onChanged(); return getRagEmbeddingModelConfigFieldBuilder().getBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfigOrBuilder.java index 9130da36ede4..381e1c5a4ff4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RagVectorDbConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -227,6 +227,51 @@ public interface RagVectorDbConfigOrBuilder com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.VertexVectorSearchOrBuilder getVertexVectorSearchOrBuilder(); + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + * + * @return Whether the ragManagedVertexVectorSearch field is set. + */ + boolean hasRagManagedVertexVectorSearch(); + + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + * + * @return The ragManagedVertexVectorSearch. + */ + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch + getRagManagedVertexVectorSearch(); + + /** + * + * + *
+   * The config for the RAG-managed Vertex Vector Search 2.0.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; + * + */ + com.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedVertexVectorSearchOrBuilder + getRagManagedVertexVectorSearchOrBuilder(); + /** * * diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutput.java index 823235b04945..eb10839fb552 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutputOrBuilder.java index 4b828140bc58..fd16d3b20057 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawOutputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequest.java index 07b659be75c8..c529aac80de8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequestOrBuilder.java index 9ae1ed4deef3..7bf7540bba8c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpec.java index 2a0927aa793f..9c6b79d2a1a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpecOrBuilder.java index cce4a74957c2..d5519a5c96e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayLogsSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpec.java index 80f444314852..1fc134aa52a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpecOrBuilder.java index 71c511af4e52..6af618d73990 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RayMetricSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpec.java index 5c9e01632eb4..53152c604813 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpecOrBuilder.java index 4739c1db9964..46490511ca79 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RaySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequest.java index d2ae32ddc1e1..607803fa1561 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequestOrBuilder.java index e67397bed031..8c223df3f248 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponse.java index e4ca226d851f..030e07a0df3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponseOrBuilder.java index e865dc7b040c..81e1f4a005f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequest.java index 5e69d968327f..f1d70d459861 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequestOrBuilder.java index efe4363bbf9c..c96d7c66d39e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponse.java index c24648f5d376..ae5cea0573f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponseOrBuilder.java index bb60bc797c27..558864f4e5fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadIndexDatapointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequest.java index 95cce3d83357..950d1ce595fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequestOrBuilder.java index 9a913b76533e..15f56af8ec71 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponse.java index 3fd51b8ab7dd..e59bc78d6fd3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponseOrBuilder.java index 9b16af1d5478..5d6bd19e6c7f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardBlobDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequest.java index 625f4c5a041c..d4b0d2470858 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequestOrBuilder.java index 29b11fdecbbf..4e36944a2f3e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponse.java index b1cc9259d914..6dc5fc0aeb69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponseOrBuilder.java index f46b1fcf30ca..ca9ff5d7b2aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardSizeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequest.java index 4a81d499a6fb..21f17fbb55f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java index ae6a0f636e51..f23eea3e0c6b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponse.java index 71b7258318ee..0221e33b2b58 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java index 9766da1ebcb5..4d456dba8b33 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardTimeSeriesDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequest.java index 9c827630f2ce..421c6f3d6125 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequestOrBuilder.java index 76c070a4817b..64acaa398830 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponse.java index 68d20b1ce813..c662b59cf786 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponseOrBuilder.java index 5e152a2735a2..71ce95c9fcbf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReadTensorboardUsageResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngine.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngine.java index f9f6893770d9..e8f1b55b70d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngine.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpec.java index b3c1706ec9ea..4284b997b0c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpecOrBuilder.java index 92a2e715f8e9..65593bc308b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineContextSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceProto.java index 5cb3be408868..c4e414130043 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineExecutionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineName.java index 8382c58ba0be..5b25b087d81d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineOrBuilder.java index cd3d44300949..d310c0cef307 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineProto.java index c5b2b494505b..37ae7c3adb98 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,6 +52,14 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_InlineSource_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_InlineSource_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -105,7 +113,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "v_var.proto\0328google/cloud/aiplatform/v1b" + "eta1/service_networking.proto\032\036google/pr" + "otobuf/duration.proto\032\034google/protobuf/s" - + "truct.proto\032\037google/protobuf/timestamp.proto\"\352\014\n" + + "truct.proto\032\037google/protobuf/timestamp.proto\"\222\020\n" + "\023ReasoningEngineSpec\022_\n" + "\020source_code_spec\030\013 \001(\0132C.google.cloud.aiplatform" + ".v1beta1.ReasoningEngineSpec.SourceCodeSpecH\000\022!\n" @@ -138,14 +146,24 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\005value\030\002 \001(\t:\0028\001B\020\n" + "\016_min_instancesB\020\n" + "\016_max_instancesB\030\n" - + "\026_container_concurrency\032\262\003\n" + + "\026_container_concurrency\032\332\006\n" + "\016SourceCodeSpec\022i\n\r" + "inline_source\030\001 \001(\0132P.google.cloud.aiplatform." - + "v1beta1.ReasoningEngineSpec.SourceCodeSpec.InlineSourceH\000\022e\n" - + "\013python_spec\030\002 \001(\0132N.google.cloud.aiplatform.v1beta1.Reasoni" - + "ngEngineSpec.SourceCodeSpec.PythonSpecH\001\032.\n" + + "v1beta1.ReasoningEngineSpec.SourceCodeSpec.InlineSourceH\000\022~\n" + + "\030developer_connect_source\030\003 \001(\0132Z.google.cloud.aiplatform.v1" + + "beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSourceH\000\022e\n" + + "\013python_spec\030\002 \001(\0132N.google.cloud.aiplatform.v1beta1" + + ".ReasoningEngineSpec.SourceCodeSpec.PythonSpecH\001\032.\n" + "\014InlineSource\022\036\n" - + "\016source_archive\030\001 \001(\014B\006\340A\002\340A\004\032\202\001\n\n" + + "\016source_archive\030\001 \001(\014B\006\340A\002\340A\004\032\231\001\n" + + "\026DeveloperConnectConfig\022V\n" + + "\023git_repository_link\030\001 \001(\tB9\340A\002\372A3\n" + + "1developerconnect.googleapis.com/GitRepositoryLink\022\020\n" + + "\003dir\030\002 \001(\tB\003\340A\002\022\025\n" + + "\010revision\030\003 \001(\tB\003\340A\002\032\211\001\n" + + "\026DeveloperConnectSource\022o\n" + + "\006config\030\001 \001(\0132Z.google.cloud.aiplatfor" + + "m.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfigB\003\340A\002\032\202\001\n\n" + "PythonSpec\022\024\n" + "\007version\030\001 \001(\tB\003\340A\001\022\036\n" + "\021entrypoint_module\030\002 \001(\tB\003\340A\001\022\036\n" @@ -159,42 +177,41 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004name\030\001 \001(\tB\003\340A\010\022\031\n" + "\014display_name\030\002 \001(\tB\003\340A\002\022\030\n" + "\013description\030\007 \001(\tB\003\340A\001\022G\n" - + "\004spec\030\003 \001(\01324.go" - + "ogle.cloud.aiplatform.v1beta1.ReasoningEngineSpecB\003\340A\001\0224\n" + + "\004spec\030\003 \001(\01324.google.cloud.aipla" + + "tform.v1beta1.ReasoningEngineSpecB\003\340A\001\0224\n" + "\013create_time\030\004 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + "\013update_time\030\005" + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\021\n" + "\004etag\030\006 \001(\tB\003\340A\001\022V\n" - + "\014context_spec\030\t " - + "\001(\0132;.google.cloud.aiplatform.v1beta1.ReasoningEngineContextSpecB\003\340A\001\022H\n" - + "\017encryption_spec\030\013" - + " \001(\0132/.google.cloud.aiplatform.v1beta1.EncryptionSpec\022L\n" - + "\006labels\030\021 \003(\0132" - + "<.google.cloud.aiplatform.v1beta1.ReasoningEngine.LabelsEntry\032-\n" + + "\014context_spec\030\t \001(\0132;.google.clo" + + "ud.aiplatform.v1beta1.ReasoningEngineContextSpecB\003\340A\001\022H\n" + + "\017encryption_spec\030\013 \001(\0132/" + + ".google.cloud.aiplatform.v1beta1.EncryptionSpec\022L\n" + + "\006labels\030\021 \003(\0132<.google.cloud.a" + + "iplatform.v1beta1.ReasoningEngine.LabelsEntry\032-\n" + "\013LabelsEntry\022\013\n" + "\003key\030\001 \001(\t\022\r\n" + "\005value\030\002 \001(\t:\0028\001:\237\001\352A\233\001\n" - + ")aiplatform.googleapis.com/ReasoningEngine\022K" - + "projects/{project}/locations/{location}/" - + "reasoningEngines/{reasoning_engine}*\020reasoningEngines2\017reasoningEngine\"\354\010\n" + + ")aiplatform.googleapis.com/ReasoningEngine\022Kprojects/{projec" + + "t}/locations/{location}/reasoningEngines" + + "/{reasoning_engine}*\020reasoningEngines2\017reasoningEngine\"\354\010\n" + "\032ReasoningEngineContextSpec\022m\n" - + "\022memory_bank_config\030\001 \001(\0132L.google.cloud.aiplatform.v1be" - + "ta1.ReasoningEngineContextSpec.MemoryBankConfigB\003\340A\001\032\336\007\n" + + "\022memory_bank_config\030\001 \001(\0132L.goog" + + "le.cloud.aiplatform.v1beta1.ReasoningEngineContextSpec.MemoryBankConfigB\003\340A\001\032\336\007\n" + "\020MemoryBankConfig\022}\n" - + "\021generation_config\030\001 \001(\0132].google.cloud.aipl" - + "atform.v1beta1.ReasoningEngineContextSpe" - + "c.MemoryBankConfig.GenerationConfigB\003\340A\001\022\212\001\n" - + "\030similarity_search_config\030\002 \001(\0132c.go" - + "ogle.cloud.aiplatform.v1beta1.ReasoningE" - + "ngineContextSpec.MemoryBankConfig.SimilaritySearchConfigB\003\340A\001\022o\n\n" - + "ttl_config\030\005 \001(\0132V.google.cloud.aiplatform.v1beta1.Reas" - + "oningEngineContextSpec.MemoryBankConfig.TtlConfigB\003\340A\001\032\236\003\n" + + "\021generation_config\030\001 \001(\0132].google.cloud.aiplatform.v1beta1.R" + + "easoningEngineContextSpec.MemoryBankConfig.GenerationConfigB\003\340A\001\022\212\001\n" + + "\030similarity_search_config\030\002 \001(\0132c.google.cloud.aipla" + + "tform.v1beta1.ReasoningEngineContextSpec" + + ".MemoryBankConfig.SimilaritySearchConfigB\003\340A\001\022o\n\n" + + "ttl_config\030\005 \001(\0132V.google.cloud.aiplatform.v1beta1.ReasoningEngineConte" + + "xtSpec.MemoryBankConfig.TtlConfigB\003\340A\001\032\236\003\n" + "\tTtlConfig\0225\n" + "\013default_ttl\030\001" + " \001(\0132\031.google.protobuf.DurationB\003\340A\001H\000\022\214\001\n" - + "\023granular_ttl_config\030\002 \001(\0132h.goog" - + "le.cloud.aiplatform.v1beta1.ReasoningEng" - + "ineContextSpec.MemoryBankConfig.TtlConfig.GranularTtlConfigB\003\340A\001H\000\032\303\001\n" + + "\023granular_ttl_config\030\002 \001(\0132h.google.cloud.aiplatf" + + "orm.v1beta1.ReasoningEngineContextSpec.M" + + "emoryBankConfig.TtlConfig.GranularTtlConfigB\003\340A\001H\000\032\303\001\n" + "\021GranularTtlConfig\0222\n\n" + "create_ttl\030\001 \001(\0132\031.google.protobuf.DurationB\003\340A\001\022<\n" + "\024generate_created_ttl\030\002" @@ -207,12 +224,14 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\"aiplatform.googleapis.com/Endpoint\032]\n" + "\026SimilaritySearchConfig\022C\n" + "\017embedding_model\030\001 \001(\tB*\340A\002\372A$\n" - + "\"aiplatform.googleapis.com/EndpointB\353\001\n" - + "#com.google.cloud.aiplatform.v1beta1B\024ReasoningEngineProtoP\001ZCcloud.goo" - + "gle.com/go/aiplatform/apiv1beta1/aiplatf" - + "ormpb;aiplatformpb\252\002\037Google.Cloud.AIPlat" - + "form.V1Beta1\312\002\037Google\\Cloud\\AIPlatform\\V" - + "1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" + + "\"aiplatform.googleapis.com/EndpointB\215\003\n" + + "#com.google.cloud.aiplatform.v1beta1B\024Reasoning" + + "EngineProtoP\001ZCcloud.google.com/go/aiplatform/apiv1beta1/aiplatformpb;aiplatform" + + "pb\252\002\037Google.Cloud.AIPlatform.V1Beta1\312\002\037G" + + "oogle\\Cloud\\AIPlatform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1\352A\236\001\n" + + "1developerconnect.googleapis.com/GitRepositoryLi" + + "nk\022iprojects/{project}/locations/{location}/connections/{connection}/gitReposito" + + "ryLinks/{git_repository_link}b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -285,7 +304,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_descriptor, new java.lang.String[] { - "InlineSource", "PythonSpec", "Source", "LanguageSpec", + "InlineSource", "DeveloperConnectSource", "PythonSpec", "Source", "LanguageSpec", }); internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_InlineSource_descriptor = internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_descriptor @@ -297,10 +316,30 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "SourceArchive", }); - internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor = + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor = internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_descriptor .getNestedTypes() .get(1); + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor, + new java.lang.String[] { + "GitRepositoryLink", "Dir", "Revision", + }); + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor = + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_descriptor + .getNestedTypes() + .get(2); + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor, + new java.lang.String[] { + "Config", + }); + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor = + internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_descriptor + .getNestedTypes() + .get(3); internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor, @@ -396,6 +435,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); registry.add(com.google.api.ResourceProto.resource); + registry.add(com.google.api.ResourceProto.resourceDefinition); registry.add(com.google.api.ResourceProto.resourceReference); com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceProto.java index 9f8ed889832b..2ad34187098e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpec.java index a2f167fc7761..ec9546c3694d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -153,8 +153,9 @@ public interface PackageSpecOrBuilder * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -167,8 +168,9 @@ public interface PackageSpecOrBuilder * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -395,8 +397,9 @@ public com.google.protobuf.ByteString getRequirementsGcsUriBytes() { * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -420,8 +423,9 @@ public java.lang.String getPythonVersion() { * * *
-     * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-     * If not specified, default value is 3.10.
+     * Optional. The Python version. Supported values
+     * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+     * is 3.10.
      * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1209,8 +1213,9 @@ public Builder setRequirementsGcsUriBytes(com.google.protobuf.ByteString value) * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1233,8 +1238,9 @@ public java.lang.String getPythonVersion() { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1257,8 +1263,9 @@ public com.google.protobuf.ByteString getPythonVersionBytes() { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1280,8 +1287,9 @@ public Builder setPythonVersion(java.lang.String value) { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -1299,8 +1307,9 @@ public Builder clearPythonVersion() { * * *
-       * Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11.
-       * If not specified, default value is 3.10.
+       * Optional. The Python version. Supported values
+       * are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value
+       * is 3.10.
        * 
* * string python_version = 4 [(.google.api.field_behavior) = OPTIONAL]; @@ -4803,6 +4812,52 @@ public interface SourceCodeSpecOrBuilder com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.InlineSourceOrBuilder getInlineSourceOrBuilder(); + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return Whether the developerConnectSource field is set. + */ + boolean hasDeveloperConnectSource(); + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return The developerConnectSource. + */ + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource + getDeveloperConnectSource(); + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder + getDeveloperConnectSourceOrBuilder(); + /** * * @@ -5526,274 +5581,180 @@ public com.google.protobuf.Parser getParserForType() { } } - public interface PythonSpecOrBuilder + public interface DeveloperConnectConfigOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) com.google.protobuf.MessageOrBuilder { /** * * *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The version. - */ - java.lang.String getVersion(); - - /** - * - * - *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for version. - */ - com.google.protobuf.ByteString getVersionBytes(); - - /** - * - * - *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The entrypointModule. + * @return The gitRepositoryLink. */ - java.lang.String getEntrypointModule(); + java.lang.String getGitRepositoryLink(); /** * * *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The bytes for entrypointModule. + * @return The bytes for gitRepositoryLink. */ - com.google.protobuf.ByteString getEntrypointModuleBytes(); + com.google.protobuf.ByteString getGitRepositoryLinkBytes(); /** * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The entrypointObject. + * @return The dir. */ - java.lang.String getEntrypointObject(); + java.lang.String getDir(); /** * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for entrypointObject. + * @return The bytes for dir. */ - com.google.protobuf.ByteString getEntrypointObjectBytes(); + com.google.protobuf.ByteString getDirBytes(); /** * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The requirementsFile. + * @return The revision. */ - java.lang.String getRequirementsFile(); + java.lang.String getRevision(); /** * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for requirementsFile. + * @return The bytes for revision. */ - com.google.protobuf.ByteString getRequirementsFileBytes(); + com.google.protobuf.ByteString getRevisionBytes(); } /** * * *
-     * Specification for running a Python application from source.
+     * Specifies the configuration for fetching source code from a Git
+     * repository that is managed by Developer Connect. This includes the
+     * repository, revision, and directory to use.
      * 
* * Protobuf type {@code - * google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec} + * google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig} */ - public static final class PythonSpec extends com.google.protobuf.GeneratedMessageV3 + public static final class DeveloperConnectConfig extends com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) - PythonSpecOrBuilder { + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + DeveloperConnectConfigOrBuilder { private static final long serialVersionUID = 0L; - // Use PythonSpec.newBuilder() to construct. - private PythonSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) { + // Use DeveloperConnectConfig.newBuilder() to construct. + private DeveloperConnectConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private PythonSpec() { - version_ = ""; - entrypointModule_ = ""; - entrypointObject_ = ""; - requirementsFile_ = ""; + private DeveloperConnectConfig() { + gitRepositoryLink_ = ""; + dir_ = ""; + revision_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { - return new PythonSpec(); + return new DeveloperConnectConfig(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto - .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor; + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto - .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_fieldAccessorTable + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec - .class, - com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec - .Builder.class); - } - - public static final int VERSION_FIELD_NUMBER = 1; - - @SuppressWarnings("serial") - private volatile java.lang.Object version_ = ""; - - /** - * - * - *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The version. - */ - @java.lang.Override - public java.lang.String getVersion() { - java.lang.Object ref = version_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - version_ = s; - return s; - } - } - - /** - * - * - *
-       * Optional. The version of Python to use. Support version
-       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
-       * If not specified, default value is 3.10.
-       * 
- * - * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for version. - */ - @java.lang.Override - public com.google.protobuf.ByteString getVersionBytes() { - java.lang.Object ref = version_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - version_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.class, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder.class); } - public static final int ENTRYPOINT_MODULE_FIELD_NUMBER = 2; + public static final int GIT_REPOSITORY_LINK_FIELD_NUMBER = 1; @SuppressWarnings("serial") - private volatile java.lang.Object entrypointModule_ = ""; + private volatile java.lang.Object gitRepositoryLink_ = ""; /** * * *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The entrypointModule. + * @return The gitRepositoryLink. */ @java.lang.Override - public java.lang.String getEntrypointModule() { - java.lang.Object ref = entrypointModule_; + public java.lang.String getGitRepositoryLink() { + java.lang.Object ref = gitRepositoryLink_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - entrypointModule_ = s; + gitRepositoryLink_ = s; return s; } } @@ -5802,58 +5763,55 @@ public java.lang.String getEntrypointModule() { * * *
-       * Optional. The Python module to load as the entrypoint, specified as a
-       * fully qualified module name. For example: path.to.agent.
-       * If not specified, defaults to "agent".
-       *
-       * The project root will be added to Python sys.path, allowing imports
-       * to be specified relative to the root.
+       * Required. The Developer Connect Git repository link, formatted as
+       * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
        * 
* - * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * * - * @return The bytes for entrypointModule. + * @return The bytes for gitRepositoryLink. */ @java.lang.Override - public com.google.protobuf.ByteString getEntrypointModuleBytes() { - java.lang.Object ref = entrypointModule_; + public com.google.protobuf.ByteString getGitRepositoryLinkBytes() { + java.lang.Object ref = gitRepositoryLink_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - entrypointModule_ = b; + gitRepositoryLink_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } - public static final int ENTRYPOINT_OBJECT_FIELD_NUMBER = 3; + public static final int DIR_FIELD_NUMBER = 2; @SuppressWarnings("serial") - private volatile java.lang.Object entrypointObject_ = ""; + private volatile java.lang.Object dir_ = ""; /** * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The entrypointObject. + * @return The dir. */ @java.lang.Override - public java.lang.String getEntrypointObject() { - java.lang.Object ref = entrypointObject_; + public java.lang.String getDir() { + java.lang.Object ref = dir_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - entrypointObject_ = s; + dir_ = s; return s; } } @@ -5862,54 +5820,53 @@ public java.lang.String getEntrypointObject() { * * *
-       * Optional. The name of the callable object within the
-       * `entrypoint_module` to use as the application If not specified,
-       * defaults to "root_agent".
+       * Required. Directory, relative to the source root, in which to run the
+       * build.
        * 
* - * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for entrypointObject. + * @return The bytes for dir. */ @java.lang.Override - public com.google.protobuf.ByteString getEntrypointObjectBytes() { - java.lang.Object ref = entrypointObject_; + public com.google.protobuf.ByteString getDirBytes() { + java.lang.Object ref = dir_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - entrypointObject_ = b; + dir_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } - public static final int REQUIREMENTS_FILE_FIELD_NUMBER = 4; + public static final int REVISION_FIELD_NUMBER = 3; @SuppressWarnings("serial") - private volatile java.lang.Object requirementsFile_ = ""; + private volatile java.lang.Object revision_ = ""; /** * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The requirementsFile. + * @return The revision. */ @java.lang.Override - public java.lang.String getRequirementsFile() { - java.lang.Object ref = requirementsFile_; + public java.lang.String getRevision() { + java.lang.Object ref = revision_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - requirementsFile_ = s; + revision_ = s; return s; } } @@ -5918,21 +5875,21 @@ public java.lang.String getRequirementsFile() { * * *
-       * Optional. The path to the requirements file, relative to the source
-       * root. If not specified, defaults to "requirements.txt".
+       * Required. The revision to fetch from the Git repository such as a
+       * branch, a tag, a commit SHA, or any Git ref.
        * 
* - * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; * - * @return The bytes for requirementsFile. + * @return The bytes for revision. */ @java.lang.Override - public com.google.protobuf.ByteString getRequirementsFileBytes() { - java.lang.Object ref = requirementsFile_; + public com.google.protobuf.ByteString getRevisionBytes() { + java.lang.Object ref = revision_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - requirementsFile_ = b; + revision_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; @@ -5953,13 +5910,2251 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, version_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gitRepositoryLink_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, gitRepositoryLink_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointModule_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, entrypointModule_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dir_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dir_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointObject_)) { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(revision_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, revision_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(gitRepositoryLink_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, gitRepositoryLink_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dir_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dir_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(revision_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, revision_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + other = + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig) + obj; + + if (!getGitRepositoryLink().equals(other.getGitRepositoryLink())) return false; + if (!getDir().equals(other.getDir())) return false; + if (!getRevision().equals(other.getRevision())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + GIT_REPOSITORY_LINK_FIELD_NUMBER; + hash = (53 * hash) + getGitRepositoryLink().hashCode(); + hash = (37 * hash) + DIR_FIELD_NUMBER; + hash = (53 * hash) + getDir().hashCode(); + hash = (37 * hash) + REVISION_FIELD_NUMBER; + hash = (53 * hash) + getRevision().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+       * Specifies the configuration for fetching source code from a Git
+       * repository that is managed by Developer Connect. This includes the
+       * repository, revision, and directory to use.
+       * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.class, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder.class); + } + + // Construct using + // com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + gitRepositoryLink_ = ""; + dir_ = ""; + revision_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + build() { + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + buildPartial() { + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + result = + new com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.gitRepositoryLink_ = gitRepositoryLink_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.dir_ = dir_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.revision_ = revision_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, + java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig) { + return mergeFrom( + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig) + other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + other) { + if (other + == com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance()) return this; + if (!other.getGitRepositoryLink().isEmpty()) { + gitRepositoryLink_ = other.gitRepositoryLink_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.getDir().isEmpty()) { + dir_ = other.dir_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getRevision().isEmpty()) { + revision_ = other.revision_; + bitField0_ |= 0x00000004; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + gitRepositoryLink_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + dir_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + revision_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object gitRepositoryLink_ = ""; + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The gitRepositoryLink. + */ + public java.lang.String getGitRepositoryLink() { + java.lang.Object ref = gitRepositoryLink_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + gitRepositoryLink_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for gitRepositoryLink. + */ + public com.google.protobuf.ByteString getGitRepositoryLinkBytes() { + java.lang.Object ref = gitRepositoryLink_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + gitRepositoryLink_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The gitRepositoryLink to set. + * @return This builder for chaining. + */ + public Builder setGitRepositoryLink(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + gitRepositoryLink_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearGitRepositoryLink() { + gitRepositoryLink_ = getDefaultInstance().getGitRepositoryLink(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect Git repository link, formatted as
+         * `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
+         * 
+ * + * + * string git_repository_link = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for gitRepositoryLink to set. + * @return This builder for chaining. + */ + public Builder setGitRepositoryLinkBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + gitRepositoryLink_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.lang.Object dir_ = ""; + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The dir. + */ + public java.lang.String getDir() { + java.lang.Object ref = dir_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dir_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for dir. + */ + public com.google.protobuf.ByteString getDirBytes() { + java.lang.Object ref = dir_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dir_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The dir to set. + * @return This builder for chaining. + */ + public Builder setDir(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + dir_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearDir() { + dir_ = getDefaultInstance().getDir(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. Directory, relative to the source root, in which to run the
+         * build.
+         * 
+ * + * string dir = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for dir to set. + * @return This builder for chaining. + */ + public Builder setDirBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + dir_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object revision_ = ""; + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The revision. + */ + public java.lang.String getRevision() { + java.lang.Object ref = revision_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + revision_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for revision. + */ + public com.google.protobuf.ByteString getRevisionBytes() { + java.lang.Object ref = revision_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + revision_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The revision to set. + * @return This builder for chaining. + */ + public Builder setRevision(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + revision_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearRevision() { + revision_ = getDefaultInstance().getRevision(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The revision to fetch from the Git repository such as a
+         * branch, a tag, a commit SHA, or any Git ref.
+         * 
+ * + * string revision = 3 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for revision to set. + * @return This builder for chaining. + */ + public Builder setRevisionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + revision_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig) + private static final com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig(); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DeveloperConnectConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + + public interface DeveloperConnectSourceOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the config field is set. + */ + boolean hasConfig(); + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The config. + */ + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig + getConfig(); + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder + getConfigOrBuilder(); + } + + /** + * + * + *
+     * Specifies source code to be fetched from a Git repository managed through
+     * the Developer Connect service.
+     * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource} + */ + public static final class DeveloperConnectSource extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + DeveloperConnectSourceOrBuilder { + private static final long serialVersionUID = 0L; + + // Use DeveloperConnectSource.newBuilder() to construct. + private DeveloperConnectSource(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private DeveloperConnectSource() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new DeveloperConnectSource(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.class, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder.class); + } + + private int bitField0_; + public static final int CONFIG_FIELD_NUMBER = 1; + private com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + config_; + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the config field is set. + */ + @java.lang.Override + public boolean hasConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The config. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getConfig() { + return config_ == null + ? com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } + + /** + * + * + *
+       * Required. The Developer Connect configuration that defines the
+       * specific repository, revision, and directory to use as the source code
+       * root.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder + getConfigOrBuilder() { + return config_ == null + ? com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getConfig()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getConfig()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + other = + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + obj; + + if (hasConfig() != other.hasConfig()) return false; + if (hasConfig()) { + if (!getConfig().equals(other.getConfig())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasConfig()) { + hash = (37 * hash) + CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getConfig().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+       * Specifies source code to be fetched from a Git repository managed through
+       * the Developer Connect service.
+       * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.class, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder.class); + } + + // Construct using + // com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getConfigFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + config_ = null; + if (configBuilder_ != null) { + configBuilder_.dispose(); + configBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_DeveloperConnectSource_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + build() { + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + buildPartial() { + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + result = + new com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.config_ = configBuilder_ == null ? config_ : configBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, + java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) { + return mergeFrom( + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + other) { + if (other + == com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance()) return this; + if (other.hasConfig()) { + mergeConfig(other.getConfig()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage(getConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + config_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder> + configBuilder_; + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the config field is set. + */ + public boolean hasConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The config. + */ + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + getConfig() { + if (configBuilder_ == null) { + return config_ == null + ? com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } else { + return configBuilder_.getMessage(); + } + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setConfig( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + value) { + if (configBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + config_ = value; + } else { + configBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setConfig( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder + builderForValue) { + if (configBuilder_ == null) { + config_ = builderForValue.build(); + } else { + configBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeConfig( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig + value) { + if (configBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) + && config_ != null + && config_ + != com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance()) { + getConfigBuilder().mergeFrom(value); + } else { + config_ = value; + } + } else { + configBuilder_.mergeFrom(value); + } + if (config_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearConfig() { + bitField0_ = (bitField0_ & ~0x00000001); + config_ = null; + if (configBuilder_ != null) { + configBuilder_.dispose(); + configBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder + getConfigBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder + getConfigOrBuilder() { + if (configBuilder_ != null) { + return configBuilder_.getMessageOrBuilder(); + } else { + return config_ == null + ? com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.getDefaultInstance() + : config_; + } + } + + /** + * + * + *
+         * Required. The Developer Connect configuration that defines the
+         * specific repository, revision, and directory to use as the source code
+         * root.
+         * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectConfig config = 1 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder> + getConfigFieldBuilder() { + if (configBuilder_ == null) { + configBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfig.Builder, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectConfigOrBuilder>( + getConfig(), getParentForChildren(), isClean()); + config_ = null; + } + return configBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource) + private static final com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource(); + } + + public static com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DeveloperConnectSource parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + + public interface PythonSpecOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The version. + */ + java.lang.String getVersion(); + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for version. + */ + com.google.protobuf.ByteString getVersionBytes(); + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointModule. + */ + java.lang.String getEntrypointModule(); + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointModule. + */ + com.google.protobuf.ByteString getEntrypointModuleBytes(); + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointObject. + */ + java.lang.String getEntrypointObject(); + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointObject. + */ + com.google.protobuf.ByteString getEntrypointObjectBytes(); + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The requirementsFile. + */ + java.lang.String getRequirementsFile(); + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for requirementsFile. + */ + com.google.protobuf.ByteString getRequirementsFileBytes(); + } + + /** + * + * + *
+     * Specification for running a Python application from source.
+     * 
+ * + * Protobuf type {@code + * google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec} + */ + public static final class PythonSpec extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) + PythonSpecOrBuilder { + private static final long serialVersionUID = 0L; + + // Use PythonSpec.newBuilder() to construct. + private PythonSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private PythonSpec() { + version_ = ""; + entrypointModule_ = ""; + entrypointObject_ = ""; + requirementsFile_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new PythonSpec(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineProto + .internal_static_google_cloud_aiplatform_v1beta1_ReasoningEngineSpec_SourceCodeSpec_PythonSpec_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec + .class, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec + .Builder.class); + } + + public static final int VERSION_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object version_ = ""; + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The version. + */ + @java.lang.Override + public java.lang.String getVersion() { + java.lang.Object ref = version_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + version_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The version of Python to use. Support version
+       * includes 3.9, 3.10, 3.11, 3.12, 3.13.
+       * If not specified, default value is 3.10.
+       * 
+ * + * string version = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for version. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVersionBytes() { + java.lang.Object ref = version_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + version_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ENTRYPOINT_MODULE_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object entrypointModule_ = ""; + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointModule. + */ + @java.lang.Override + public java.lang.String getEntrypointModule() { + java.lang.Object ref = entrypointModule_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + entrypointModule_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The Python module to load as the entrypoint, specified as a
+       * fully qualified module name. For example: path.to.agent.
+       * If not specified, defaults to "agent".
+       *
+       * The project root will be added to Python sys.path, allowing imports
+       * to be specified relative to the root.
+       * 
+ * + * string entrypoint_module = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointModule. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEntrypointModuleBytes() { + java.lang.Object ref = entrypointModule_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + entrypointModule_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ENTRYPOINT_OBJECT_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object entrypointObject_ = ""; + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The entrypointObject. + */ + @java.lang.Override + public java.lang.String getEntrypointObject() { + java.lang.Object ref = entrypointObject_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + entrypointObject_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The name of the callable object within the
+       * `entrypoint_module` to use as the application If not specified,
+       * defaults to "root_agent".
+       * 
+ * + * string entrypoint_object = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for entrypointObject. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEntrypointObjectBytes() { + java.lang.Object ref = entrypointObject_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + entrypointObject_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REQUIREMENTS_FILE_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object requirementsFile_ = ""; + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The requirementsFile. + */ + @java.lang.Override + public java.lang.String getRequirementsFile() { + java.lang.Object ref = requirementsFile_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + requirementsFile_ = s; + return s; + } + } + + /** + * + * + *
+       * Optional. The path to the requirements file, relative to the source
+       * root. If not specified, defaults to "requirements.txt".
+       * 
+ * + * string requirements_file = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for requirementsFile. + */ + @java.lang.Override + public com.google.protobuf.ByteString getRequirementsFileBytes() { + java.lang.Object ref = requirementsFile_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + requirementsFile_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, version_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointModule_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, entrypointModule_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(entrypointObject_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, entrypointObject_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(requirementsFile_)) { @@ -6976,6 +9171,7 @@ public enum SourceCase com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { INLINE_SOURCE(1), + DEVELOPER_CONNECT_SOURCE(3), SOURCE_NOT_SET(0); private final int value; @@ -6997,6 +9193,8 @@ public static SourceCase forNumber(int value) { switch (value) { case 1: return INLINE_SOURCE; + case 3: + return DEVELOPER_CONNECT_SOURCE; case 0: return SOURCE_NOT_SET; default: @@ -7127,6 +9325,76 @@ public boolean hasInlineSource() { .getDefaultInstance(); } + public static final int DEVELOPER_CONNECT_SOURCE_FIELD_NUMBER = 3; + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return Whether the developerConnectSource field is set. + */ + @java.lang.Override + public boolean hasDeveloperConnectSource() { + return sourceCase_ == 3; + } + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return The developerConnectSource. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDeveloperConnectSource() { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + + /** + * + * + *
+     * Source code is in a Git repository managed by Developer Connect.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder + getDeveloperConnectSourceOrBuilder() { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + public static final int PYTHON_SPEC_FIELD_NUMBER = 2; /** @@ -7220,6 +9488,13 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) languageSpec_); } + if (sourceCase_ == 3) { + output.writeMessage( + 3, + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_); + } getUnknownFields().writeTo(output); } @@ -7244,6 +9519,14 @@ public int getSerializedSize() { (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec) languageSpec_); } + if (sourceCase_ == 3) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 3, + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -7266,6 +9549,9 @@ public boolean equals(final java.lang.Object obj) { case 1: if (!getInlineSource().equals(other.getInlineSource())) return false; break; + case 3: + if (!getDeveloperConnectSource().equals(other.getDeveloperConnectSource())) return false; + break; case 0: default: } @@ -7293,6 +9579,10 @@ public int hashCode() { hash = (37 * hash) + INLINE_SOURCE_FIELD_NUMBER; hash = (53 * hash) + getInlineSource().hashCode(); break; + case 3: + hash = (37 * hash) + DEVELOPER_CONNECT_SOURCE_FIELD_NUMBER; + hash = (53 * hash) + getDeveloperConnectSource().hashCode(); + break; case 0: default: } @@ -7453,6 +9743,9 @@ public Builder clear() { if (inlineSourceBuilder_ != null) { inlineSourceBuilder_.clear(); } + if (developerConnectSourceBuilder_ != null) { + developerConnectSourceBuilder_.clear(); + } if (pythonSpecBuilder_ != null) { pythonSpecBuilder_.clear(); } @@ -7510,6 +9803,9 @@ private void buildPartialOneofs( if (sourceCase_ == 1 && inlineSourceBuilder_ != null) { result.source_ = inlineSourceBuilder_.build(); } + if (sourceCase_ == 3 && developerConnectSourceBuilder_ != null) { + result.source_ = developerConnectSourceBuilder_.build(); + } result.languageSpecCase_ = languageSpecCase_; result.languageSpec_ = this.languageSpec_; if (languageSpecCase_ == 2 && pythonSpecBuilder_ != null) { @@ -7575,6 +9871,11 @@ public Builder mergeFrom( mergeInlineSource(other.getInlineSource()); break; } + case DEVELOPER_CONNECT_SOURCE: + { + mergeDeveloperConnectSource(other.getDeveloperConnectSource()); + break; + } case SOURCE_NOT_SET: { break; @@ -7629,6 +9930,13 @@ public Builder mergeFrom( languageSpecCase_ = 2; break; } // case 18 + case 26: + { + input.readMessage( + getDeveloperConnectSourceFieldBuilder().getBuilder(), extensionRegistry); + sourceCase_ = 3; + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -7946,6 +10254,281 @@ public Builder clearInlineSource() { return inlineSourceBuilder_; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder> + developerConnectSourceBuilder_; + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return Whether the developerConnectSource field is set. + */ + @java.lang.Override + public boolean hasDeveloperConnectSource() { + return sourceCase_ == 3; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + * + * @return The developerConnectSource. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + getDeveloperConnectSource() { + if (developerConnectSourceBuilder_ == null) { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } else { + if (sourceCase_ == 3) { + return developerConnectSourceBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder setDeveloperConnectSource( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + value) { + if (developerConnectSourceBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + source_ = value; + onChanged(); + } else { + developerConnectSourceBuilder_.setMessage(value); + } + sourceCase_ = 3; + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder setDeveloperConnectSource( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder + builderForValue) { + if (developerConnectSourceBuilder_ == null) { + source_ = builderForValue.build(); + onChanged(); + } else { + developerConnectSourceBuilder_.setMessage(builderForValue.build()); + } + sourceCase_ = 3; + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder mergeDeveloperConnectSource( + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource + value) { + if (developerConnectSourceBuilder_ == null) { + if (sourceCase_ == 3 + && source_ + != com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance()) { + source_ = + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.newBuilder( + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_) + .mergeFrom(value) + .buildPartial(); + } else { + source_ = value; + } + onChanged(); + } else { + if (sourceCase_ == 3) { + developerConnectSourceBuilder_.mergeFrom(value); + } else { + developerConnectSourceBuilder_.setMessage(value); + } + } + sourceCase_ = 3; + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public Builder clearDeveloperConnectSource() { + if (developerConnectSourceBuilder_ == null) { + if (sourceCase_ == 3) { + sourceCase_ = 0; + source_ = null; + onChanged(); + } + } else { + if (sourceCase_ == 3) { + sourceCase_ = 0; + source_ = null; + } + developerConnectSourceBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder + getDeveloperConnectSourceBuilder() { + return getDeveloperConnectSourceFieldBuilder().getBuilder(); + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder + getDeveloperConnectSourceOrBuilder() { + if ((sourceCase_ == 3) && (developerConnectSourceBuilder_ != null)) { + return developerConnectSourceBuilder_.getMessageOrBuilder(); + } else { + if (sourceCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_; + } + return com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + } + + /** + * + * + *
+       * Source code is in a Git repository managed by Developer Connect.
+       * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.DeveloperConnectSource developer_connect_source = 3; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder> + getDeveloperConnectSourceFieldBuilder() { + if (developerConnectSourceBuilder_ == null) { + if (!(sourceCase_ == 3)) { + source_ = + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.getDefaultInstance(); + } + developerConnectSourceBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource.Builder, + com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSourceOrBuilder>( + (com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec + .DeveloperConnectSource) + source_, + getParentForChildren(), + isClean()); + source_ = null; + } + sourceCase_ = 3; + onChanged(); + return developerConnectSourceBuilder_; + } + private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec, com.google.cloud.aiplatform.v1beta1.ReasoningEngineSpec.SourceCodeSpec.PythonSpec diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpecOrBuilder.java index f21e34ea2386..438fd77d26d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReasoningEngineSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadata.java index b3e09340a3ba..d63bd334761c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadataOrBuilder.java index dcaa13e1990c..3c2e417f2632 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequest.java index 258c6ec36e78..c48b001e1321 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequestOrBuilder.java index 9e2012966eb4..cc9343229ab6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebaseTunedModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadata.java index 8140379f0acd..f73f13197b60 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadataOrBuilder.java index 0cab6a778cc1..8241fc543236 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequest.java index 7180664c5064..455bbcf71c3f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequestOrBuilder.java index f32edc87a91b..8fe524ffc34a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RebootPersistentResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequest.java index 7019a04aa11a..27e507f1a64b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequestOrBuilder.java index 30db7c37c536..20310f08c7d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponse.java index 5a8b2f012863..ef69451cd14f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponseOrBuilder.java index ca7b50d7575a..5ebdfeba84ab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RecommendSpecResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequest.java index e3c54b62e53b..118b964d28d1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequestOrBuilder.java index 508846475c7f..e019b04a666e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponse.java index 80b8d273663a..c00c0036f522 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponseOrBuilder.java index 5de9968956f3..b93859ba2b5e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveContextChildrenResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequest.java index 7e66026ff688..99136bd499d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequestOrBuilder.java index edbf36be1306..9b9775d992ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponse.java index 5cf6e6118337..ce67056865c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponseOrBuilder.java index 7d5feda6f363..af5fe5736e43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveDatapointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequest.java index e497eb6a4690..287a2ea209e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequestOrBuilder.java index cd628fe13f19..0ef4b8d41cdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponse.java index 19ade50c0c4e..9b8a86b27a62 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponseOrBuilder.java index 1698126a9a87..40de39eb868a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RemoveExamplesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReplicatedVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReplicatedVoiceConfig.java new file mode 100644 index 000000000000..2434dbbb9b69 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReplicatedVoiceConfig.java @@ -0,0 +1,756 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +/** + * + * + *
+ * The configuration for the replicated voice to use.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig} + */ +public final class ReplicatedVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) + ReplicatedVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ReplicatedVoiceConfig.newBuilder() to construct. + private ReplicatedVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ReplicatedVoiceConfig() { + mimeType_ = ""; + voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ReplicatedVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.class, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder.class); + } + + public static final int MIME_TYPE_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object mimeType_ = ""; + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mimeType. + */ + @java.lang.Override + public java.lang.String getMimeType() { + java.lang.Object ref = mimeType_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mimeType_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mimeType. + */ + @java.lang.Override + public com.google.protobuf.ByteString getMimeTypeBytes() { + java.lang.Object ref = mimeType_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mimeType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VOICE_SAMPLE_AUDIO_FIELD_NUMBER = 2; + private com.google.protobuf.ByteString voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + + /** + * + * + *
+   * Optional. The sample of the custom voice.
+   * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The voiceSampleAudio. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVoiceSampleAudio() { + return voiceSampleAudio_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mimeType_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, mimeType_); + } + if (!voiceSampleAudio_.isEmpty()) { + output.writeBytes(2, voiceSampleAudio_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mimeType_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, mimeType_); + } + if (!voiceSampleAudio_.isEmpty()) { + size += com.google.protobuf.CodedOutputStream.computeBytesSize(2, voiceSampleAudio_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig other = + (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) obj; + + if (!getMimeType().equals(other.getMimeType())) return false; + if (!getVoiceSampleAudio().equals(other.getVoiceSampleAudio())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + MIME_TYPE_FIELD_NUMBER; + hash = (53 * hash) + getMimeType().hashCode(); + hash = (37 * hash) + VOICE_SAMPLE_AUDIO_FIELD_NUMBER; + hash = (53 * hash) + getVoiceSampleAudio().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * The configuration for the replicated voice to use.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.class, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + mimeType_ = ""; + voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_ReplicatedVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig build() { + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig result = + new com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.mimeType_ = mimeType_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.voiceSampleAudio_ = voiceSampleAudio_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance()) + return this; + if (!other.getMimeType().isEmpty()) { + mimeType_ = other.mimeType_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.getVoiceSampleAudio() != com.google.protobuf.ByteString.EMPTY) { + setVoiceSampleAudio(other.getVoiceSampleAudio()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + mimeType_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + voiceSampleAudio_ = input.readBytes(); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object mimeType_ = ""; + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mimeType. + */ + public java.lang.String getMimeType() { + java.lang.Object ref = mimeType_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mimeType_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mimeType. + */ + public com.google.protobuf.ByteString getMimeTypeBytes() { + java.lang.Object ref = mimeType_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mimeType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The mimeType to set. + * @return This builder for chaining. + */ + public Builder setMimeType(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + mimeType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearMimeType() { + mimeType_ = getDefaultInstance().getMimeType(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The mimetype of the voice sample. The only currently supported
+     * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+     * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+     * set.
+     * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for mimeType to set. + * @return This builder for chaining. + */ + public Builder setMimeTypeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + mimeType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.ByteString voiceSampleAudio_ = com.google.protobuf.ByteString.EMPTY; + + /** + * + * + *
+     * Optional. The sample of the custom voice.
+     * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The voiceSampleAudio. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVoiceSampleAudio() { + return voiceSampleAudio_; + } + + /** + * + * + *
+     * Optional. The sample of the custom voice.
+     * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The voiceSampleAudio to set. + * @return This builder for chaining. + */ + public Builder setVoiceSampleAudio(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + voiceSampleAudio_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The sample of the custom voice.
+     * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearVoiceSampleAudio() { + bitField0_ = (bitField0_ & ~0x00000002); + voiceSampleAudio_ = getDefaultInstance().getVoiceSampleAudio(); + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) + private static final com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ReplicatedVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReplicatedVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReplicatedVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..0effd7b09a1e --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReplicatedVoiceConfigOrBuilder.java @@ -0,0 +1,71 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +public interface ReplicatedVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mimeType. + */ + java.lang.String getMimeType(); + + /** + * + * + *
+   * Optional. The mimetype of the voice sample. The only currently supported
+   * value is `audio/wav`. This represents 16-bit signed little-endian wav data,
+   * with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not
+   * set.
+   * 
+ * + * string mime_type = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mimeType. + */ + com.google.protobuf.ByteString getMimeTypeBytes(); + + /** + * + * + *
+   * Optional. The sample of the custom voice.
+   * 
+ * + * bytes voice_sample_audio = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The voiceSampleAudio. + */ + com.google.protobuf.ByteString getVoiceSampleAudio(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinity.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinity.java index 35954707493c..5aebf957d467 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinity.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinity.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityOrBuilder.java index a76520ec0c42..3b0e06165387 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityProto.java index 7f802c382a7e..434327dbdc6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ReservationAffinityProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePool.java index 1f32da770514..4a0ccbf7dca9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePoolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePoolOrBuilder.java index f791b8d472ac..6abe71e5a97f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePoolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcePoolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntime.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntime.java index df9eb04f7ce3..424701de1692 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntime.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeOrBuilder.java index b7b1d436bd07..95226a57a21d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpec.java index 7bf3a62af331..b8e34749422e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpecOrBuilder.java index 945698329b30..20b1e460d889 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourceRuntimeSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumed.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumed.java index d949569f8f1f..73fde6d9638d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumed.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumedOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumedOrBuilder.java index 042357f909aa..ba23d97b0c21 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumedOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResourcesConsumedOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadata.java index c974afa6cd13..047d18e67c8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadataOrBuilder.java index be6bc29a9282..6c25a550ccca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequest.java index bd7e720539e5..8fc4c6236a29 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequestOrBuilder.java index 73e34dbb05f3..d71a5f452d1f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RestoreDatasetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequest.java index 824cef769c5c..5d554c58d925 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java index 47215da641d9..c87dccf3e507 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequest.java index 0340c87762d2..16632d31d9db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequestOrBuilder.java index 672fdb6e90ca..9fb6b01b67ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ResumeScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Retrieval.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Retrieval.java index a1d40dafe0c6..18eb8a511cf9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Retrieval.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Retrieval.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -238,7 +238,7 @@ public com.google.cloud.aiplatform.v1beta1.VertexRagStoreOrBuilder getVertexRagS *
* * @deprecated google.cloud.aiplatform.v1beta1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=433 + * google/cloud/aiplatform/v1beta1/tool.proto;l=473 * @return The disableAttribution. */ @java.lang.Override @@ -1149,7 +1149,7 @@ public com.google.cloud.aiplatform.v1beta1.VertexRagStore.Builder getVertexRagSt *
* * @deprecated google.cloud.aiplatform.v1beta1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=433 + * google/cloud/aiplatform/v1beta1/tool.proto;l=473 * @return The disableAttribution. */ @java.lang.Override @@ -1170,7 +1170,7 @@ public boolean getDisableAttribution() { *
* * @deprecated google.cloud.aiplatform.v1beta1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=433 + * google/cloud/aiplatform/v1beta1/tool.proto;l=473 * @param value The disableAttribution to set. * @return This builder for chaining. */ @@ -1195,7 +1195,7 @@ public Builder setDisableAttribution(boolean value) { *
* * @deprecated google.cloud.aiplatform.v1beta1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=433 + * google/cloud/aiplatform/v1beta1/tool.proto;l=473 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfig.java index 115f66e2d404..5505ce2db5b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfigOrBuilder.java index b59ae22e6600..daac9e53876d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadata.java index bfd2df1ba7b9..d995a6de1f4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadataOrBuilder.java index 2451a5c6d6f8..d060c9ccea11 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalOrBuilder.java index 3722b8952c6f..0a9cf9f895b9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrievalOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -113,7 +113,7 @@ public interface RetrievalOrBuilder *
* * @deprecated google.cloud.aiplatform.v1beta1.Retrieval.disable_attribution is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=433 + * google/cloud/aiplatform/v1beta1/tool.proto;l=473 * @return The disableAttribution. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequest.java index 07d5e1030022..d5401468547c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequestOrBuilder.java index 35c7139f893a..be3ef74603dc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponse.java index ba69e2a18f07..db27b5b28baf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponseOrBuilder.java index a822b8e4f41e..003433bbb26a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveContextsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequest.java index 56bac5242443..b04e41278dbe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequestOrBuilder.java index 774c9420eef7..16a824ef01b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponse.java index c575dfe007c0..621f8f85fc2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponseOrBuilder.java index 3d4b3702b44b..fccab06765e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RetrieveMemoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptions.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptions.java index 7476ae803953..46fa06b8e43e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptions.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptionsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptionsOrBuilder.java index e029ea64a4ae..4532314339ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptionsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RolloutOptionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInput.java index fee4e59a7b29..b44d211a62b1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInputOrBuilder.java index 9e6bfc791714..adcd7ade9007 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstance.java index fe21b013b624..9ead620e361f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstanceOrBuilder.java index 52b5444c61d9..5b03fde5f6c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValue.java index a7cfa3fed47b..45abd73b801e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValueOrBuilder.java index 3023451e0793..5393258883e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResults.java index 41abc402e9e1..4b3198b9dc5d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResultsOrBuilder.java index 6d2934468633..b5c740a21133 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpec.java index 5b0f4b75b4ed..6905d135353d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpecOrBuilder.java index 2348ccbe14f0..6a2d4b85badb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RougeSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInput.java index fa2212d3a4fc..cc577112e7b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInputOrBuilder.java index 7287a813bd6e..2fd0f6a0cec8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstance.java index 02df04e8e796..b3e38ebe8cfd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstanceOrBuilder.java index 9b615f3b0ed1..78ed81817698 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResult.java index 43194a442298..e8c0f029e951 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResultOrBuilder.java index 1154d94304c1..a191cf277a87 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpec.java index 352b35354980..a410edce9e52 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpecOrBuilder.java index 55bb3928e5c7..7944b2678b39 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricBasedInstructionFollowingSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResult.java index effc73d5250e..c5d45cf6cb0c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResultOrBuilder.java index 83fa7bb04a5a..2dc5237c66b7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RubricCritiqueResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifact.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifact.java index 02f001443482..eb926e39948d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifact.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifactOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifactOrBuilder.java index 2690a6453103..c2bf630bd9c9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifactOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfig.java index 858d48bb0300..10a6cee834df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfigOrBuilder.java index bd107572bd18..9f45ca2c81ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/RuntimeConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInput.java index f7dff93e3b17..9a9bb6e770d4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInputOrBuilder.java index 8af420da4587..b820b7405109 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstance.java index ba5d5a0a6ab3..44cf92c67b74 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstanceOrBuilder.java index c59d263f8b70..7d17808fa435 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRating.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRating.java index 98f6a3fdd0a8..9976adfbbf78 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRating.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRating.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRatingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRatingOrBuilder.java index 6ac7aa88a965..bc2dc578e0eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRatingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyRatingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResult.java index c5d8f1d5423b..56863272de49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResultOrBuilder.java index 2e37ff69b00c..5424dbc4620f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetyResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySetting.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySetting.java index bb721d31163e..eb124940ec6a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySetting.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySetting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySettingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySettingOrBuilder.java index 32070466ea74..e4a1cfba1977 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySettingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySettingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpec.java index c93506d76944..2faad146039e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpecOrBuilder.java index 14c27dad52bf..e7255e2cc071 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SafetySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfig.java index 1e7f995c83f4..e3dcba149815 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfigOrBuilder.java index 3feef1a3dc73..d8930804b20e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampleConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttribution.java index 2ffc70643269..054d65cae8e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttributionOrBuilder.java index d865486c3218..3c2e9931a638 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SampledShapleyAttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategy.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategy.java index 71b408f9f747..40ea92f3d90c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategy.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategyOrBuilder.java index 049f83b11aa0..25af58f8f54e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SamplingStrategyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQuery.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQuery.java index a4eaa85b3fe7..314324cd3f68 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQuery.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryName.java index c3d6ab356ebe..9b73784da100 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryOrBuilder.java index b932b8962976..e731ed46f401 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryProto.java index ec8c52c485d5..3b4935677336 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SavedQueryProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scalar.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scalar.java index 0a503b69e60f..e74912b75446 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scalar.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scalar.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScalarOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScalarOrBuilder.java index 622818555ed9..cafbd1219089 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScalarOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScalarOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schedule.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schedule.java index a403fe4ac678..0c2740349f1a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schedule.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfig.java index a00a2a184874..77875694af44 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfigOrBuilder.java index 8323c73b963c..a99b434aad67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleName.java index 0a9b1396e3e4..6167c27f7222 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleOrBuilder.java index 32dcb6ff0d88..48cf810f6c87 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleProto.java index a4441df578b0..1eb3af7afa9b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceProto.java index 665e63cff8e5..038971d92240 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ScheduleServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scheduling.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scheduling.java index fb25bab4fc0d..1a62db676c8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scheduling.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Scheduling.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -306,7 +306,7 @@ private Strategy(int value) { * * *
-   * The maximum job running time. The default is 7 days.
+   * Optional. The maximum job running time. The default is 7 days.
    * 
* * .google.protobuf.Duration timeout = 1; @@ -322,7 +322,7 @@ public boolean hasTimeout() { * * *
-   * The maximum job running time. The default is 7 days.
+   * Optional. The maximum job running time. The default is 7 days.
    * 
* * .google.protobuf.Duration timeout = 1; @@ -338,7 +338,7 @@ public com.google.protobuf.Duration getTimeout() { * * *
-   * The maximum job running time. The default is 7 days.
+   * Optional. The maximum job running time. The default is 7 days.
    * 
* * .google.protobuf.Duration timeout = 1; @@ -355,7 +355,7 @@ public com.google.protobuf.DurationOrBuilder getTimeoutOrBuilder() { * * *
-   * Restarts the entire CustomJob if a worker gets restarted.
+   * Optional. Restarts the entire CustomJob if a worker gets restarted.
    * This feature can be used by distributed training jobs that are not
    * resilient to workers leaving and joining a job.
    * 
@@ -977,7 +977,7 @@ public Builder mergeFrom( * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -992,7 +992,7 @@ public boolean hasTimeout() { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1011,7 +1011,7 @@ public com.google.protobuf.Duration getTimeout() { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1034,7 +1034,7 @@ public Builder setTimeout(com.google.protobuf.Duration value) { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1054,7 +1054,7 @@ public Builder setTimeout(com.google.protobuf.Duration.Builder builderForValue) * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1082,7 +1082,7 @@ public Builder mergeTimeout(com.google.protobuf.Duration value) { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1102,7 +1102,7 @@ public Builder clearTimeout() { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1117,7 +1117,7 @@ public com.google.protobuf.Duration.Builder getTimeoutBuilder() { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1134,7 +1134,7 @@ public com.google.protobuf.DurationOrBuilder getTimeoutOrBuilder() { * * *
-     * The maximum job running time. The default is 7 days.
+     * Optional. The maximum job running time. The default is 7 days.
      * 
* * .google.protobuf.Duration timeout = 1; @@ -1162,7 +1162,7 @@ public com.google.protobuf.DurationOrBuilder getTimeoutOrBuilder() { * * *
-     * Restarts the entire CustomJob if a worker gets restarted.
+     * Optional. Restarts the entire CustomJob if a worker gets restarted.
      * This feature can be used by distributed training jobs that are not
      * resilient to workers leaving and joining a job.
      * 
@@ -1180,7 +1180,7 @@ public boolean getRestartJobOnWorkerRestart() { * * *
-     * Restarts the entire CustomJob if a worker gets restarted.
+     * Optional. Restarts the entire CustomJob if a worker gets restarted.
      * This feature can be used by distributed training jobs that are not
      * resilient to workers leaving and joining a job.
      * 
@@ -1202,7 +1202,7 @@ public Builder setRestartJobOnWorkerRestart(boolean value) { * * *
-     * Restarts the entire CustomJob if a worker gets restarted.
+     * Optional. Restarts the entire CustomJob if a worker gets restarted.
      * This feature can be used by distributed training jobs that are not
      * resilient to workers leaving and joining a job.
      * 
diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchedulingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchedulingOrBuilder.java index 55321eea4ebd..9d7c265c9fbc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchedulingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchedulingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ public interface SchedulingOrBuilder * * *
-   * The maximum job running time. The default is 7 days.
+   * Optional. The maximum job running time. The default is 7 days.
    * 
* * .google.protobuf.Duration timeout = 1; @@ -41,7 +41,7 @@ public interface SchedulingOrBuilder * * *
-   * The maximum job running time. The default is 7 days.
+   * Optional. The maximum job running time. The default is 7 days.
    * 
* * .google.protobuf.Duration timeout = 1; @@ -54,7 +54,7 @@ public interface SchedulingOrBuilder * * *
-   * The maximum job running time. The default is 7 days.
+   * Optional. The maximum job running time. The default is 7 days.
    * 
* * .google.protobuf.Duration timeout = 1; @@ -65,7 +65,7 @@ public interface SchedulingOrBuilder * * *
-   * Restarts the entire CustomJob if a worker gets restarted.
+   * Optional. Restarts the entire CustomJob if a worker gets restarted.
    * This feature can be used by distributed training jobs that are not
    * resilient to workers leaving and joining a job.
    * 
diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schema.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schema.java index 31ad59d380cb..c825b183f962 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schema.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Schema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchemaOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchemaOrBuilder.java index a322fe550a8c..97fcc1c76809 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchemaOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequest.java index 24058dbc3d99..f2fc74f5a6d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequestOrBuilder.java index 5088734e31f1..8cad4247a6f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponse.java index f1d26ac8194c..74e240a02fe1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponseOrBuilder.java index a007f582eeed..4aaf400e0ca4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchDataItemsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPoint.java index 84fe87b09b83..6762193c2dbd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPointOrBuilder.java index 160c320e8ac8..431d88304ee7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchEntryPointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequest.java index f762ed5da5e2..bad9edba1117 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequestOrBuilder.java index 683167aad671..6efbd6bd1da2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponse.java index 4711589ac3e5..73941637ed15 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponseOrBuilder.java index 6dcb75cc0ca1..56386b286677 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchExamplesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequest.java index f6b97355ce8c..80a475ffe027 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequestOrBuilder.java index ee38fa71a9a0..b2718c177898 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponse.java index f9f3bf55dca8..66e7cda59891 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponseOrBuilder.java index f8e934367c3c..5058bbf438ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchFeaturesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequest.java index 66fc05d6a0de..d4921f3d08fc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequestOrBuilder.java index 8b324f773f2d..be7c32fdb11c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponse.java index f2e67d012d0e..0548a6b6f21c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponseOrBuilder.java index 6dc1a8ab18ff..06416ea1fa8a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchMigratableResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java index 97737968d1f3..63dd3522b86f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java index e30fa21ea8d6..555ee9842a23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java index 664ee6a205f1..9284846c1b27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java index b74ed59628a9..1660fb6bd30e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelDeploymentMonitoringStatsAnomaliesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequest.java index e9d6bb4d6b4e..cda23ddce337 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequestOrBuilder.java index a733cedf0eba..de397e14129b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponse.java index 987d26dde876..cd01e02a6342 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponseOrBuilder.java index b84efa0eeb7f..7dc31b372c5e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringAlertsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilter.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilter.java index c6941afa4148..8e5ae476723c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilter.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilterOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilterOrBuilder.java index 28662799ef11..6c383817c4f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilterOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequest.java index 1701c9a777ef..99c9b2bc1092 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequestOrBuilder.java index 1920143b085d..fa84731afdcd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponse.java index 688a627c6a6d..b0e1b5fe6df7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponseOrBuilder.java index 0edda2914fc0..28f906ff9993 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchModelMonitoringStatsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequest.java index ec87146c859a..77fd6593e140 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequestOrBuilder.java index 4f9ca08196fa..d87442989f80 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponse.java index 676b54e7cb43..3dce27cab689 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponseOrBuilder.java index 4c20c3b8891e..96c4aa7a373c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SearchNearestEntitiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVar.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVar.java index f21a32c58528..2aba3f06cc76 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVar.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVar.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVarOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVarOrBuilder.java index 2cee12727dd1..a57cf8e8f444 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVarOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretEnvVarOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRef.java index fa12da9c100a..14c4e1c29a02 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRefOrBuilder.java index 18d59db62a7a..2db222a3ad4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SecretRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Segment.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Segment.java index 878b122c2d1a..3ede0f0aa445 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Segment.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Segment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SegmentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SegmentOrBuilder.java index 3c616679e923..5325e022393a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SegmentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpec.java index 2f5257eea7f9..ed47ef687b42 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpecOrBuilder.java index a1f959823f77..67ca9283724e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceAccountSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceNetworkingProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceNetworkingProto.java index 13394d1bcfd4..eee4bf0a64c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceNetworkingProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ServiceNetworkingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Session.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Session.java index b082da61e59f..e78e2474c87e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Session.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Session.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEvent.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEvent.java index 14d487134ab8..3ab8cfb103c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEvent.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEventOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEventOrBuilder.java index cb8de94f7ce5..d40812d10123 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEventOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionName.java index aa424cea7b5e..1139890f87cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionOrBuilder.java index 872915b4c6a6..84b2c73c4951 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionProto.java index 0bf80034baa4..99be7459c7a0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceProto.java index 947c6aeacd87..da6e8c336187 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SessionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadata.java index e8c8ddf3fe93..6c06a1387e97 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadataOrBuilder.java index 97c7f2a0e398..26cdfda66f04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequest.java index d7b023e645cd..dcb715d0fddd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequestOrBuilder.java index 62e939bd2cd4..1e53064f1616 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SetPublisherModelConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSources.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSources.java index e3391528459c..985565d1527f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSources.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSourcesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSourcesOrBuilder.java index 5741f1ca4b75..dae4ff4d663f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSourcesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SharePointSourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfig.java index 36a02aa01c46..2fcbd4c13e85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfigOrBuilder.java index 88b24d4b3c2c..40fcbd3eabc8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ShieldedVmConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSource.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSource.java index ebf89dc204ff..2136c9e10f05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSource.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSourceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSourceOrBuilder.java index 065ccb642c2f..58c230a84288 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSourceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SlackSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfig.java index 766ed21612b2..68eb6915b059 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfigOrBuilder.java index f48382f02ca3..658b2adada89 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SmoothGradConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeakerVoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeakerVoiceConfig.java new file mode 100644 index 000000000000..a80c4f8ad615 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeakerVoiceConfig.java @@ -0,0 +1,960 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +/** + * + * + *
+ * Configuration for a single speaker in a multi-speaker setup.
+ * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig} + */ +public final class SpeakerVoiceConfig extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) + SpeakerVoiceConfigOrBuilder { + private static final long serialVersionUID = 0L; + + // Use SpeakerVoiceConfig.newBuilder() to construct. + private SpeakerVoiceConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private SpeakerVoiceConfig() { + speaker_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new SpeakerVoiceConfig(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder.class); + } + + private int bitField0_; + public static final int SPEAKER_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object speaker_ = ""; + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The speaker. + */ + @java.lang.Override + public java.lang.String getSpeaker() { + java.lang.Object ref = speaker_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + speaker_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for speaker. + */ + @java.lang.Override + public com.google.protobuf.ByteString getSpeakerBytes() { + java.lang.Object ref = speaker_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + speaker_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VOICE_CONFIG_FIELD_NUMBER = 2; + private com.google.cloud.aiplatform.v1beta1.VoiceConfig voiceConfig_; + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the voiceConfig field is set. + */ + @java.lang.Override + public boolean hasVoiceConfig() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The voiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.VoiceConfig getVoiceConfig() { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOrBuilder() { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(speaker_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, speaker_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getVoiceConfig()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(speaker_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, speaker_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getVoiceConfig()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig)) { + return super.equals(obj); + } + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig other = + (com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) obj; + + if (!getSpeaker().equals(other.getSpeaker())) return false; + if (hasVoiceConfig() != other.hasVoiceConfig()) return false; + if (hasVoiceConfig()) { + if (!getVoiceConfig().equals(other.getVoiceConfig())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + SPEAKER_FIELD_NUMBER; + hash = (53 * hash) + getSpeaker().hashCode(); + if (hasVoiceConfig()) { + hash = (37 * hash) + VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getVoiceConfig().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Configuration for a single speaker in a multi-speaker setup.
+   * 
+ * + * Protobuf type {@code google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.class, + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.Builder.class); + } + + // Construct using com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getVoiceConfigFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + speaker_ = ""; + voiceConfig_ = null; + if (voiceConfigBuilder_ != null) { + voiceConfigBuilder_.dispose(); + voiceConfigBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.cloud.aiplatform.v1beta1.ContentProto + .internal_static_google_cloud_aiplatform_v1beta1_SpeakerVoiceConfig_descriptor; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig getDefaultInstanceForType() { + return com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.getDefaultInstance(); + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig build() { + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig buildPartial() { + com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig result = + new com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.speaker_ = speaker_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.voiceConfig_ = + voiceConfigBuilder_ == null ? voiceConfig_ : voiceConfigBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) { + return mergeFrom((com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig other) { + if (other == com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig.getDefaultInstance()) + return this; + if (!other.getSpeaker().isEmpty()) { + speaker_ = other.speaker_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasVoiceConfig()) { + mergeVoiceConfig(other.getVoiceConfig()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + speaker_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + input.readMessage(getVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object speaker_ = ""; + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The speaker. + */ + public java.lang.String getSpeaker() { + java.lang.Object ref = speaker_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + speaker_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for speaker. + */ + public com.google.protobuf.ByteString getSpeakerBytes() { + java.lang.Object ref = speaker_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + speaker_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The speaker to set. + * @return This builder for chaining. + */ + public Builder setSpeaker(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + speaker_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return This builder for chaining. + */ + public Builder clearSpeaker() { + speaker_ = getDefaultInstance().getSpeaker(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The name of the speaker. This should be the same as the speaker
+     * name used in the prompt.
+     * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @param value The bytes for speaker to set. + * @return This builder for chaining. + */ + public Builder setSpeakerBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + speaker_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.cloud.aiplatform.v1beta1.VoiceConfig voiceConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.VoiceConfig, + com.google.cloud.aiplatform.v1beta1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder> + voiceConfigBuilder_; + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the voiceConfig field is set. + */ + public boolean hasVoiceConfig() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The voiceConfig. + */ + public com.google.cloud.aiplatform.v1beta1.VoiceConfig getVoiceConfig() { + if (voiceConfigBuilder_ == null) { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } else { + return voiceConfigBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setVoiceConfig(com.google.cloud.aiplatform.v1beta1.VoiceConfig value) { + if (voiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + voiceConfig_ = value; + } else { + voiceConfigBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder setVoiceConfig( + com.google.cloud.aiplatform.v1beta1.VoiceConfig.Builder builderForValue) { + if (voiceConfigBuilder_ == null) { + voiceConfig_ = builderForValue.build(); + } else { + voiceConfigBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder mergeVoiceConfig(com.google.cloud.aiplatform.v1beta1.VoiceConfig value) { + if (voiceConfigBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) + && voiceConfig_ != null + && voiceConfig_ + != com.google.cloud.aiplatform.v1beta1.VoiceConfig.getDefaultInstance()) { + getVoiceConfigBuilder().mergeFrom(value); + } else { + voiceConfig_ = value; + } + } else { + voiceConfigBuilder_.mergeFrom(value); + } + if (voiceConfig_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public Builder clearVoiceConfig() { + bitField0_ = (bitField0_ & ~0x00000002); + voiceConfig_ = null; + if (voiceConfigBuilder_ != null) { + voiceConfigBuilder_.dispose(); + voiceConfigBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.VoiceConfig.Builder getVoiceConfigBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + public com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOrBuilder() { + if (voiceConfigBuilder_ != null) { + return voiceConfigBuilder_.getMessageOrBuilder(); + } else { + return voiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.VoiceConfig.getDefaultInstance() + : voiceConfig_; + } + } + + /** + * + * + *
+     * Required. The configuration for the voice of this speaker.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.VoiceConfig, + com.google.cloud.aiplatform.v1beta1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder> + getVoiceConfigFieldBuilder() { + if (voiceConfigBuilder_ == null) { + voiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.VoiceConfig, + com.google.cloud.aiplatform.v1beta1.VoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder>( + getVoiceConfig(), getParentForChildren(), isClean()); + voiceConfig_ = null; + } + return voiceConfigBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) + } + + // @@protoc_insertion_point(class_scope:google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) + private static final com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig(); + } + + public static com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public SpeakerVoiceConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeakerVoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeakerVoiceConfigOrBuilder.java new file mode 100644 index 000000000000..9ea22b4b4b65 --- /dev/null +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeakerVoiceConfigOrBuilder.java @@ -0,0 +1,97 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/cloud/aiplatform/v1beta1/content.proto + +// Protobuf Java Version: 3.25.8 +package com.google.cloud.aiplatform.v1beta1; + +public interface SpeakerVoiceConfigOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1beta1.SpeakerVoiceConfig) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The speaker. + */ + java.lang.String getSpeaker(); + + /** + * + * + *
+   * Required. The name of the speaker. This should be the same as the speaker
+   * name used in the prompt.
+   * 
+ * + * string speaker = 1 [(.google.api.field_behavior) = REQUIRED]; + * + * @return The bytes for speaker. + */ + com.google.protobuf.ByteString getSpeakerBytes(); + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return Whether the voiceConfig field is set. + */ + boolean hasVoiceConfig(); + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + * + * @return The voiceConfig. + */ + com.google.cloud.aiplatform.v1beta1.VoiceConfig getVoiceConfig(); + + /** + * + * + *
+   * Required. The configuration for the voice of this speaker.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 2 [(.google.api.field_behavior) = REQUIRED]; + * + */ + com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOrBuilder(); +} diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPool.java index 39aa72edc011..10357b4ca167 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolName.java index ecd456556d79..504b64a54c6d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolOrBuilder.java index 64ec8e70f7ca..21120b42c9a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolProto.java index 207e10ae311a..1c715d52d631 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceProto.java index 558c5e42b595..2ce91aed133d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpecialistPoolServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpec.java index fd252f3f5512..156b749c1cfc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpecOrBuilder.java index 928bfe0ff0c4..07000c7862dd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeculativeDecodingSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfig.java index 46fc8480c2d3..09b0848da128 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * * *
- * The speech generation config.
+ * Configuration for speech generation.
  * 
* * Protobuf type {@code google.cloud.aiplatform.v1beta1.SpeechConfig} @@ -39,7 +39,9 @@ private SpeechConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) super(builder); } - private SpeechConfig() {} + private SpeechConfig() { + languageCode_ = ""; + } @java.lang.Override @SuppressWarnings({"unused"}) @@ -70,7 +72,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * The configuration for the speaker to use.
+   * The configuration for the voice to use.
    * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -86,7 +88,7 @@ public boolean hasVoiceConfig() { * * *
-   * The configuration for the speaker to use.
+   * The configuration for the voice to use.
    * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -104,7 +106,7 @@ public com.google.cloud.aiplatform.v1beta1.VoiceConfig getVoiceConfig() { * * *
-   * The configuration for the speaker to use.
+   * The configuration for the voice to use.
    * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -116,6 +118,119 @@ public com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOr : voiceConfig_; } + public static final int LANGUAGE_CODE_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object languageCode_ = ""; + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The languageCode. + */ + @java.lang.Override + public java.lang.String getLanguageCode() { + java.lang.Object ref = languageCode_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + languageCode_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for languageCode. + */ + @java.lang.Override + public com.google.protobuf.ByteString getLanguageCodeBytes() { + java.lang.Object ref = languageCode_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + languageCode_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int MULTI_SPEAKER_VOICE_CONFIG_FIELD_NUMBER = 3; + private com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multiSpeakerVoiceConfig_; + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return Whether the multiSpeakerVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasMultiSpeakerVoiceConfig() { + return ((bitField0_ & 0x00000002) != 0); + } + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return The multiSpeakerVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig getMultiSpeakerVoiceConfig() { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder + getMultiSpeakerVoiceConfigOrBuilder() { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -133,6 +248,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(1, getVoiceConfig()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(languageCode_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, languageCode_); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(3, getMultiSpeakerVoiceConfig()); + } getUnknownFields().writeTo(output); } @@ -145,6 +266,13 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getVoiceConfig()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(languageCode_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, languageCode_); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize(3, getMultiSpeakerVoiceConfig()); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -165,6 +293,11 @@ public boolean equals(final java.lang.Object obj) { if (hasVoiceConfig()) { if (!getVoiceConfig().equals(other.getVoiceConfig())) return false; } + if (!getLanguageCode().equals(other.getLanguageCode())) return false; + if (hasMultiSpeakerVoiceConfig() != other.hasMultiSpeakerVoiceConfig()) return false; + if (hasMultiSpeakerVoiceConfig()) { + if (!getMultiSpeakerVoiceConfig().equals(other.getMultiSpeakerVoiceConfig())) return false; + } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -180,6 +313,12 @@ public int hashCode() { hash = (37 * hash) + VOICE_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getVoiceConfig().hashCode(); } + hash = (37 * hash) + LANGUAGE_CODE_FIELD_NUMBER; + hash = (53 * hash) + getLanguageCode().hashCode(); + if (hasMultiSpeakerVoiceConfig()) { + hash = (37 * hash) + MULTI_SPEAKER_VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getMultiSpeakerVoiceConfig().hashCode(); + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -285,7 +424,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build * * *
-   * The speech generation config.
+   * Configuration for speech generation.
    * 
* * Protobuf type {@code google.cloud.aiplatform.v1beta1.SpeechConfig} @@ -322,6 +461,7 @@ private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getVoiceConfigFieldBuilder(); + getMultiSpeakerVoiceConfigFieldBuilder(); } } @@ -334,6 +474,12 @@ public Builder clear() { voiceConfigBuilder_.dispose(); voiceConfigBuilder_ = null; } + languageCode_ = ""; + multiSpeakerVoiceConfig_ = null; + if (multiSpeakerVoiceConfigBuilder_ != null) { + multiSpeakerVoiceConfigBuilder_.dispose(); + multiSpeakerVoiceConfigBuilder_ = null; + } return this; } @@ -376,6 +522,16 @@ private void buildPartial0(com.google.cloud.aiplatform.v1beta1.SpeechConfig resu voiceConfigBuilder_ == null ? voiceConfig_ : voiceConfigBuilder_.build(); to_bitField0_ |= 0x00000001; } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.languageCode_ = languageCode_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.multiSpeakerVoiceConfig_ = + multiSpeakerVoiceConfigBuilder_ == null + ? multiSpeakerVoiceConfig_ + : multiSpeakerVoiceConfigBuilder_.build(); + to_bitField0_ |= 0x00000002; + } result.bitField0_ |= to_bitField0_; } @@ -428,6 +584,14 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.SpeechConfig other) if (other.hasVoiceConfig()) { mergeVoiceConfig(other.getVoiceConfig()); } + if (!other.getLanguageCode().isEmpty()) { + languageCode_ = other.languageCode_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (other.hasMultiSpeakerVoiceConfig()) { + mergeMultiSpeakerVoiceConfig(other.getMultiSpeakerVoiceConfig()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -460,6 +624,19 @@ public Builder mergeFrom( bitField0_ |= 0x00000001; break; } // case 10 + case 18: + { + languageCode_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + input.readMessage( + getMultiSpeakerVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000004; + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -490,7 +667,7 @@ public Builder mergeFrom( * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -505,7 +682,7 @@ public boolean hasVoiceConfig() { * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -526,7 +703,7 @@ public com.google.cloud.aiplatform.v1beta1.VoiceConfig getVoiceConfig() { * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -549,7 +726,7 @@ public Builder setVoiceConfig(com.google.cloud.aiplatform.v1beta1.VoiceConfig va * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -570,7 +747,7 @@ public Builder setVoiceConfig( * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -599,7 +776,7 @@ public Builder mergeVoiceConfig(com.google.cloud.aiplatform.v1beta1.VoiceConfig * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -619,7 +796,7 @@ public Builder clearVoiceConfig() { * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -634,7 +811,7 @@ public com.google.cloud.aiplatform.v1beta1.VoiceConfig.Builder getVoiceConfigBui * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -653,7 +830,7 @@ public com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOr * * *
-     * The configuration for the speaker to use.
+     * The configuration for the voice to use.
      * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -675,6 +852,346 @@ public com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOr return voiceConfigBuilder_; } + private java.lang.Object languageCode_ = ""; + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The languageCode. + */ + public java.lang.String getLanguageCode() { + java.lang.Object ref = languageCode_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + languageCode_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for languageCode. + */ + public com.google.protobuf.ByteString getLanguageCodeBytes() { + java.lang.Object ref = languageCode_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + languageCode_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The languageCode to set. + * @return This builder for chaining. + */ + public Builder setLanguageCode(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + languageCode_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearLanguageCode() { + languageCode_ = getDefaultInstance().getLanguageCode(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The language code (ISO 639-1) for the speech synthesis.
+     * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for languageCode to set. + * @return This builder for chaining. + */ + public Builder setLanguageCodeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + languageCode_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multiSpeakerVoiceConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder> + multiSpeakerVoiceConfigBuilder_; + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return Whether the multiSpeakerVoiceConfig field is set. + */ + public boolean hasMultiSpeakerVoiceConfig() { + return ((bitField0_ & 0x00000004) != 0); + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return The multiSpeakerVoiceConfig. + */ + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig + getMultiSpeakerVoiceConfig() { + if (multiSpeakerVoiceConfigBuilder_ == null) { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } else { + return multiSpeakerVoiceConfigBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder setMultiSpeakerVoiceConfig( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig value) { + if (multiSpeakerVoiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + multiSpeakerVoiceConfig_ = value; + } else { + multiSpeakerVoiceConfigBuilder_.setMessage(value); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder setMultiSpeakerVoiceConfig( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder builderForValue) { + if (multiSpeakerVoiceConfigBuilder_ == null) { + multiSpeakerVoiceConfig_ = builderForValue.build(); + } else { + multiSpeakerVoiceConfigBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder mergeMultiSpeakerVoiceConfig( + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig value) { + if (multiSpeakerVoiceConfigBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0) + && multiSpeakerVoiceConfig_ != null + && multiSpeakerVoiceConfig_ + != com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig + .getDefaultInstance()) { + getMultiSpeakerVoiceConfigBuilder().mergeFrom(value); + } else { + multiSpeakerVoiceConfig_ = value; + } + } else { + multiSpeakerVoiceConfigBuilder_.mergeFrom(value); + } + if (multiSpeakerVoiceConfig_ != null) { + bitField0_ |= 0x00000004; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public Builder clearMultiSpeakerVoiceConfig() { + bitField0_ = (bitField0_ & ~0x00000004); + multiSpeakerVoiceConfig_ = null; + if (multiSpeakerVoiceConfigBuilder_ != null) { + multiSpeakerVoiceConfigBuilder_.dispose(); + multiSpeakerVoiceConfigBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder + getMultiSpeakerVoiceConfigBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getMultiSpeakerVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + public com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder + getMultiSpeakerVoiceConfigOrBuilder() { + if (multiSpeakerVoiceConfigBuilder_ != null) { + return multiSpeakerVoiceConfigBuilder_.getMessageOrBuilder(); + } else { + return multiSpeakerVoiceConfig_ == null + ? com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.getDefaultInstance() + : multiSpeakerVoiceConfig_; + } + } + + /** + * + * + *
+     * The configuration for a multi-speaker text-to-speech request.
+     * This field is mutually exclusive with `voice_config`.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder> + getMultiSpeakerVoiceConfigFieldBuilder() { + if (multiSpeakerVoiceConfigBuilder_ == null) { + multiSpeakerVoiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder>( + getMultiSpeakerVoiceConfig(), getParentForChildren(), isClean()); + multiSpeakerVoiceConfig_ = null; + } + return multiSpeakerVoiceConfigBuilder_; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfigOrBuilder.java index ada89cfc7779..ca599d997b73 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SpeechConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ public interface SpeechConfigOrBuilder * * *
-   * The configuration for the speaker to use.
+   * The configuration for the voice to use.
    * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -41,7 +41,7 @@ public interface SpeechConfigOrBuilder * * *
-   * The configuration for the speaker to use.
+   * The configuration for the voice to use.
    * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; @@ -54,10 +54,80 @@ public interface SpeechConfigOrBuilder * * *
-   * The configuration for the speaker to use.
+   * The configuration for the voice to use.
    * 
* * .google.cloud.aiplatform.v1beta1.VoiceConfig voice_config = 1; */ com.google.cloud.aiplatform.v1beta1.VoiceConfigOrBuilder getVoiceConfigOrBuilder(); + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The languageCode. + */ + java.lang.String getLanguageCode(); + + /** + * + * + *
+   * Optional. The language code (ISO 639-1) for the speech synthesis.
+   * 
+ * + * string language_code = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for languageCode. + */ + com.google.protobuf.ByteString getLanguageCodeBytes(); + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return Whether the multiSpeakerVoiceConfig field is set. + */ + boolean hasMultiSpeakerVoiceConfig(); + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + * + * @return The multiSpeakerVoiceConfig. + */ + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig getMultiSpeakerVoiceConfig(); + + /** + * + * + *
+   * The configuration for a multi-speaker text-to-speech request.
+   * This field is mutually exclusive with `voice_config`.
+   * 
+ * + * .google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; + * + */ + com.google.cloud.aiplatform.v1beta1.MultiSpeakerVoiceConfigOrBuilder + getMultiSpeakerVoiceConfigOrBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadata.java index c1e38b4ce747..8ae35a176ef4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadataOrBuilder.java index 87fd5d2ec66d..79f48b2ab6e0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequest.java index fbf0d86b3922..961c87c9cfbf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequestOrBuilder.java index 9736f965ba38..9beec70d0a9f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponse.java index d9e3e4f7a60c..0765fe267c4d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponseOrBuilder.java index 827396aa0db9..b77dfe5a8271 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StartNotebookRuntimeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadata.java index aa8dabf4e8b1..d3d6de45b3d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadataOrBuilder.java index 31e611b37460..07c240920825 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequest.java index 0cd3cb0d9930..320301b84ced 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequestOrBuilder.java index 797a2fa300b8..532daffe225b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponse.java index f410f8f15bb3..b9a25214eb80 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponseOrBuilder.java index 09c6a428862c..0db1e2aa2d26 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopNotebookRuntimeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequest.java index d106bb228abd..b061c01e74f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequestOrBuilder.java index daa23a233719..e9f289744a37 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StopTrialRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExample.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExample.java index 650edc228b49..e49c2bdb0289 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExample.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExample.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilter.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilter.java index 2141e31a7bc5..887ccd1e6cf8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilter.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilterOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilterOrBuilder.java index 115c31e3d4d2..67d626a30410 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilterOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleOrBuilder.java index f6d5ea1bce70..d13fb52983cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParameters.java index af9c8410ddd3..878669f94001 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParametersOrBuilder.java index cf91207b0cf1..93483c73e17a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StoredContentsExampleParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplit.java index 3050f207e626..e06f8f909f0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplitOrBuilder.java index e5a6084116dc..8d43966c8342 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StratifiedSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequest.java index 4a984d7cac0d..61bfbcb6058b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequestOrBuilder.java index 9ab282b82d44..e5a320cce985 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponse.java index ada8151aabbe..4b47f334e10a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponseOrBuilder.java index c9857b25b375..ffca0aae60a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequest.java index 15c34ae9ea36..bbe74f0b7639 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequestOrBuilder.java index 826be7a863cb..bdf9e144dcd2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponse.java index f156fd881f4a..98c1cf9b380d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponseOrBuilder.java index 3c80e4fb55ee..1352ea01c022 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamDirectRawPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequest.java index 3564df350a66..e465ad655121 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequestOrBuilder.java index 3a49157a2e20..5f042ea57024 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamQueryReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequest.java index 6ed9b56b8aeb..5dc0eab9082e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequestOrBuilder.java index bb37c6c0103c..5020268911f7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequest.java index c82688045a5f..cca9834010e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequestOrBuilder.java index 5a2f900a7816..93843483a1c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponse.java index 3c0d66b0f85e..a6c1b8dbba13 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponseOrBuilder.java index e529d039624e..20fe3b1723d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingFetchFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequest.java index 16135fdf6d12..5656ec9a94cb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequestOrBuilder.java index 2d47946bd883..fe8447c9c3ef 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponse.java index bdcfc0702fe6..6c3aeac65e4b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponseOrBuilder.java index dc49b1bf7f57..ee709c26d335 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequest.java index 674322ff9551..54b94cf03498 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequestOrBuilder.java index 14fccfcc5715..592d7b0233ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponse.java index e2d275849111..8957c967dc39 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponseOrBuilder.java index 0adacdddeb3c..b8eec0535adf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingRawPredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequest.java index 51a8dc2b74a2..8b140ca9c307 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequestOrBuilder.java index cba1d4964977..ebb0f2add397 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StreamingReadFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArray.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArray.java index 0c71ab901adc..798beb1c80ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArray.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArrayOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArrayOrBuilder.java index 5c9ded2d15b0..98ce784ab115 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArrayOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StringArrayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValue.java index d316a8bbfa57..03d61ab390c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValueOrBuilder.java index 8ca48823e916..c390a388a12a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructFieldValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValue.java index 4259eb34a2de..7eef24facaad 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValueOrBuilder.java index 3d7759974203..8765e3a5e5e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StructValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Study.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Study.java index 9f7e49d85348..83c10895b00a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Study.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Study.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyName.java index debea23f107d..bacb20b0a1bc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyOrBuilder.java index ee60bc82bc68..fd7bdb624180 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyProto.java index 42ce66c747bf..6dd31d3fa0a8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpec.java index 19d44e2ba3ad..c4a2d0255d49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpecOrBuilder.java index 63d35ff0d509..23e49d0ea77d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraint.java index 9c65a9931829..0d4e5f7624d5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraintOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraintOrBuilder.java index 7edbc24db77c..3a09732ce023 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraintOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/StudyTimeConstraintOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadata.java index 8cc0849c430e..da49aff69c3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadataOrBuilder.java index f39f6bfdb5b6..0bb53d6a94b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequest.java index f39a47fa28fb..c273240dd11b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequestOrBuilder.java index 1db2cdba74ca..c09cf3a0fc29 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponse.java index f5ecc3a591f7..68ea1429ef91 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponseOrBuilder.java index 009d858ccf4d..838f455cab4f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SuggestTrialsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInput.java index e6c6433e4ecc..dac03c14908f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInputOrBuilder.java index 67ff44639726..767cad313ab9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstance.java index df752e50c8c0..d81ea02f5071 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstanceOrBuilder.java index 3640e638e9ff..e9c946e55e08 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResult.java index e4bf6c05eb47..88e693f229a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResultOrBuilder.java index b16910880cd4..3625f3aadd38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpec.java index a9110d5500bc..b1a46a2b2fb7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpecOrBuilder.java index 8e9958fa7cb9..71485754e42d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationHelpfulnessSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInput.java index 464f8252c4bf..b291c7299be6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInputOrBuilder.java index 147786fbce66..2a2570e4f5b6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstance.java index 3841b50aea0b..3b56be628c35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstanceOrBuilder.java index a5cc17945292..bebd2c405345 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResult.java index 9c2a3d2ca4b3..4a6fc4064faa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResultOrBuilder.java index 4a483be731b9..18c89f4b2f67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpec.java index 246d3aca1756..1e92610466be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpecOrBuilder.java index bcbd45b247aa..e6c59cbb6f63 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationQualitySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInput.java index d6359b62e9f9..232dd00243b5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInputOrBuilder.java index 9cea978ccc17..97c2b0bb2ab1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstance.java index c2b47913f1ed..c0fbb7425d8c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstanceOrBuilder.java index bb7fcaa10ac7..adacc2fcbca9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResult.java index 62326c5f4edc..1b8af66a0e59 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResultOrBuilder.java index de0cc443b8a3..2d3eb62c4e88 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbosityResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpec.java index 79996b66fd85..65ecb1ab2fdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpecOrBuilder.java index fac6c1f9f81b..ee202b5f8b2e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SummarizationVerbositySpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParameters.java index 57758f5861c9..9415be3fd414 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParametersOrBuilder.java index 0cd6a1ad339a..67561301853e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedHyperParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStats.java index 5275448c1270..096d60a6e4f6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStatsOrBuilder.java index a5ad1e630049..c4778b601862 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDataStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistribution.java index 26ad9436b036..fb71519dacaa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistributionOrBuilder.java index ce33ece71101..7db5f2f5286f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningDatasetDistributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpec.java index 2ef17109f75a..8cc35f2bd98f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpecOrBuilder.java index 6c925a2425b6..1a25277ebb85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SupervisedTuningSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequest.java index 43506f2acd50..70d1cd781b8b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequestOrBuilder.java index 7f557358ddd8..b43c6ad64248 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponse.java index b9241615cc93..e86f4f3b993e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponseOrBuilder.java index 619a47e68696..69d8fb8433a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/SyncFeatureViewResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestination.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestination.java index e0c1c869b2dd..96138845ec49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestination.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestinationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestinationOrBuilder.java index 4575950d9542..70968ea2bd3c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestinationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TFRecordDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensor.java index 9225aa3bc14f..390d026d8437 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorOrBuilder.java index c7dc8d021295..6389ea49097d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensorboard.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensorboard.java index e85e7e67a92a..a5cf3adc056c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensorboard.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlob.java index 58b7dca963b2..77715a8bb89a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobOrBuilder.java index 3d5faa1af2dc..7a6a1fbf2fe7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequence.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequence.java index 67b436885152..d824d2508529 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequence.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequence.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequenceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequenceOrBuilder.java index 7c2a02986bff..253ad5ef01f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequenceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardBlobSequenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardDataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardDataProto.java index c324cf1e0435..6954296936da 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardDataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardDataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperiment.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperiment.java index 81c9ced15fd0..194a090d618c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperiment.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentName.java index 58f98a13e29a..1724151b9697 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentOrBuilder.java index 91430d977862..af9920c0f732 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentProto.java index 45d2afb715ba..304538300133 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardExperimentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardName.java index 5ef70eb8f37b..541da573474b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardOrBuilder.java index 6fb0f9dd579f..2a7f2f7c8634 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardProto.java index 967af9fad687..ff2bbaaa5b28 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRun.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRun.java index 498045898fc2..fa4d76734d1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRun.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunName.java index afbfcb57949e..c2543554baba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunOrBuilder.java index 8b498ae9d6ce..e3398fbf6d49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunProto.java index d54614d5c399..496c8ca3971a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardRunProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceProto.java index 73c49537d84f..731674d7d9ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensor.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensor.java index 8254cda89a71..55d55363219b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensor.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensorOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensorOrBuilder.java index 11aa28d6d65f..7d175d1c2abe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensorOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTensorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeries.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeries.java index 9e205ceff2cf..236471eda353 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeries.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesName.java index 7ba0748b5389..3e9051b8e6d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesOrBuilder.java index aeaf088ea2d3..051c89dadae9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesProto.java index 47306967a3fd..faa5330dbaac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TensorboardTimeSeriesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfig.java index 6433564d39cf..ec8cf4ba2f05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfigOrBuilder.java index b82c306e52a9..70ed2e02b1d6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ThresholdConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesData.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesData.java index 0e8f88643fa3..d24e823df714 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesData.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataOrBuilder.java index 3ff5d87751f9..bc5107e9a19c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPoint.java index ad9f7f2c93be..880f8210138e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPointOrBuilder.java index 98dc007701ac..ebb2260fb9ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimeSeriesDataPointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplit.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplit.java index 9ee9dd4cac28..0cd8a7ee8c44 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplit.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplitOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplitOrBuilder.java index dc099f183b65..3b84015c6cd8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplitOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TimestampSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfo.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfo.java index 5ef11239db52..a4d86d1ed66f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfo.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfoOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfoOrBuilder.java index 29574904d423..43be96e18d43 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfoOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TokensInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tool.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tool.java index ac89847d85c7..f8c6243cf7c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tool.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Tool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -3629,7 +3629,7 @@ public com.google.cloud.aiplatform.v1beta1.Tool.CodeExecution getCodeExecution() : codeExecution_; } - public static final int URL_CONTEXT_FIELD_NUMBER = 8; + public static final int URL_CONTEXT_FIELD_NUMBER = 10; private com.google.cloud.aiplatform.v1beta1.UrlContext urlContext_; /** @@ -3640,7 +3640,7 @@ public com.google.cloud.aiplatform.v1beta1.Tool.CodeExecution getCodeExecution() *
* * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the urlContext field is set. @@ -3658,7 +3658,7 @@ public boolean hasUrlContext() { *
* * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The urlContext. @@ -3678,7 +3678,7 @@ public com.google.cloud.aiplatform.v1beta1.UrlContext getUrlContext() { * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ @java.lang.Override @@ -3789,7 +3789,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io output.writeMessage(7, getGoogleSearch()); } if (((bitField0_ & 0x00000040) != 0)) { - output.writeMessage(8, getUrlContext()); + output.writeMessage(10, getUrlContext()); } if (((bitField0_ & 0x00000080) != 0)) { output.writeMessage(11, getComputerUse()); @@ -3827,7 +3827,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getGoogleSearch()); } if (((bitField0_ & 0x00000040) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, getUrlContext()); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(10, getUrlContext()); } if (((bitField0_ & 0x00000080) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(11, getComputerUse()); @@ -4405,12 +4405,12 @@ public Builder mergeFrom( bitField0_ |= 0x00000004; break; } // case 58 - case 66: + case 82: { input.readMessage(getUrlContextFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000080; break; - } // case 66 + } // case 82 case 90: { input.readMessage(getComputerUseFieldBuilder().getBuilder(), extensionRegistry); @@ -6401,7 +6401,7 @@ public Builder clearCodeExecution() { * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the urlContext field is set. @@ -6418,7 +6418,7 @@ public boolean hasUrlContext() { * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The urlContext. @@ -6441,7 +6441,7 @@ public com.google.cloud.aiplatform.v1beta1.UrlContext getUrlContext() { * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setUrlContext(com.google.cloud.aiplatform.v1beta1.UrlContext value) { @@ -6466,7 +6466,7 @@ public Builder setUrlContext(com.google.cloud.aiplatform.v1beta1.UrlContext valu * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setUrlContext( @@ -6489,7 +6489,7 @@ public Builder setUrlContext( * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder mergeUrlContext(com.google.cloud.aiplatform.v1beta1.UrlContext value) { @@ -6519,7 +6519,7 @@ public Builder mergeUrlContext(com.google.cloud.aiplatform.v1beta1.UrlContext va * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder clearUrlContext() { @@ -6541,7 +6541,7 @@ public Builder clearUrlContext() { * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.cloud.aiplatform.v1beta1.UrlContext.Builder getUrlContextBuilder() { @@ -6558,7 +6558,7 @@ public com.google.cloud.aiplatform.v1beta1.UrlContext.Builder getUrlContextBuild * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.cloud.aiplatform.v1beta1.UrlContextOrBuilder getUrlContextOrBuilder() { @@ -6579,7 +6579,7 @@ public com.google.cloud.aiplatform.v1beta1.UrlContextOrBuilder getUrlContextOrBu * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ private com.google.protobuf.SingleFieldBuilderV3< diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCall.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCall.java index c92cce1f2506..2d564a150106 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCall.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCall.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallOrBuilder.java index a7d2d0fecb1f..e28a4ed02b62 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInput.java index 5f2cf7556ba4..dd5893b21c39 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInputOrBuilder.java index 88320a5a4e99..fba7ffa362aa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstance.java index 7da4cc2e0aa0..9d9a81302724 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstanceOrBuilder.java index 1e13811cf057..9fee4dc99b46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValue.java index c7fa8259ce14..9d42bba7d0e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValueOrBuilder.java index 0ba12e9bd842..e5f323b860db 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResults.java index 2129cb0fa408..2c67d51414a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResultsOrBuilder.java index e6b6f2e3c30e..4ac188abd195 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpec.java index b08e6b7b29fb..1f115fbd89cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpecOrBuilder.java index f30cff2020a4..e8c3a4b24bab 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolCallValidSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfig.java index c1c702d57c59..ae6d80865a90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfigOrBuilder.java index f0cd985b2984..61faf3befb56 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInput.java index d210e7b441a1..9a923e455366 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInputOrBuilder.java index cc27a807f81a..0c33ce5e8d71 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstance.java index 66320c78cf2f..6b4c2d4b05d8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstanceOrBuilder.java index 3fa99dcc2848..b964fd754a68 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValue.java index f1933e6ae66e..af3985e08324 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValueOrBuilder.java index 52add357556f..f23bcb46b551 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResults.java index 43227aa5b0bd..12e7e391c18b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResultsOrBuilder.java index 07ac76022386..0c96cfc0bfc4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpec.java index bf81d4b2bbc5..40e7ebf253c7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpecOrBuilder.java index f0b7a7e46b58..32c4c5eae568 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolNameMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolOrBuilder.java index afddbecd8f4c..c8d92c90088b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -429,7 +429,7 @@ com.google.cloud.aiplatform.v1beta1.FunctionDeclarationOrBuilder getFunctionDecl * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the urlContext field is set. @@ -444,7 +444,7 @@ com.google.cloud.aiplatform.v1beta1.FunctionDeclarationOrBuilder getFunctionDecl * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The urlContext. @@ -459,7 +459,7 @@ com.google.cloud.aiplatform.v1beta1.FunctionDeclarationOrBuilder getFunctionDecl * * * - * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 8 [(.google.api.field_behavior) = OPTIONAL]; + * .google.cloud.aiplatform.v1beta1.UrlContext url_context = 10 [(.google.api.field_behavior) = OPTIONAL]; * */ com.google.cloud.aiplatform.v1beta1.UrlContextOrBuilder getUrlContextOrBuilder(); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInput.java index 8312fbc7e01e..607c438facf0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInputOrBuilder.java index c0ab68f335eb..ea380f878e85 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstance.java index fd1e3f934f25..eb719e8eeac2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstanceOrBuilder.java index 73060540952d..a754ae0e2a83 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValue.java index 7ae4bc978110..94acf571c7e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValueOrBuilder.java index 8cf1340b2fa2..bcfdaa827705 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResults.java index 68094c6bf0d5..d38810aabd8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResultsOrBuilder.java index 5e51c09b33bf..824feefc3a20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpec.java index e0ef73329769..a08796380799 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpecOrBuilder.java index 66b6c2d4ae57..378951313bc2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKVMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInput.java index aef679b7a9cb..1e0ce327bd20 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInputOrBuilder.java index 355861a2fed8..ef5792205ede 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstance.java index b6de559aa163..32dae6bacf47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstanceOrBuilder.java index 25284500225c..72631b854bc1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValue.java index 7a3216aa3cd2..588073eaa9f4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValueOrBuilder.java index 1d3234426315..773e15af358f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResults.java index 2253a5d5c0e9..bbb7fe505770 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResultsOrBuilder.java index 66aa5a57a1f6..ad2f50d3b085 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpec.java index d8614615e81b..0e9967936773 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpecOrBuilder.java index ee7da84f1fa4..5a0033c63d51 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolParameterKeyMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolProto.java index 9f88cd727a0a..cd32bc7e2ffb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -64,6 +64,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1beta1_FunctionCall_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_FunctionCall_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_PartialArg_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_PartialArg_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_FunctionResponsePart_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -175,7 +179,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "oogle/api/field_behavior.proto\032\031google/a" + "pi/resource.proto\032-google/cloud/aiplatfo" + "rm/v1beta1/openapi.proto\032\034google/protobu" - + "f/struct.proto\032\030google/type/latlng.proto\"\326\n\n" + + "f/struct.proto\032\030google/type/latlng.proto\"\342\n\n" + "\004Tool\022X\n" + "\025function_declarations\030\001 \003(\013" + "24.google.cloud.aiplatform.v1beta1.FunctionDeclarationB\003\340A\001\022B\n" @@ -191,7 +195,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\001(\01324.google.cloud.aiplatform.v1beta1.EnterpriseWebSearchB\003\340A\001\022P\n" + "\016code_execution\030\004" + " \001(\01323.google.cloud.aiplatform.v1beta1.Tool.CodeExecutionB\003\340A\001\022E\n" - + "\013url_context\030\010" + + "\013url_context\030\n" + " \001(\0132+.google.cloud.aiplatform.v1beta1.UrlContextB\003\340A\001\022L\n" + "\014computer_use\030\013 \001(\01321." + "google.cloud.aiplatform.v1beta1.Tool.ComputerUseB\003\340A\001\032\246\001\n" @@ -215,12 +219,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024BLOCK_HIGH_AND_ABOVE\0202\022\032\n" + "\026BLOCK_HIGHER_AND_ABOVE\0207\022\035\n" + "\031BLOCK_VERY_HIGH_AND_ABOVE\020<\022\035\n" - + "\031BLOCK_ONLY_EXTREMELY_HIGH\020d\"\014\n\n" + + "\031BLOCK_ONLY_EXTREMELY_HIGH\020dJ\004\010\010\020\tJ\004\010\t\020\n" + + "\"\014\n\n" + "UrlContext\"\260\003\n" + "\016ToolUseExample\022a\n" + "\023extension_operation\030\n" - + " \001(\0132B.google" - + ".cloud.aiplatform.v1beta1.ToolUseExample.ExtensionOperationH\000\022\027\n\r" + + " \001(\0132B.google.cloud.aiplatform.v1beta1.ToolUseExample.ExtensionOperationH\000\022\027\n\r" + "function_name\030\013 \001(\tH\000\022\031\n" + "\014display_name\030\001 \001(\tB\003\340A\002\022\022\n" + "\005query\030\002 \001(\tB\003\340A\002\022/\n" @@ -235,23 +239,35 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\023FunctionDeclaration\022\021\n" + "\004name\030\001 \001(\tB\003\340A\002\022\030\n" + "\013description\030\002 \001(\tB\003\340A\001\022@\n\n" - + "parameters\030\003" - + " \001(\0132\'.google.cloud.aiplatform.v1beta1.SchemaB\003\340A\001\022;\n" + + "parameters\030\003 \001(\0132" + + "\'.google.cloud.aiplatform.v1beta1.SchemaB\003\340A\001\022;\n" + "\026parameters_json_schema\030\005" + " \001(\0132\026.google.protobuf.ValueB\003\340A\001\022>\n" - + "\010response\030\004 \001(\0132\'.googl" - + "e.cloud.aiplatform.v1beta1.SchemaB\003\340A\001\0229\n" + + "\010response\030\004" + + " \001(\0132\'.google.cloud.aiplatform.v1beta1.SchemaB\003\340A\001\0229\n" + "\024response_json_schema\030\006" - + " \001(\0132\026.google.protobuf.ValueB\003\340A\001\"^\n" + + " \001(\0132\026.google.protobuf.ValueB\003\340A\001\"\302\001\n" + "\014FunctionCall\022\017\n" + "\002id\030\003 \001(\tB\003\340A\001\022\021\n" - + "\004name\030\001 \001(\tB\003\340A\002\022*\n" - + "\004args\030\002 \001(\0132\027.google.protobuf.StructB\003\340A\001\"\274\001\n" + + "\004name\030\001 \001(\tB\003\340A\001\022*\n" + + "\004args\030\002 \001(\0132\027.google.protobuf.StructB\003\340A\001\022F\n" + + "\014partial_args\030\004 \003(\0132+.google.cl" + + "oud.aiplatform.v1beta1.PartialArgB\003\340A\001\022\032\n\r" + + "will_continue\030\005 \001(\010B\003\340A\001\"\325\001\n\n" + + "PartialArg\0225\n\n" + + "null_value\030\002" + + " \001(\0162\032.google.protobuf.NullValueB\003\340A\001H\000\022\033\n" + + "\014number_value\030\003 \001(\001B\003\340A\001H\000\022\033\n" + + "\014string_value\030\004 \001(\tB\003\340A\001H\000\022\031\n\n" + + "bool_value\030\005 \001(\010B\003\340A\001H\000\022\026\n" + + "\tjson_path\030\001 \001(\tB\003\340A\002\022\032\n\r" + + "will_continue\030\006 \001(\010B\003\340A\001B\007\n" + + "\005delta\"\274\001\n" + "\024FunctionResponsePart\022L\n" - + "\013inline_data\030\001 \001(\0132" - + "5.google.cloud.aiplatform.v1beta1.FunctionResponseBlobH\000\022N\n" - + "\tfile_data\030\002 \001(\01329.go" - + "ogle.cloud.aiplatform.v1beta1.FunctionResponseFileDataH\000B\006\n" + + "\013inline_data\030\001" + + " \001(\01325.google.cloud.aiplatform.v1beta1.FunctionResponseBlobH\000\022N\n" + + "\tfile_data\030\002" + + " \001(\01329.google.cloud.aiplatform.v1beta1.FunctionResponseFileDataH\000B\006\n" + "\004data\"\\\n" + "\024FunctionResponseBlob\022\026\n" + "\tmime_type\030\001 \001(\tB\003\340A\002\022\021\n" @@ -265,18 +281,18 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\002id\030\003 \001(\tB\003\340A\001\022\021\n" + "\004name\030\001 \001(\tB\003\340A\002\022.\n" + "\010response\030\002 \001(\0132\027.google.protobuf.StructB\003\340A\002\022I\n" - + "\005parts\030\004 \003(\01325.google.cloud.aipl" - + "atform.v1beta1.FunctionResponsePartB\003\340A\001\"\246\001\n" + + "\005parts\030\004 \003(\01325.google.c" + + "loud.aiplatform.v1beta1.FunctionResponsePartB\003\340A\001\"\246\001\n" + "\016ExecutableCode\022O\n" - + "\010language\030\001 \001(\01628." - + "google.cloud.aiplatform.v1beta1.ExecutableCode.LanguageB\003\340A\002\022\021\n" + + "\010language\030\001" + + " \001(\01628.google.cloud.aiplatform.v1beta1.ExecutableCode.LanguageB\003\340A\002\022\021\n" + "\004code\030\002 \001(\tB\003\340A\002\"0\n" + "\010Language\022\030\n" + "\024LANGUAGE_UNSPECIFIED\020\000\022\n\n" + "\006PYTHON\020\001\"\345\001\n" + "\023CodeExecutionResult\022R\n" - + "\007outcome\030\001" - + " \001(\0162<.google.cloud.aiplatform.v1beta1.CodeExecutionResult.OutcomeB\003\340A\002\022\023\n" + + "\007outcome\030\001 \001(\0162<.google.cloud.aipla" + + "tform.v1beta1.CodeExecutionResult.OutcomeB\003\340A\002\022\023\n" + "\006output\030\002 \001(\tB\003\340A\001\"e\n" + "\007Outcome\022\027\n" + "\023OUTCOME_UNSPECIFIED\020\000\022\016\n\n" @@ -284,22 +300,22 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\016OUTCOME_FAILED\020\002\022\035\n" + "\031OUTCOME_DEADLINE_EXCEEDED\020\003\"\323\001\n" + "\tRetrieval\022K\n" - + "\020vertex_ai_search\030\002 \001(" - + "\0132/.google.cloud.aiplatform.v1beta1.VertexAISearchH\000\022K\n" - + "\020vertex_rag_store\030\004 \001(\0132/" - + ".google.cloud.aiplatform.v1beta1.VertexRagStoreH\000\022\"\n" + + "\020vertex_ai_search\030\002" + + " \001(\0132/.google.cloud.aiplatform.v1beta1.VertexAISearchH\000\022K\n" + + "\020vertex_rag_store\030\004" + + " \001(\0132/.google.cloud.aiplatform.v1beta1.VertexRagStoreH\000\022\"\n" + "\023disable_attribution\030\003 \001(\010B\005\030\001\340A\001B\010\n" + "\006source\"\224\004\n" + "\016VertexRagStore\022B\n" + "\013rag_corpora\030\001 \003(\tB-\030\001\340A\001\372A%\n" + "#aiplatform.googleapis.com/RagCorpus\022W\n\r" - + "rag_resources\030\004" - + " \003(\0132;.google.cloud.aiplatform.v1beta1.VertexRagStore.RagResourceB\003\340A\001\022$\n" + + "rag_resources\030\004 \003(\0132;.google.cloud.aiplatform" + + ".v1beta1.VertexRagStore.RagResourceB\003\340A\001\022$\n" + "\020similarity_top_k\030\002 \001(\005B\005\030\001\340A\001H\000\210\001\001\022-\n" + "\031vector_distance_threshold\030\003" + " \001(\001B\005\030\001\340A\001H\001\210\001\001\022V\n" - + "\024rag_retrieval_config\030\006 \001(\01323.google.clou" - + "d.aiplatform.v1beta1.RagRetrievalConfigB\003\340A\001\022\032\n\r" + + "\024rag_retrieval_config\030\006 \001(\01323.go" + + "ogle.cloud.aiplatform.v1beta1.RagRetrievalConfigB\003\340A\001\022\032\n\r" + "store_context\030\007 \001(\010B\003\340A\001\032i\n" + "\013RagResource\022?\n\n" + "rag_corpus\030\001 \001(\tB+\340A\001\372A%\n" @@ -312,43 +328,45 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\006engine\030\002 \001(\tB\003\340A\001\022\030\n" + "\013max_results\030\003 \001(\005B\003\340A\001\022\023\n" + "\006filter\030\004 \001(\tB\003\340A\001\022W\n" - + "\020data_store_specs\030\005" - + " \003(\0132=.google.cloud.aiplatform.v1beta1.VertexAISearch.DataStoreSpec\0328\n\r" + + "\020data_store_specs\030\005 \003(\0132=.google.cloud.aiplatfo" + + "rm.v1beta1.VertexAISearch.DataStoreSpec\0328\n\r" + "DataStoreSpec\022\022\n\n" + "data_store\030\001 \001(\t\022\023\n" + "\006filter\030\002 \001(\tB\003\340A\001\"r\n" + "\025GoogleSearchRetrieval\022Y\n" - + "\030dynamic_retrieval_config\030\002 \001(\01327.google.clo" - + "ud.aiplatform.v1beta1.DynamicRetrievalConfig\"(\n\n" + + "\030dynamic_retrieval_config\030\002 \001(\01327.g" + + "oogle.cloud.aiplatform.v1beta1.DynamicRetrievalConfig\"(\n\n" + "GoogleMaps\022\032\n\r" + "enable_widget\030\001 \001(\010B\003\340A\001\"\255\001\n" + "\023EnterpriseWebSearch\022\034\n" + "\017exclude_domains\030\001 \003(\tB\003\340A\001\022`\n" - + "\023blocking_confidence\030\004 \001(\01629.google.cloud.aiplatform.v1be" - + "ta1.Tool.PhishBlockThresholdB\003\340A\001H\000\210\001\001B\026\n" + + "\023blocking_confidence\030\004 \001(\01629.google.cloud.aiplat" + + "form.v1beta1.Tool.PhishBlockThresholdB\003\340A\001H\000\210\001\001B\026\n" + "\024_blocking_confidence\"\317\001\n" + "\026DynamicRetrievalConfig\022J\n" - + "\004mode\030\001 \001(\0162<.google.cloud.a" - + "iplatform.v1beta1.DynamicRetrievalConfig.Mode\022#\n" + + "\004mode\030\001 \001(\0162<.googl" + + "e.cloud.aiplatform.v1beta1.DynamicRetrievalConfig.Mode\022#\n" + "\021dynamic_threshold\030\002 \001(\002B\003\340A\001H\000\210\001\001\".\n" + "\004Mode\022\024\n" + "\020MODE_UNSPECIFIED\020\000\022\020\n" + "\014MODE_DYNAMIC\020\001B\024\n" + "\022_dynamic_threshold\"\273\001\n\n" + "ToolConfig\022\\\n" - + "\027function_calling_config\030\001 \001(\013" - + "26.google.cloud.aiplatform.v1beta1.FunctionCallingConfigB\003\340A\001\022O\n" + + "\027function_calling_config\030\001" + + " \001(\01326.google.cloud.aiplatform.v1beta1.FunctionCallingConfigB\003\340A\001\022O\n" + "\020retrieval_config\030\002" - + " \001(\01320.google.cloud.aiplatform.v1beta1.RetrievalConfigB\003\340A\001\"\334\001\n" + + " \001(\01320.google.cloud.aiplatform.v1beta1.RetrievalConfigB\003\340A\001\"\211\002\n" + "\025FunctionCallingConfig\022N\n" - + "\004mode\030\001 \001(\0162;.google.cloud.ai" - + "platform.v1beta1.FunctionCallingConfig.ModeB\003\340A\001\022#\n" - + "\026allowed_function_names\030\002 \003(\tB\003\340A\001\"N\n" + + "\004mode\030\001 \001(\0162;.google" + + ".cloud.aiplatform.v1beta1.FunctionCallingConfig.ModeB\003\340A\001\022#\n" + + "\026allowed_function_names\030\002 \003(\tB\003\340A\001\022+\n" + + "\036stream_function_call_arguments\030\004 \001(\010B\003\340A\001\"N\n" + "\004Mode\022\024\n" + "\020MODE_UNSPECIFIED\020\000\022\010\n" + "\004AUTO\020\001\022\007\n" + "\003ANY\020\002\022\010\n" - + "\004NONE\020\003\022\r\n" + + "\004NONE\020\003\022\r" + + "\n" + "\tVALIDATED\020\005\"\004\010\004\020\004\"v\n" + "\017RetrievalConfig\022)\n" + "\007lat_lng\030\001 \001(\0132\023.google.type.LatLngH\000\210\001\001\022\032\n\r" @@ -357,12 +375,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\016_language_code\"\317\006\n" + "\022RagRetrievalConfig\022\022\n" + "\005top_k\030\001 \001(\005B\003\340A\001\022\\\n\r" - + "hybrid_search\030\002 \001(\0132@.google" - + ".cloud.aiplatform.v1beta1.RagRetrievalConfig.HybridSearchB\003\340A\001\022O\n" - + "\006filter\030\003 \001(\0132:" - + ".google.cloud.aiplatform.v1beta1.RagRetrievalConfig.FilterB\003\340A\001\022Q\n" - + "\007ranking\030\004 \001(\013" - + "2;.google.cloud.aiplatform.v1beta1.RagRetrievalConfig.RankingB\003\340A\001\0321\n" + + "hybrid_search\030\002" + + " \001(\0132@.google.cloud.aiplatform.v1beta1.RagRetrievalConfig.HybridSearchB\003\340A\001\022O\n" + + "\006filter\030\003" + + " \001(\0132:.google.cloud.aiplatform.v1beta1.RagRetrievalConfig.FilterB\003\340A\001\022Q\n" + + "\007ranking\030\004 \001(\0132;.google.cloud.aiplatform" + + ".v1beta1.RagRetrievalConfig.RankingB\003\340A\001\0321\n" + "\014HybridSearch\022\027\n" + "\005alpha\030\001 \001(\002B\003\340A\001H\000\210\001\001B\010\n" + "\006_alpha\032\223\001\n" @@ -372,10 +390,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\017metadata_filter\030\002 \001(\tB\003\340A\001B\025\n" + "\023vector_db_threshold\032\331\002\n" + "\007Ranking\022d\n" - + "\014rank_service\030\001 \001(\0132G.google.cloud.aip" - + "latform.v1beta1.RagRetrievalConfig.Ranking.RankServiceB\003\340A\001H\000\022`\n\n" - + "llm_ranker\030\003 \001(\0132E.google.cloud.aiplatform.v1beta1.RagR" - + "etrievalConfig.Ranking.LlmRankerB\003\340A\001H\000\032:\n" + + "\014rank_service\030\001 \001(\0132G.go" + + "ogle.cloud.aiplatform.v1beta1.RagRetrievalConfig.Ranking.RankServiceB\003\340A\001H\000\022`\n\n" + + "llm_ranker\030\003 \001(\0132E.google.cloud.aiplatfor" + + "m.v1beta1.RagRetrievalConfig.Ranking.LlmRankerB\003\340A\001H\000\032:\n" + "\013RankService\022\034\n\n" + "model_name\030\001 \001(\tB\003\340A\001H\000\210\001\001B\r\n" + "\013_model_name\0328\n" @@ -383,11 +401,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "model_name\030\001 \001(\tB\003\340A\001H\000\210\001\001B\r\n" + "\013_model_nameB\020\n" + "\016ranking_configB\340\001\n" - + "#com.google.cloud.aiplatform.v1beta1B\tToolProtoP\001ZCcloud.goog" - + "le.com/go/aiplatform/apiv1beta1/aiplatfo" - + "rmpb;aiplatformpb\252\002\037Google.Cloud.AIPlatf" - + "orm.V1Beta1\312\002\037Google\\Cloud\\AIPlatform\\V1" - + "beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" + + "#com.google.cloud.aiplatform.v1beta1B\tToolProto" + + "P\001ZCcloud.google.com/go/aiplatform/apiv1" + + "beta1/aiplatformpb;aiplatformpb\252\002\037Google" + + ".Cloud.AIPlatform.V1Beta1\312\002\037Google\\Cloud" + + "\\AIPlatform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -487,10 +505,24 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FunctionCall_descriptor, new java.lang.String[] { - "Id", "Name", "Args", + "Id", "Name", "Args", "PartialArgs", "WillContinue", }); - internal_static_google_cloud_aiplatform_v1beta1_FunctionResponsePart_descriptor = + internal_static_google_cloud_aiplatform_v1beta1_PartialArg_descriptor = getDescriptor().getMessageTypes().get(5); + internal_static_google_cloud_aiplatform_v1beta1_PartialArg_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1beta1_PartialArg_descriptor, + new java.lang.String[] { + "NullValue", + "NumberValue", + "StringValue", + "BoolValue", + "JsonPath", + "WillContinue", + "Delta", + }); + internal_static_google_cloud_aiplatform_v1beta1_FunctionResponsePart_descriptor = + getDescriptor().getMessageTypes().get(6); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponsePart_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FunctionResponsePart_descriptor, @@ -498,7 +530,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "InlineData", "FileData", "Data", }); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponseBlob_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(7); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponseBlob_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FunctionResponseBlob_descriptor, @@ -506,7 +538,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MimeType", "Data", "DisplayName", }); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponseFileData_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(8); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponseFileData_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FunctionResponseFileData_descriptor, @@ -514,7 +546,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MimeType", "FileUri", "DisplayName", }); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponse_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(9); internal_static_google_cloud_aiplatform_v1beta1_FunctionResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FunctionResponse_descriptor, @@ -522,7 +554,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Id", "Name", "Response", "Parts", }); internal_static_google_cloud_aiplatform_v1beta1_ExecutableCode_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(10); internal_static_google_cloud_aiplatform_v1beta1_ExecutableCode_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_ExecutableCode_descriptor, @@ -530,7 +562,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Language", "Code", }); internal_static_google_cloud_aiplatform_v1beta1_CodeExecutionResult_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(11); internal_static_google_cloud_aiplatform_v1beta1_CodeExecutionResult_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_CodeExecutionResult_descriptor, @@ -538,7 +570,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Outcome", "Output", }); internal_static_google_cloud_aiplatform_v1beta1_Retrieval_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(12); internal_static_google_cloud_aiplatform_v1beta1_Retrieval_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_Retrieval_descriptor, @@ -546,7 +578,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "VertexAiSearch", "VertexRagStore", "DisableAttribution", "Source", }); internal_static_google_cloud_aiplatform_v1beta1_VertexRagStore_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(13); internal_static_google_cloud_aiplatform_v1beta1_VertexRagStore_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_VertexRagStore_descriptor, @@ -569,7 +601,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "RagCorpus", "RagFileIds", }); internal_static_google_cloud_aiplatform_v1beta1_VertexAISearch_descriptor = - getDescriptor().getMessageTypes().get(13); + getDescriptor().getMessageTypes().get(14); internal_static_google_cloud_aiplatform_v1beta1_VertexAISearch_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_VertexAISearch_descriptor, @@ -587,7 +619,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "DataStore", "Filter", }); internal_static_google_cloud_aiplatform_v1beta1_GoogleSearchRetrieval_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(15); internal_static_google_cloud_aiplatform_v1beta1_GoogleSearchRetrieval_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_GoogleSearchRetrieval_descriptor, @@ -595,7 +627,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "DynamicRetrievalConfig", }); internal_static_google_cloud_aiplatform_v1beta1_GoogleMaps_descriptor = - getDescriptor().getMessageTypes().get(15); + getDescriptor().getMessageTypes().get(16); internal_static_google_cloud_aiplatform_v1beta1_GoogleMaps_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_GoogleMaps_descriptor, @@ -603,7 +635,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "EnableWidget", }); internal_static_google_cloud_aiplatform_v1beta1_EnterpriseWebSearch_descriptor = - getDescriptor().getMessageTypes().get(16); + getDescriptor().getMessageTypes().get(17); internal_static_google_cloud_aiplatform_v1beta1_EnterpriseWebSearch_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_EnterpriseWebSearch_descriptor, @@ -611,7 +643,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "ExcludeDomains", "BlockingConfidence", }); internal_static_google_cloud_aiplatform_v1beta1_DynamicRetrievalConfig_descriptor = - getDescriptor().getMessageTypes().get(17); + getDescriptor().getMessageTypes().get(18); internal_static_google_cloud_aiplatform_v1beta1_DynamicRetrievalConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_DynamicRetrievalConfig_descriptor, @@ -619,7 +651,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Mode", "DynamicThreshold", }); internal_static_google_cloud_aiplatform_v1beta1_ToolConfig_descriptor = - getDescriptor().getMessageTypes().get(18); + getDescriptor().getMessageTypes().get(19); internal_static_google_cloud_aiplatform_v1beta1_ToolConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_ToolConfig_descriptor, @@ -627,15 +659,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "FunctionCallingConfig", "RetrievalConfig", }); internal_static_google_cloud_aiplatform_v1beta1_FunctionCallingConfig_descriptor = - getDescriptor().getMessageTypes().get(19); + getDescriptor().getMessageTypes().get(20); internal_static_google_cloud_aiplatform_v1beta1_FunctionCallingConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_FunctionCallingConfig_descriptor, new java.lang.String[] { - "Mode", "AllowedFunctionNames", + "Mode", "AllowedFunctionNames", "StreamFunctionCallArguments", }); internal_static_google_cloud_aiplatform_v1beta1_RetrievalConfig_descriptor = - getDescriptor().getMessageTypes().get(20); + getDescriptor().getMessageTypes().get(21); internal_static_google_cloud_aiplatform_v1beta1_RetrievalConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_RetrievalConfig_descriptor, @@ -643,7 +675,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "LatLng", "LanguageCode", }); internal_static_google_cloud_aiplatform_v1beta1_RagRetrievalConfig_descriptor = - getDescriptor().getMessageTypes().get(21); + getDescriptor().getMessageTypes().get(22); internal_static_google_cloud_aiplatform_v1beta1_RagRetrievalConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_aiplatform_v1beta1_RagRetrievalConfig_descriptor, diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExample.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExample.java index 34be23937520..b53cdf6a6276 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExample.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExample.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExampleOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExampleOrBuilder.java index a7e56171ea4f..16951cfe726e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExampleOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ToolUseExampleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfig.java index 39733b353861..e6ff4ab8d70d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfigOrBuilder.java index 19c23c9f4daf..eb12f829f3ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipeline.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipeline.java index 953539ccd986..e086c314d633 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipeline.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineName.java index 2cfb08b0bf2e..b0d2f2870614 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineOrBuilder.java index 63bf3c5e8b57..d5c2e32bdfdd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineProto.java index 500ed48b01b0..c83259b46851 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrainingPipelineProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trajectory.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trajectory.java index 56c8828a4bc1..09e239b0f07f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trajectory.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trajectory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInput.java index 9932205276c6..954c23ca9518 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInputOrBuilder.java index c7c9f8c39734..99c7f62b00ee 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstance.java index fa9b62527e2c..907eda82a51e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstanceOrBuilder.java index 6df1a6f2c7ff..b2dffcd3b983 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValue.java index d330c888d7b2..38fa204ac06d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValueOrBuilder.java index c5e64a204a52..de14fe4cd185 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResults.java index 76c1a8137574..7db3161e19a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResultsOrBuilder.java index f12d25a0a571..7bb582a23ef4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpec.java index 13ca0881b3d9..2a9598795b3e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpecOrBuilder.java index 86dca7605896..4efe78c053a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryAnyOrderMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInput.java index 8088f70e3f3a..3790fd72fc1d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInputOrBuilder.java index 1d2f93b5aebf..6085c563ac1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstance.java index 9fd5785f5e3a..54abb7ad5b48 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstanceOrBuilder.java index d1c26cb0e155..f49ecd231e47 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValue.java index e8b4f6fd754d..df51ce8d08a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValueOrBuilder.java index e534c485721f..20e5a3087753 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResults.java index ec47edb4346c..02ad2c01d520 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResultsOrBuilder.java index e77ef6d72634..728abb128e27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpec.java index 803e5bc7eb8d..e3d4471ca12c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpecOrBuilder.java index 2d82b2f6ac74..c84e18a19ea2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryExactMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInput.java index 9e56f39ba808..4a3bb400a5f8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInputOrBuilder.java index dbd0de8e8b00..bdabbfaf4e38 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstance.java index a4f58f1b1ea5..0862b02b03f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstanceOrBuilder.java index 48ba984ad27f..e133a6a2bea8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValue.java index 90162a7d886e..19d17e6c1957 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValueOrBuilder.java index 8115647dd5cd..38751629e28b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResults.java index fb70bbacef1b..8b987e020944 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResultsOrBuilder.java index d5bacb0b1a91..05283bd5f44b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpec.java index d8c8fa40809b..070dc92092a7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpecOrBuilder.java index 266e93bd4b6b..1385afc760f3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryInOrderMatchSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryOrBuilder.java index 28ac05ed4a52..d0b0cc5afe71 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInput.java index d89b6f17277f..f811051dc411 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInputOrBuilder.java index 84917b96f3e2..b76bfe6c7cba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstance.java index 4f63777dbd3c..f67ff4cb9dfa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstanceOrBuilder.java index b9310fe93d15..1e16ec40ee46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValue.java index bb4b271701be..df40a153b995 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValueOrBuilder.java index 7b4efe8cce21..5d41377fbf0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResults.java index 002db21f8916..f5bceec07655 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResultsOrBuilder.java index 8e6901e40ee7..18170bc8d4bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpec.java index be0ee81e5ac3..d01503372f04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpecOrBuilder.java index c85486cdf586..a5986cbe2fa6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryPrecisionSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInput.java index 425d5d87a930..49232629527a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInputOrBuilder.java index 40aaeca4163a..31d4571a55ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstance.java index 49acd95c5b45..a8e6e3cdbfe6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstanceOrBuilder.java index eac38f5a2c34..4a434eb44e54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValue.java index 288f29f21d48..b2d092277558 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValueOrBuilder.java index ef46bccd8616..4ef443978b2b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResults.java index 490506f6fb72..56e92d33c4a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResultsOrBuilder.java index 3d1fc8c49f31..dd5f9b85883f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpec.java index f5ed5af441da..6ed266970a5f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpecOrBuilder.java index f8dd8f058e39..0862e739037d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectoryRecallSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInput.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInput.java index d79acc3ad2a6..f8042e26aa1f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInput.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInput.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInputOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInputOrBuilder.java index 47ed5c70203c..3feabed567f6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInputOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInputOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstance.java index 6be543742bd1..c8929301c8ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstanceOrBuilder.java index 04721f3aa3da..8e549450450e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValue.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValue.java index be6f093e4357..eabb9955cef7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValue.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValueOrBuilder.java index 10b1561481b8..e8961ea60d67 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResults.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResults.java index 046d1703a43e..34c013cec0cf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResults.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResults.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResultsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResultsOrBuilder.java index f19c264edd3e..7a78194cae1c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResultsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseResultsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpec.java index a4237e6aa5cb..a5186e08f744 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpecOrBuilder.java index c91586ad526e..467b29a7bd0d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrajectorySingleToolUseSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trial.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trial.java index aa70772ca16e..e0c3128f296f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trial.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Trial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContext.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContext.java index b09a113e728e..39d0ac22a492 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContext.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContextOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContextOrBuilder.java index a46cac4570ae..198102b4baa0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContextOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialContextOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialName.java index 7f82ece7e747..61e3523f5c35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialOrBuilder.java index 37afea7ab531..8ce266ebfe3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TrialOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModel.java index 203f5f5c945b..0a894023d3cc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpoint.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpoint.java index 55a2bccadc99..977580c54133 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpoint.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpointOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpointOrBuilder.java index 2dde8d50cfd4..d6334dc0a215 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpointOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelCheckpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelOrBuilder.java index 222e15d61d92..fac7736f43ac 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRef.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRef.java index 80e2c6e054c3..07e3a59df0eb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRef.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRef.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRefOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRefOrBuilder.java index 5b23ef3608f1..e8c4b83ee629 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRefOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TunedModelRefOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStats.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStats.java index c9d4101362fc..9fd49d4a227b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStats.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStatsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStatsOrBuilder.java index 8b839d8187d1..a3b90932a26d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStatsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningDataStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJob.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJob.java index 8320c0c218d5..8d930039cdd4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJob.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobName.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobName.java index 426196d2da76..467dbc3703c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobName.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobOrBuilder.java index 65979089d4c4..9d5c19f8d68e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobProto.java index fde264ec44d3..1ee51d29adfb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TuningJobProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Type.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Type.java index 41efa21937b7..54dcc2c075ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Type.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Type.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TypesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TypesProto.java index 02493f48c879..a992a596a7af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TypesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/TypesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UiPipelineSpecProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UiPipelineSpecProto.java index 5bc9ed019fec..16c141edafdf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UiPipelineSpecProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UiPipelineSpecProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadata.java index 6318ff7fc6d4..436344063452 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadataOrBuilder.java index bc1290e0ae93..99e4453bcdf1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequest.java index 8fcc794af268..f9082a5d06f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequestOrBuilder.java index a36e2a930e7e..7a6df399ccc3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponse.java index fccbc4aaed3d..76f6b3c3d8d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponseOrBuilder.java index 523ec2c13f14..a4e7d561d1d7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployIndexResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadata.java index 57bb94476229..b221e7d49a7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadataOrBuilder.java index 8092a9e88d7d..307d9a109fd3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequest.java index 452f49e508bb..6771e4c88466 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequestOrBuilder.java index d92b55f679d8..1e7c23bd37b8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponse.java index 7ef140405beb..77363f92c0e8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponseOrBuilder.java index ed464d893075..a50c8cf8fae0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UndeployModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModel.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModel.java index 4fda1cc99f54..061c967568d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModel.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelOrBuilder.java index b9948560895f..9ca1c30559b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelProto.java index 668ccd923126..2ec34acf783a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UnmanagedContainerModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequest.java index 49e69aea7ef4..bab7dbd0327f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequestOrBuilder.java index 0767c376639d..5e1ac55b389b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequest.java index 67f70f62b6c0..a7586ea46a23 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequestOrBuilder.java index 88fef744fe60..598ddd15aa89 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateCachedContentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequest.java index b4e741572e43..2e01319fb39c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequestOrBuilder.java index 0b59336f03f9..8e4c4794b092 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateContextRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequest.java index a6894dbcd2eb..372c8d9572a4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequestOrBuilder.java index 6d6e4c91b7a3..f5278cdb033f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequest.java index bf87f6c7c57a..2df0a4d97008 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequestOrBuilder.java index 1cbb774530b6..1944c95bcdb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDatasetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadata.java index 19f250d195fd..0becfcb34c05 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java index 7cf59652f60f..ec6018f5f28e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequest.java index 8affdd98eef5..dad2bda40ef6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequestOrBuilder.java index 9e223f098cf9..4648e0d8a899 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateDeploymentResourcePoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequest.java index daa9fb8f4aa6..722d587a0ffd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequestOrBuilder.java index 3413f30af8a2..5969cc5cacaa 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointLongRunningRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadata.java index 0896d51d94b9..2b26d6262056 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadataOrBuilder.java index 44e09ffedb0c..3874f48aa871 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequest.java index dbbf82920309..da44910f7941 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequestOrBuilder.java index b86a4378c148..0de680bf391d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequest.java index 3e9cdbfb40f8..05e845353bb1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequestOrBuilder.java index fdbf4c09570b..4bac2658179f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateEntityTypeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadata.java index 75623eabb642..a6726087f13d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadataOrBuilder.java index 60a46b47ec09..52f411b9f386 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequest.java index 9da0c5085793..54c3296091bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequestOrBuilder.java index b74ee442d4be..68996deaf5a3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExampleStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequest.java index 81ff2f52eb97..90e812a1c598 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequestOrBuilder.java index de2352e67bea..7155ffe927e3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExecutionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadata.java index c58189ba50c6..1ff732f05010 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadataOrBuilder.java index 043a285042d0..9617095d9d08 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequest.java index e0704d5f06f9..7d80b5f2f455 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequestOrBuilder.java index 19641bf4dc6e..1ec978b26390 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponse.java index 5e9abca2092c..03142f0a4094 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponseOrBuilder.java index 7887fe20350f..915aef087e07 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExplanationDatasetResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequest.java index d3523a8839a6..37c5c385e408 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequestOrBuilder.java index 4470245217e0..4f6998917ab9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateExtensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadata.java index c3ada81ccda6..49fb8c145ef7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadataOrBuilder.java index be259b10b0ca..76b2d6a3a818 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequest.java index e8fda8c2ecba..166f7e47d79f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequestOrBuilder.java index 2c8721efcc1f..5a688338026e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadata.java index 350c76b7474a..d9c46f9de13b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadataOrBuilder.java index da0c6cc52e6a..2d6f98c68549 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequest.java index 340d081e7b96..b2328d3d23c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequestOrBuilder.java index 9f8108257258..4c89cb128388 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureMonitorRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadata.java index ab4f231aedc0..deeeeb9753fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java index 8fada4fb05dd..028f82bb918a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequest.java index cc3027d12eaf..e548f9d9e6b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequestOrBuilder.java index e4144c4a6d2f..8b17a52a716a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOnlineStoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadata.java index 89f509075c2c..15c8711375e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadataOrBuilder.java index 6b642beee92d..2c6e9cb26066 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequest.java index 1db05e11f120..c563065dd308 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequestOrBuilder.java index ed74514ac6c0..00c8630a5a0b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadata.java index 885a6503c919..b68848c741cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadataOrBuilder.java index cfc5bfcb2ef8..eb743cc30af4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequest.java index 2071beff8e55..2d6f2088afe6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequestOrBuilder.java index ab20307fb783..e052d84b234a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeatureViewRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadata.java index b258673c38fd..9620aed0e0fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadataOrBuilder.java index 6b0bba3a3922..a7c7065c2068 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequest.java index 7cc619599e38..25fa3422cec9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequestOrBuilder.java index b02a771bee4f..848bbde0afb8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateFeaturestoreRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequest.java index bea604669791..b62c7ffc4e8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequestOrBuilder.java index b84469996ca6..44fde6146167 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexEndpointRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadata.java index a4206b0027a5..1fce53e9a476 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadataOrBuilder.java index b6170e6b9347..9ea9deb280bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequest.java index d0c40a4289e4..df2df11c1472 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequestOrBuilder.java index ae664d1edc1d..18b61222118a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateIndexRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadata.java index b0dda5d2286a..2d5751576d1b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadataOrBuilder.java index c90748b280a8..ea2078d0e6ba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequest.java index 7d7d3cb7bd18..488830e243df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequestOrBuilder.java index 2c27a26da932..72f4cb49981e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateMemoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadata.java index 30c705ff42fa..160f308dd46e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java index b0ae010dc50b..f88721bdbfd0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequest.java index 024cec51380c..7846cfe1645b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java index 0059210405ce..89b0590e27d9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelDeploymentMonitoringJobRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadata.java index 4090391f1b34..d8108ecfab86 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadataOrBuilder.java index af18fb82764c..2ac77505836e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequest.java index 21e1958fd9f3..560fec4dce01 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequestOrBuilder.java index 646eefd00ed0..79615b7b5c0b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelMonitorRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequest.java index f8ba14f1feaa..77bef94e5395 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequestOrBuilder.java index e5e4de193702..76d5a05ec1af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequest.java index 4b50b7461334..a5e8f3b11cd0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java index 3d55cdb01c11..93788a56385f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateNotebookRuntimeTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadata.java index 296fb4eef930..61c9d83c737f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadataOrBuilder.java index dc81c8980fdb..6e2338556e24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequest.java index 1207c8815fd4..b7f612298fa2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequestOrBuilder.java index 5eeef8b67ff2..28208428afe9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdatePersistentResourceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadata.java index 0cddce6a9336..1da3a6e2e4af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadataOrBuilder.java index 3cfdd51bbd84..8cd99409a7c8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequest.java index 6f99febd34de..eced8013f2df 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequestOrBuilder.java index 934cfe3ab424..b537b6ebaba7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagCorpusRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadata.java index 65624b87fb84..287c506d352b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadataOrBuilder.java index 2bc2ada58da1..a5f54109a972 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequest.java index 106dfef083be..05eb77ae416d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequestOrBuilder.java index 133225f66eff..deb1ff036aec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateRagEngineConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadata.java index 19cf1b364a23..52a6d34cec54 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadataOrBuilder.java index 825bf51b4171..8e38f837f09e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequest.java index 464df49b3f01..95e614b9fb46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequestOrBuilder.java index e5442c36e171..a08102a7522f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateReasoningEngineRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequest.java index 5ffb914adc05..1f4756906641 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequestOrBuilder.java index 917648ea219e..283048c8ceb5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateScheduleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequest.java index 948f05bdda82..7965425f0421 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequestOrBuilder.java index a3efd4f62642..71ff10ea6ff8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSessionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadata.java index cb21c75fa2d0..2b2fa66666ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadataOrBuilder.java index 5510cef2772c..3b685f067064 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequest.java index 6b1767416f85..cde139b6dc0a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequestOrBuilder.java index 1a42a970ba4a..b29a6bbd39a5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateSpecialistPoolRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequest.java index c788b9db928c..a7e068ddabb3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequestOrBuilder.java index 2b8b79b95001..248dac594b8e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardExperimentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadata.java index 67f30cfdc17f..bf2c0ce9fd68 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadataOrBuilder.java index a1b1841868e1..988ee02db597 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequest.java index ff543facd7d0..418179b8c171 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequestOrBuilder.java index 1f07332bdaa6..80b660fe3114 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequest.java index d2bcf72e2dd2..be78a8438b6c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequestOrBuilder.java index dcec964b7b47..c34c40160ecd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardRunRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequest.java index 16b5fb8604af..b3939ae2cda0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequestOrBuilder.java index 53eb7f43d9ce..1005d9872d8c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpdateTensorboardTimeSeriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadata.java index cba598fa64cd..73f82e0b03f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java index f18be01fb9af..9e723d1d1650 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequest.java index 24690531ce03..95b6a19efa2d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequestOrBuilder.java index 427cd0c7c9ce..df610f09a9fe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponse.java index 8b3d0fe94043..28b532417ee6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponseOrBuilder.java index 50a98bbfc2e7..1b4fc068e179 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpgradeNotebookRuntimeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadata.java index cbdcfb9ce316..e655fd8bd28b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadataOrBuilder.java index 38f542b3a100..f89e748a2781 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequest.java index 0c73166e6837..b1229646c9bd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequestOrBuilder.java index d7b23534db79..9b3e420e75ae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponse.java index be11cca96707..3eafc4843cd0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponseOrBuilder.java index 50edb8e2cff7..dcb3d08765a1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadModelResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfig.java index b89f09794912..778a4fce9f8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,7 +78,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * * @deprecated google.cloud.aiplatform.v1beta1.UploadRagFileConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=644 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=665 * @return Whether the ragFileChunkingConfig field is set. */ @java.lang.Override @@ -99,7 +99,7 @@ public boolean hasRagFileChunkingConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.UploadRagFileConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=644 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=665 * @return The ragFileChunkingConfig. */ @java.lang.Override @@ -821,7 +821,7 @@ public Builder mergeFrom( * * * @deprecated google.cloud.aiplatform.v1beta1.UploadRagFileConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=644 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=665 * @return Whether the ragFileChunkingConfig field is set. */ @java.lang.Deprecated @@ -841,7 +841,7 @@ public boolean hasRagFileChunkingConfig() { * * * @deprecated google.cloud.aiplatform.v1beta1.UploadRagFileConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=644 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=665 * @return The ragFileChunkingConfig. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfigOrBuilder.java index 2091b8b4a020..9b52cd377ccc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,7 +36,7 @@ public interface UploadRagFileConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.UploadRagFileConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=644 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=665 * @return Whether the ragFileChunkingConfig field is set. */ @java.lang.Deprecated @@ -54,7 +54,7 @@ public interface UploadRagFileConfigOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.UploadRagFileConfig.rag_file_chunking_config is - * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=644 + * deprecated. See google/cloud/aiplatform/v1beta1/vertex_rag_data.proto;l=665 * @return The ragFileChunkingConfig. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequest.java index 86f3949f8e2e..a7c5962ad682 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequestOrBuilder.java index c1452feb2dad..3cb30b4304ca 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponse.java index 49fb8f80b912..7392d3ecf6fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponseOrBuilder.java index f41dec4382bd..3c2921434290 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UploadRagFileResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequest.java index 9fa65bfb707d..281a16e6377e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequestOrBuilder.java index bb6a53270ada..23eb2a1d42af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponse.java index b49edae556ec..6f434c3a22ff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponseOrBuilder.java index 28cf1204788b..76e8a850f61d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertDatapointsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequest.java index 114a63e11664..002defca6756 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequestOrBuilder.java index e43ffb57b4b4..d6bdfc2613b0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponse.java index a78a5c11e92b..8c52bd2cf928 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponseOrBuilder.java index 3910aca3b1f9..dc9909b83f46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UpsertExamplesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContext.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContext.java index 76ec68f38d3d..c4af89d0f012 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContext.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadata.java index 674d6f8f1fe0..54e7a87bfeae 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadataOrBuilder.java index 8fe75908c526..153263f00f8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextOrBuilder.java index 2a701ecacd91..50bc8ffa57f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlContextOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadata.java index d6b519603395..381c5e8fe4e2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadataOrBuilder.java index de285584ddb9..071a25e4f689 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UrlMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadata.java index 6dc528717c09..788cefe42de8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataOrBuilder.java index 10f1c95bb554..2d4a0c4f1323 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataProto.java index 35318fb4edd0..a837e81b2f1d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UsageMetadataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReference.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReference.java index 4eb9e17e9a0d..39a7f72f8cc0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReference.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceOrBuilder.java index a3baa76a7a16..17a5d5f87f7e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceProto.java index de2a7d5349b4..dc3e4a6011bb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/UserActionReferenceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Value.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Value.java index af3180430374..5d78b0caa5a6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Value.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/Value.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueOrBuilder.java index bbbd65995614..5f5d23c07d2a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueProto.java index 473b420ff2a9..262564cec4fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ValueProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParameters.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParameters.java index a63ae2801085..612385b23a56 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParameters.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParameters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParametersOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParametersOrBuilder.java index a48c0e5cfe21..89479156505c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParametersOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoHyperParametersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpec.java index 179351a99f6a..bb3e40806df8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpecOrBuilder.java index a083f6fc6fb0..c87ebde02ef5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VeoTuningSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearch.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearch.java index e5ce0ebf9b00..84d18879d80a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearch.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearch.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearchOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearchOrBuilder.java index 9eeff1050a89..f860fda4fcfb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearchOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAISearchOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfig.java index cdf4e7a57a81..b362e777a3f1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfigOrBuilder.java index 69ee86aa274d..bb6808b2bcd1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexAiSearchConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataProto.java index f441f2e04e01..616d586fede5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,6 +80,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_VertexVectorSearch_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_VertexVectorSearch_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_cloud_aiplatform_v1beta1_FileStatus_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -226,7 +230,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "RagEmbeddingModelConfig.SparseEmbeddingConfigB\003\340A\001\022\211\001\n" + ")dense_embedding_model_prediction_endpoint\030\002 \001(\0132Q.google.cloud.ai" + "platform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpointB\003\340A\002B\016\n" - + "\014model_config\"\345\010\n" + + "\014model_config\"\240\n\n" + "\021RagVectorDbConfig\022Y\n" + "\016rag_managed_db\030\001 \001(\0132?.google.cloud.aiplatform.v" + "1beta1.RagVectorDbConfig.RagManagedDbH\000\022O\n" @@ -237,15 +241,17 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024vertex_feature_store\030\004 \001(\0132E.google" + ".cloud.aiplatform.v1beta1.RagVectorDbConfig.VertexFeatureStoreH\000\022e\n" + "\024vertex_vector_search\030\006 \001(\0132E.google.cloud.aiplatform" - + ".v1beta1.RagVectorDbConfig.VertexVectorSearchH\000\022:\n" + + ".v1beta1.RagVectorDbConfig.VertexVectorSearchH\000\022{\n" + + " rag_managed_vertex_vector_search\030\010 \001(\0132O.google.cloud.aiplatform.v1be" + + "ta1.RagVectorDbConfig.RagManagedVertexVectorSearchH\000\022:\n" + "\010api_auth\030\005 \001(\0132(.google.cloud.aiplatform.v1beta1.ApiAuth\022d\n" - + "\032rag_embedding_model_config\030\007 \001(\01328.google.cloud.a" - + "iplatform.v1beta1.RagEmbeddingModelConfigB\006\340A\001\340A\005\032\202\002\n" + + "\032rag_embedding_model_config\030\007 \001(\01328.google.cl" + + "oud.aiplatform.v1beta1.RagEmbeddingModelConfigB\006\340A\001\340A\005\032\202\002\n" + "\014RagManagedDb\022R\n" - + "\003knn\030\001 \001(\0132" - + "C.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedDb.KNNH\000\022R\n" - + "\003ann\030\002 " - + "\001(\0132C.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedDb.ANNH\000\032\005\n" + + "\003knn\030\001" + + " \001(\0132C.google.cloud.aiplatform.v1beta1.RagVectorDbConfig.RagManagedDb.KNNH\000\022R\n" + + "\003ann\030\002 \001(\0132C.google.cloud.aiplatform.v1bet" + + "a1.RagVectorDbConfig.RagManagedDb.ANNH\000\032\005\n" + "\003KNN\032-\n" + "\003ANN\022\022\n\n" + "tree_depth\030\001 \001(\005\022\022\n\n" @@ -260,11 +266,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\032feature_view_resource_name\030\001 \001(\t\032;\n" + "\022VertexVectorSearch\022\026\n" + "\016index_endpoint\030\001 \001(\t\022\r\n" - + "\005index\030\002 \001(\tB\013\n" + + "\005index\030\002 \001(\t\032<\n" + + "\034RagManagedVertexVectorSearch\022\034\n" + + "\017collection_name\030\001 \001(\tB\003\340A\003B\013\n" + "\tvector_db\"\245\001\n\n" + "FileStatus\022E\n" - + "\005state\030\001" - + " \001(\01621.google.cloud.aiplatform.v1beta1.FileStatus.StateB\003\340A\003\022\031\n" + + "\005state\030\001 \001(\01621.google" + + ".cloud.aiplatform.v1beta1.FileStatus.StateB\003\340A\003\022\031\n" + "\014error_status\030\002 \001(\tB\003\340A\003\"5\n" + "\005State\022\025\n" + "\021STATE_UNSPECIFIED\020\000\022\n\n" @@ -273,62 +281,63 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024VertexAiSearchConfig\022\026\n" + "\016serving_config\030\001 \001(\t\"\260\001\n" + "\014CorpusStatus\022G\n" - + "\005state\030\001 \001(\01623.google.cloud.ai" - + "platform.v1beta1.CorpusStatus.StateB\003\340A\003\022\031\n" + + "\005state\030\001" + + " \001(\01623.google.cloud.aiplatform.v1beta1.CorpusStatus.StateB\003\340A\003\022\031\n" + "\014error_status\030\002 \001(\tB\003\340A\003\"<\n" + "\005State\022\013\n" + "\007UNKNOWN\020\000\022\017\n" + "\013INITIALIZED\020\001\022\n\n" + "\006ACTIVE\020\002\022\t\n" - + "\005ERROR\020\003\"\341\n\n" + + "\005ERROR\020\003\"\231\013\n" + "\tRagCorpus\022V\n" - + "\020vector_db_config\030\t" - + " \001(\01322.google.cloud.aiplatform.v1beta1.RagVectorDbConfigB\006\340A\001\340A\005H\000\022`\n" + + "\020vector_db_config\030\t \001(\01322.g" + + "oogle.cloud.aiplatform.v1beta1.RagVectorDbConfigB\006\340A\001\340A\005H\000\022`\n" + "\027vertex_ai_search_config\030\n" - + " \001(\01325.google.cloud." - + "aiplatform.v1beta1.VertexAiSearchConfigB\006\340A\001\340A\005H\000\022\021\n" + + " \001(\01325.google.cloud.aiplatform.v1beta1.VertexAiSearchConfigB\006\340A\001\340A\005H\000\022\021\n" + "\004name\030\001 \001(\tB\003\340A\003\022\031\n" + "\014display_name\030\002 \001(\tB\003\340A\002\022\030\n" + "\013description\030\003 \001(\tB\003\340A\001\022f\n" - + "\032rag_embedding_model_config\030\006 \001(\01328." - + "google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfigB\010\030\001\340A\001\340A\005\022Z\n" - + "\024rag_vector_db_config\030\007" - + " \001(\01322.google.cloud.aiplatform.v1beta1.RagVectorDbConfigB\010\030\001\340A\001\340A\005\0224\n" + + "\032rag_embedding_model_config\030\006 \001(\01328.google.cloud." + + "aiplatform.v1beta1.RagEmbeddingModelConfigB\010\030\001\340A\001\340A\005\022Z\n" + + "\024rag_vector_db_config\030\007 \001" + + "(\01322.google.cloud.aiplatform.v1beta1.RagVectorDbConfigB\010\030\001\340A\001\340A\005\0224\n" + "\013create_time\030\004 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + "\013update_time\030\005" + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022I\n\r" - + "corpus_status\030\010" - + " \001(\0132-.google.cloud.aiplatform.v1beta1.CorpusStatusB\003\340A\003\022\034\n" + + "corpus_status\030\010 \001(\0132-.go" + + "ogle.cloud.aiplatform.v1beta1.CorpusStatusB\003\340A\003\022\034\n" + "\017rag_files_count\030\013 \001(\005B\003\340A\003\022P\n" - + "\017encryption_spec\030\014 \001(\0132/.go" - + "ogle.cloud.aiplatform.v1beta1.EncryptionSpecB\006\340A\005\340A\001\022\\\n" + + "\017encryption_spec\030\014 \001(\0132/.google.cloud.ai" + + "platform.v1beta1.EncryptionSpecB\006\340A\005\340A\001\022\\\n" + "\022corpus_type_config\030\r" - + " \001(\013" - + "2;.google.cloud.aiplatform.v1beta1.RagCorpus.CorpusTypeConfigB\003\340A\001\032\363\002\n" + + " \001(\0132;.google.clo" + + "ud.aiplatform.v1beta1.RagCorpus.CorpusTypeConfigB\003\340A\001\022\032\n\r" + + "satisfies_pzs\030\023 \001(\010B\003\340A\003\022\032\n\r" + + "satisfies_pzi\030\024 \001(\010B\003\340A\003\032\363\002\n" + "\020CorpusTypeConfig\022j\n" - + "\017document_corpus\030\001 \001(\0132J.googl" - + "e.cloud.aiplatform.v1beta1.RagCorpus.CorpusTypeConfig.DocumentCorpusB\003\340A\001H\000\022f\n\r" - + "memory_corpus\030\002 \001(\0132H.google.cloud.aiplat" - + "form.v1beta1.RagCorpus.CorpusTypeConfig.MemoryCorpusB\003\340A\001H\000\032\020\n" + + "\017document_corpus\030\001 \001(\0132J.google.cloud.aiplatform.v1beta1.RagCorpus." + + "CorpusTypeConfig.DocumentCorpusB\003\340A\001H\000\022f\n\r" + + "memory_corpus\030\002 \001(\0132H.google.cloud.aip" + + "latform.v1beta1.RagCorpus.CorpusTypeConfig.MemoryCorpusB\003\340A\001H\000\032\020\n" + "\016DocumentCorpus\032c\n" + "\014MemoryCorpus\022S\n\n" - + "llm_parser\030\001 \001(\0132?.goog" - + "le.cloud.aiplatform.v1beta1.RagFileParsingConfig.LlmParserB\024\n" + + "llm_parser\030\001 \001(\0132?.g" + + "oogle.cloud.aiplatform.v1beta1.RagFileParsingConfig.LlmParserB\024\n" + "\022corpus_type_config:\200\001\352A}\n" - + "#aiplatform.googleapis.com/RagCor" - + "pus\022?projects/{project}/locations/{location}/ragCorpora/{rag_corpus}*\n" + + "#aiplatform.googleapis.com/Rag" + + "Corpus\022?projects/{project}/locations/{location}/ragCorpora/{rag_corpus}*\n" + "ragCorpora2\tragCorpusB\020\n" + "\016backend_config\"\342\010\n" + "\007RagFile\022E\n\n" + "gcs_source\030\010" + " \001(\0132*.google.cloud.aiplatform.v1beta1.GcsSourceB\003\340A\003H\000\022V\n" - + "\023google_drive_source\030\t \001(\01322.google.cloud.aip" - + "latform.v1beta1.GoogleDriveSourceB\003\340A\003H\000\022X\n" + + "\023google_drive_source\030\t \001(\01322.google.cloud." + + "aiplatform.v1beta1.GoogleDriveSourceB\003\340A\003H\000\022X\n" + "\024direct_upload_source\030\n" - + " \001(\01323.google." - + "cloud.aiplatform.v1beta1.DirectUploadSourceB\003\340A\003H\000\022D\n" - + "\014slack_source\030\013 \001(\0132,.googl" - + "e.cloud.aiplatform.v1beta1.SlackSourceH\000\022B\n" + + " \001(\01323.goog" + + "le.cloud.aiplatform.v1beta1.DirectUploadSourceB\003\340A\003H\000\022D\n" + + "\014slack_source\030\013 \001(\0132,.go" + + "ogle.cloud.aiplatform.v1beta1.SlackSourceH\000\022B\n" + "\013jira_source\030\014" + " \001(\0132+.google.cloud.aiplatform.v1beta1.JiraSourceH\000\022Q\n" + "\023share_point_sources\030\016" @@ -337,8 +346,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\014display_name\030\002 \001(\tB\003\340A\002\022\030\n" + "\013description\030\003 \001(\tB\003\340A\001\022\027\n\n" + "size_bytes\030\004 \001(\003B\003\340A\003\022P\n\r" - + "rag_file_type\030\005 \001(\01624.google" - + ".cloud.aiplatform.v1beta1.RagFile.RagFileTypeB\003\340A\003\0224\n" + + "rag_file_type\030\005 \001(\01624.goo" + + "gle.cloud.aiplatform.v1beta1.RagFile.RagFileTypeB\003\340A\003\0224\n" + "\013create_time\030\006 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + "\013update_time\030\007 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022E\n" + "\013file_status\030\r" @@ -348,20 +357,20 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\031RAG_FILE_TYPE_UNSPECIFIED\020\000\022\025\n" + "\021RAG_FILE_TYPE_TXT\020\001\022\025\n" + "\021RAG_FILE_TYPE_PDF\020\002:\217\001\352A\213\001\n" - + "!aiplatform.googleapis.com/RagFile\022Sprojects/{project}/locations/{location}/ragCorp" - + "ora/{rag_corpus}/ragFiles/{rag_file}*\010ragFiles2\007ragFileB\021\n" + + "!aiplatform.googleapis.com/RagFile\022Sprojects/{project}/locations/{location}/ragC" + + "orpora/{rag_corpus}/ragFiles/{rag_file}*\010ragFiles2\007ragFileB\021\n" + "\017rag_file_source\"\245\001\n" + "\010RagChunk\022\014\n" + "\004text\030\001 \001(\t\022J\n" - + "\tpage_span\030\002 \001(\013" - + "22.google.cloud.aiplatform.v1beta1.RagChunk.PageSpanH\000\210\001\001\0321\n" + + "\tpage_span\030\002 " + + "\001(\01322.google.cloud.aiplatform.v1beta1.RagChunk.PageSpanH\000\210\001\001\0321\n" + "\010PageSpan\022\022\n\n" + "first_page\030\001 \001(\005\022\021\n" + "\tlast_page\030\002 \001(\005B\014\n\n" + "_page_span\"\214\002\n" + "\025RagFileChunkingConfig\022k\n" - + "\025fixed_length_chunking\030\003 \001(\0132J.google.cloud.aipla" - + "tform.v1beta1.RagFileChunkingConfig.FixedLengthChunkingH\000\022\026\n\n" + + "\025fixed_length_chunking\030\003 \001(\0132J.google.cloud.ai" + + "platform.v1beta1.RagFileChunkingConfig.FixedLengthChunkingH\000\022\026\n\n" + "chunk_size\030\001 \001(\005B\002\030\001\022\031\n\r" + "chunk_overlap\030\002 \001(\005B\002\030\001\032@\n" + "\023FixedLengthChunking\022\022\n\n" @@ -369,15 +378,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "chunk_overlap\030\002 \001(\005B\021\n" + "\017chunking_config\"w\n" + "\033RagFileTransformationConfig\022X\n" - + "\030rag_file_chunking_config\030\001" - + " \001(\01326.google.cloud.aiplatform.v1beta1.RagFileChunkingConfig\"\236\005\n" + + "\030rag_file_chunking_config\030\001 \001(\01326.google.cloud.aip" + + "latform.v1beta1.RagFileChunkingConfig\"\236\005\n" + "\024RagFileParsingConfig\022_\n" - + "\017advanced_parser\030\003" - + " \001(\0132D.google.cloud.aiplatform.v1beta1.RagFileParsingConfig.AdvancedParserH\000\022[\n\r" - + "layout_parser\030\004 \001(\0132B.google.cloud.aipla" - + "tform.v1beta1.RagFileParsingConfig.LayoutParserH\000\022U\n\n" - + "llm_parser\030\005 \001(\0132?.google.c" - + "loud.aiplatform.v1beta1.RagFileParsingConfig.LlmParserH\000\022$\n" + + "\017advanced_parser\030\003 \001(\0132D.google.cloud.aiplatform.v1beta" + + "1.RagFileParsingConfig.AdvancedParserH\000\022[\n\r" + + "layout_parser\030\004 \001(\0132B.google.cloud.ai" + + "platform.v1beta1.RagFileParsingConfig.LayoutParserH\000\022U\n\n" + + "llm_parser\030\005 \001(\0132?.googl" + + "e.cloud.aiplatform.v1beta1.RagFileParsingConfig.LlmParserH\000\022$\n" + "\030use_advanced_pdf_parsing\030\002 \001(\010B\002\030\001\0322\n" + "\016AdvancedParser\022 \n" + "\030use_advanced_pdf_parsing\030\001 \001(\010\032y\n" @@ -399,44 +408,44 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\035inline_metadata_schema_source\030\003 \001(\tH\000\022I\n" + "\023gcs_metadata_source\030\004" + " \001(\0132*.google.cloud.aiplatform.v1beta1.GcsSourceH\001\022Z\n" - + "\034google_drive_metadata_source\030\005 \001(\01322.google.cl" - + "oud.aiplatform.v1beta1.GoogleDriveSourceH\001\022 \n" + + "\034google_drive_metadata_source\030\005 \001(\01322.google" + + ".cloud.aiplatform.v1beta1.GoogleDriveSourceH\001\022 \n" + "\026inline_metadata_source\030\006 \001(\tH\001B\030\n" + "\026metadata_schema_sourceB\021\n" + "\017metadata_source\"\220\003\n" + "\023UploadRagFileConfig\022\\\n" - + "\030rag_file_chunking_config\030\001 \001(\01326.google.cloud.aipla" - + "tform.v1beta1.RagFileChunkingConfigB\002\030\001\022d\n" - + "\036rag_file_transformation_config\030\003 \001(\0132" - + "<.google.cloud.aiplatform.v1beta1.RagFileTransformationConfig\022X\n" + + "\030rag_file_chunking_config\030\001 \001(\01326.google.cloud.ai" + + "platform.v1beta1.RagFileChunkingConfigB\002\030\001\022d\n" + + "\036rag_file_transformation_config\030\003 \001" + + "(\0132<.google.cloud.aiplatform.v1beta1.RagFileTransformationConfig\022X\n" + "\030rag_file_metadata_config\030\004" + " \001(\01326.google.cloud.aiplatform.v1beta1.RagFileMetadataConfig\022[\n" - + "\027rag_file_parsing_config\030\005 \001(\01325.google.cloud." - + "aiplatform.v1beta1.RagFileParsingConfigB\003\340A\001\"\252\n\n" + + "\027rag_file_parsing_config\030\005 \001(\01325.google.clo" + + "ud.aiplatform.v1beta1.RagFileParsingConfigB\003\340A\001\"\252\n\n" + "\024ImportRagFilesConfig\022@\n\n" + "gcs_source\030\002 \001(\0132*.google.cloud.aiplatform.v1beta1.GcsSourceH\000\022Q\n" + "\023google_drive_source\030\003" + " \001(\01322.google.cloud.aiplatform.v1beta1.GoogleDriveSourceH\000\022D\n" - + "\014slack_source\030\006 \001(\013" - + "2,.google.cloud.aiplatform.v1beta1.SlackSourceH\000\022B\n" - + "\013jira_source\030\007" - + " \001(\0132+.google.cloud.aiplatform.v1beta1.JiraSourceH\000\022Q\n" + + "\014slack_source\030\006 " + + "\001(\0132,.google.cloud.aiplatform.v1beta1.SlackSourceH\000\022B\n" + + "\013jira_source\030\007 \001(\0132+.googl" + + "e.cloud.aiplatform.v1beta1.JiraSourceH\000\022Q\n" + "\023share_point_sources\030\r" + " \001(\01322.google.cloud.aiplatform.v1beta1.SharePointSourcesH\000\022W\n" - + "\030partial_failure_gcs_sink\030\013 \001(\0132/.goog" - + "le.cloud.aiplatform.v1beta1.GcsDestinationB\002\030\001H\001\022a\n" + + "\030partial_failure_gcs_sink\030\013 \001(\0132/.g" + + "oogle.cloud.aiplatform.v1beta1.GcsDestinationB\002\030\001H\001\022a\n" + "\035partial_failure_bigquery_sink\030\014" + " \001(\01324.google.cloud.aiplatform.v1beta1.BigQueryDestinationB\002\030\001H\001\022Q\n" + "\026import_result_gcs_sink\030\016" + " \001(\0132/.google.cloud.aiplatform.v1beta1.GcsDestinationH\002\022[\n" - + "\033import_result_bigquery_sink\030\017 \001(\01324.google.clo" - + "ud.aiplatform.v1beta1.BigQueryDestinationH\002\022\\\n" - + "\030rag_file_chunking_config\030\004 \001(\01326." - + "google.cloud.aiplatform.v1beta1.RagFileChunkingConfigB\002\030\001\022d\n" - + "\036rag_file_transformation_config\030\020 \001(\0132<.google.cloud.aiplatf" - + "orm.v1beta1.RagFileTransformationConfig\022[\n" - + "\027rag_file_parsing_config\030\010 \001(\01325.googl" - + "e.cloud.aiplatform.v1beta1.RagFileParsingConfigB\003\340A\001\022X\n" + + "\033import_result_bigquery_sink\030\017 \001(\01324.google." + + "cloud.aiplatform.v1beta1.BigQueryDestinationH\002\022\\\n" + + "\030rag_file_chunking_config\030\004 \001(\013" + + "26.google.cloud.aiplatform.v1beta1.RagFileChunkingConfigB\002\030\001\022d\n" + + "\036rag_file_transformation_config\030\020 \001(\0132<.google.cloud.aipl" + + "atform.v1beta1.RagFileTransformationConfig\022[\n" + + "\027rag_file_parsing_config\030\010 \001(\01325.go" + + "ogle.cloud.aiplatform.v1beta1.RagFileParsingConfigB\003\340A\001\022X\n" + "\030rag_file_metadata_config\030\021" + " \001(\01326.google.cloud.aiplatform.v1beta1.RagFileMetadataConfig\022+\n" + "\036max_embedding_requests_per_min\030\005 \001(\005B\003\340A\001\0222\n" @@ -446,14 +455,14 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024partial_failure_sinkB\024\n" + "\022import_result_sink\"\242\003\n" + "\022RagManagedDbConfig\022X\n\n" - + "enterprise\030\001 \001(\0132>.google.cloud.aiplatform.v" - + "1beta1.RagManagedDbConfig.EnterpriseB\002\030\001H\000\022L\n" - + "\006scaled\030\004 \001(\0132:.google.cloud.aiplat" - + "form.v1beta1.RagManagedDbConfig.ScaledH\000\022J\n" - + "\005basic\030\002" - + " \001(\01329.google.cloud.aiplatform.v1beta1.RagManagedDbConfig.BasicH\000\022Z\n\r" - + "unprovisioned\030\003 \001(\0132A.google.cloud.aipla" - + "tform.v1beta1.RagManagedDbConfig.UnprovisionedH\000\032\020\n\n" + + "enterprise\030\001 \001(\0132>.google.cloud.aiplatfor" + + "m.v1beta1.RagManagedDbConfig.EnterpriseB\002\030\001H\000\022L\n" + + "\006scaled\030\004 \001(\0132:.google.cloud.aip" + + "latform.v1beta1.RagManagedDbConfig.ScaledH\000\022J\n" + + "\005basic\030\002 \001(\01329.google.cloud.aiplat" + + "form.v1beta1.RagManagedDbConfig.BasicH\000\022Z\n\r" + + "unprovisioned\030\003 \001(\0132A.google.cloud.ai" + + "platform.v1beta1.RagManagedDbConfig.UnprovisionedH\000\032\020\n\n" + "Enterprise:\002\030\001\032\010\n" + "\006Scaled\032\007\n" + "\005Basic\032\017\n\r" @@ -461,15 +470,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004tier\"\206\002\n" + "\017RagEngineConfig\022\021\n" + "\004name\030\001 \001(\tB\003\340A\010\022R\n" - + "\025rag_managed_db_config\030\002 \001(\01323.google.cloud.aipl" - + "atform.v1beta1.RagManagedDbConfig:\213\001\352A\207\001\n" - + ")aiplatform.googleapis.com/RagEngineConfig\0227projects/{project}/locations/{locat" - + "ion}/ragEngineConfig*\020ragEngineConfigs2\017ragEngineConfigB\351\001\n" - + "#com.google.cloud.aiplatform.v1beta1B\022VertexRagDataProtoP\001ZCc" - + "loud.google.com/go/aiplatform/apiv1beta1" - + "/aiplatformpb;aiplatformpb\252\002\037Google.Clou" - + "d.AIPlatform.V1Beta1\312\002\037Google\\Cloud\\AIPl" - + "atform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" + + "\025rag_managed_db_config\030\002 \001(\01323.google.cloud.a" + + "iplatform.v1beta1.RagManagedDbConfig:\213\001\352A\207\001\n" + + ")aiplatform.googleapis.com/RagEngineConfig\0227projects/{project}/locations/{lo" + + "cation}/ragEngineConfig*\020ragEngineConfigs2\017ragEngineConfigB\351\001\n" + + "#com.google.cloud.aiplatform.v1beta1B\022VertexRagDataProtoP\001" + + "ZCcloud.google.com/go/aiplatform/apiv1be" + + "ta1/aiplatformpb;aiplatformpb\252\002\037Google.C" + + "loud.AIPlatform.V1Beta1\312\002\037Google\\Cloud\\A" + + "IPlatform\\V1beta1\352\002\"Google::Cloud::AIPlatform::V1beta1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -541,6 +550,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Pinecone", "VertexFeatureStore", "VertexVectorSearch", + "RagManagedVertexVectorSearch", "ApiAuth", "RagEmbeddingModelConfig", "VectorDb", @@ -613,6 +623,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new java.lang.String[] { "IndexEndpoint", "Index", }); + internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_descriptor = + internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_descriptor + .getNestedTypes() + .get(5); + internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_cloud_aiplatform_v1beta1_RagVectorDbConfig_RagManagedVertexVectorSearch_descriptor, + new java.lang.String[] { + "CollectionName", + }); internal_static_google_cloud_aiplatform_v1beta1_FileStatus_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_google_cloud_aiplatform_v1beta1_FileStatus_fieldAccessorTable = @@ -656,6 +676,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "RagFilesCount", "EncryptionSpec", "CorpusTypeConfig", + "SatisfiesPzs", + "SatisfiesPzi", "BackendConfig", }); internal_static_google_cloud_aiplatform_v1beta1_RagCorpus_CorpusTypeConfig_descriptor = diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceProto.java index aa49e8a8eedd..b3437ab2f96d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagDataServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceProto.java index d0f2532bbdf0..a5e6009ddca3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStore.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStore.java index 186da3603bfa..0988a84e17ed 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStore.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1141,7 +1141,7 @@ public com.google.protobuf.Parser getParserForType() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return A list containing the ragCorpora. */ @java.lang.Deprecated @@ -1161,7 +1161,7 @@ public com.google.protobuf.ProtocolStringList getRagCorporaList() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return The count of ragCorpora. */ @java.lang.Deprecated @@ -1181,7 +1181,7 @@ public int getRagCorporaCount() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index of the element to return. * @return The ragCorpora at the given index. */ @@ -1202,7 +1202,7 @@ public java.lang.String getRagCorpora(int index) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index of the value to return. * @return The bytes of the ragCorpora at the given index. */ @@ -1331,7 +1331,7 @@ public com.google.cloud.aiplatform.v1beta1.VertexRagStore.RagResource getRagReso * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return Whether the similarityTopK field is set. */ @java.lang.Override @@ -1352,7 +1352,7 @@ public boolean hasSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return The similarityTopK. */ @java.lang.Override @@ -1377,7 +1377,7 @@ public int getSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return Whether the vectorDistanceThreshold field is set. */ @java.lang.Override @@ -1399,7 +1399,7 @@ public boolean hasVectorDistanceThreshold() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return The vectorDistanceThreshold. */ @java.lang.Override @@ -2075,7 +2075,7 @@ private void ensureRagCorporaIsMutable() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return A list containing the ragCorpora. */ @java.lang.Deprecated @@ -2096,7 +2096,7 @@ public com.google.protobuf.ProtocolStringList getRagCorporaList() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return The count of ragCorpora. */ @java.lang.Deprecated @@ -2116,7 +2116,7 @@ public int getRagCorporaCount() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index of the element to return. * @return The ragCorpora at the given index. */ @@ -2137,7 +2137,7 @@ public java.lang.String getRagCorpora(int index) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index of the value to return. * @return The bytes of the ragCorpora at the given index. */ @@ -2158,7 +2158,7 @@ public com.google.protobuf.ByteString getRagCorporaBytes(int index) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index to set the value at. * @param value The ragCorpora to set. * @return This builder for chaining. @@ -2187,7 +2187,7 @@ public Builder setRagCorpora(int index, java.lang.String value) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param value The ragCorpora to add. * @return This builder for chaining. */ @@ -2215,7 +2215,7 @@ public Builder addRagCorpora(java.lang.String value) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param values The ragCorpora to add. * @return This builder for chaining. */ @@ -2240,7 +2240,7 @@ public Builder addAllRagCorpora(java.lang.Iterable values) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2264,7 +2264,7 @@ public Builder clearRagCorpora() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param value The bytes of the ragCorpora to add. * @return This builder for chaining. */ @@ -2770,7 +2770,7 @@ public Builder removeRagResources(int index) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. - * See google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * See google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return Whether the similarityTopK field is set. */ @java.lang.Override @@ -2791,7 +2791,7 @@ public boolean hasSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. - * See google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * See google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return The similarityTopK. */ @java.lang.Override @@ -2812,7 +2812,7 @@ public int getSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. - * See google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * See google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @param value The similarityTopK to set. * @return This builder for chaining. */ @@ -2837,7 +2837,7 @@ public Builder setSimilarityTopK(int value) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. - * See google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * See google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2863,7 +2863,7 @@ public Builder clearSimilarityTopK() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return Whether the vectorDistanceThreshold field is set. */ @java.lang.Override @@ -2885,7 +2885,7 @@ public boolean hasVectorDistanceThreshold() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return The vectorDistanceThreshold. */ @java.lang.Override @@ -2907,7 +2907,7 @@ public double getVectorDistanceThreshold() { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @param value The vectorDistanceThreshold to set. * @return This builder for chaining. */ @@ -2933,7 +2933,7 @@ public Builder setVectorDistanceThreshold(double value) { * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStoreOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStoreOrBuilder.java index 29a2dc96bd03..9bf59d633b02 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStoreOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VertexRagStoreOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,7 +36,7 @@ public interface VertexRagStoreOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return A list containing the ragCorpora. */ @java.lang.Deprecated @@ -54,7 +54,7 @@ public interface VertexRagStoreOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @return The count of ragCorpora. */ @java.lang.Deprecated @@ -72,7 +72,7 @@ public interface VertexRagStoreOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index of the element to return. * @return The ragCorpora at the given index. */ @@ -91,7 +91,7 @@ public interface VertexRagStoreOrBuilder * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.rag_corpora is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=457 + * google/cloud/aiplatform/v1beta1/tool.proto;l=497 * @param index The index of the value to return. * @return The bytes of the ragCorpora at the given index. */ @@ -193,7 +193,7 @@ com.google.cloud.aiplatform.v1beta1.VertexRagStore.RagResourceOrBuilder getRagRe * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return Whether the similarityTopK field is set. */ @java.lang.Deprecated @@ -211,7 +211,7 @@ com.google.cloud.aiplatform.v1beta1.VertexRagStore.RagResourceOrBuilder getRagRe * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.similarity_top_k is deprecated. See - * google/cloud/aiplatform/v1beta1/tool.proto;l=473 + * google/cloud/aiplatform/v1beta1/tool.proto;l=513 * @return The similarityTopK. */ @java.lang.Deprecated @@ -230,7 +230,7 @@ com.google.cloud.aiplatform.v1beta1.VertexRagStore.RagResourceOrBuilder getRagRe * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return Whether the vectorDistanceThreshold field is set. */ @java.lang.Deprecated @@ -249,7 +249,7 @@ com.google.cloud.aiplatform.v1beta1.VertexRagStore.RagResourceOrBuilder getRagRe * * * @deprecated google.cloud.aiplatform.v1beta1.VertexRagStore.vector_distance_threshold is - * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=478 + * deprecated. See google/cloud/aiplatform/v1beta1/tool.proto;l=518 * @return The vectorDistanceThreshold. */ @java.lang.Deprecated diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadata.java index 6d02ac372f60..caa154b85978 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadataOrBuilder.java index 83bfb56870fc..14f5077f100e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VideoMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceProto.java index 4d93840725ee..9a071bc9e08a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VizierServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfig.java index fbdfd60b1774..a3416ad0e05d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * * *
- * The configuration for the voice to use.
+ * Configuration for a voice.
  * 
* * Protobuf type {@code google.cloud.aiplatform.v1beta1.VoiceConfig} @@ -72,6 +72,7 @@ public enum VoiceConfigCase com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { PREBUILT_VOICE_CONFIG(1), + REPLICATED_VOICE_CONFIG(3), VOICECONFIG_NOT_SET(0); private final int value; @@ -93,6 +94,8 @@ public static VoiceConfigCase forNumber(int value) { switch (value) { case 1: return PREBUILT_VOICE_CONFIG; + case 3: + return REPLICATED_VOICE_CONFIG; case 0: return VOICECONFIG_NOT_SET; default: @@ -115,7 +118,7 @@ public VoiceConfigCase getVoiceConfigCase() { * * *
-   * The configuration for the prebuilt voice to use.
+   * The configuration for a prebuilt voice.
    * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -131,7 +134,7 @@ public boolean hasPrebuiltVoiceConfig() { * * *
-   * The configuration for the prebuilt voice to use.
+   * The configuration for a prebuilt voice.
    * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -150,7 +153,7 @@ public com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig getPrebuiltVoiceC * * *
-   * The configuration for the prebuilt voice to use.
+   * The configuration for a prebuilt voice.
    * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -164,6 +167,70 @@ public com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig getPrebuiltVoiceC return com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig.getDefaultInstance(); } + public static final int REPLICATED_VOICE_CONFIG_FIELD_NUMBER = 3; + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the replicatedVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasReplicatedVoiceConfig() { + return voiceConfigCase_ == 3; + } + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The replicatedVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig getReplicatedVoiceConfig() { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder + getReplicatedVoiceConfigOrBuilder() { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -182,6 +249,10 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io output.writeMessage( 1, (com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig) voiceConfig_); } + if (voiceConfigCase_ == 3) { + output.writeMessage( + 3, (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_); + } getUnknownFields().writeTo(output); } @@ -196,6 +267,11 @@ public int getSerializedSize() { com.google.protobuf.CodedOutputStream.computeMessageSize( 1, (com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig) voiceConfig_); } + if (voiceConfigCase_ == 3) { + size += + com.google.protobuf.CodedOutputStream.computeMessageSize( + 3, (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -217,6 +293,9 @@ public boolean equals(final java.lang.Object obj) { case 1: if (!getPrebuiltVoiceConfig().equals(other.getPrebuiltVoiceConfig())) return false; break; + case 3: + if (!getReplicatedVoiceConfig().equals(other.getReplicatedVoiceConfig())) return false; + break; case 0: default: } @@ -236,6 +315,10 @@ public int hashCode() { hash = (37 * hash) + PREBUILT_VOICE_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getPrebuiltVoiceConfig().hashCode(); break; + case 3: + hash = (37 * hash) + REPLICATED_VOICE_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getReplicatedVoiceConfig().hashCode(); + break; case 0: default: } @@ -344,7 +427,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build * * *
-   * The configuration for the voice to use.
+   * Configuration for a voice.
    * 
* * Protobuf type {@code google.cloud.aiplatform.v1beta1.VoiceConfig} @@ -382,6 +465,9 @@ public Builder clear() { if (prebuiltVoiceConfigBuilder_ != null) { prebuiltVoiceConfigBuilder_.clear(); } + if (replicatedVoiceConfigBuilder_ != null) { + replicatedVoiceConfigBuilder_.clear(); + } voiceConfigCase_ = 0; voiceConfig_ = null; return this; @@ -429,6 +515,9 @@ private void buildPartialOneofs(com.google.cloud.aiplatform.v1beta1.VoiceConfig if (voiceConfigCase_ == 1 && prebuiltVoiceConfigBuilder_ != null) { result.voiceConfig_ = prebuiltVoiceConfigBuilder_.build(); } + if (voiceConfigCase_ == 3 && replicatedVoiceConfigBuilder_ != null) { + result.voiceConfig_ = replicatedVoiceConfigBuilder_.build(); + } } @java.lang.Override @@ -483,6 +572,11 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.VoiceConfig other) mergePrebuiltVoiceConfig(other.getPrebuiltVoiceConfig()); break; } + case REPLICATED_VOICE_CONFIG: + { + mergeReplicatedVoiceConfig(other.getReplicatedVoiceConfig()); + break; + } case VOICECONFIG_NOT_SET: { break; @@ -521,6 +615,13 @@ public Builder mergeFrom( voiceConfigCase_ = 1; break; } // case 10 + case 26: + { + input.readMessage( + getReplicatedVoiceConfigFieldBuilder().getBuilder(), extensionRegistry); + voiceConfigCase_ = 3; + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -564,7 +665,7 @@ public Builder clearVoiceConfig() { * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -580,7 +681,7 @@ public boolean hasPrebuiltVoiceConfig() { * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -606,7 +707,7 @@ public com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig getPrebuiltVoiceC * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -630,7 +731,7 @@ public Builder setPrebuiltVoiceConfig( * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -651,7 +752,7 @@ public Builder setPrebuiltVoiceConfig( * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -686,7 +787,7 @@ public Builder mergePrebuiltVoiceConfig( * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -712,7 +813,7 @@ public Builder clearPrebuiltVoiceConfig() { * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -726,7 +827,7 @@ public Builder clearPrebuiltVoiceConfig() { * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -748,7 +849,7 @@ public Builder clearPrebuiltVoiceConfig() { * * *
-     * The configuration for the prebuilt voice to use.
+     * The configuration for a prebuilt voice.
      * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -778,6 +879,257 @@ public Builder clearPrebuiltVoiceConfig() { return prebuiltVoiceConfigBuilder_; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder> + replicatedVoiceConfigBuilder_; + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the replicatedVoiceConfig field is set. + */ + @java.lang.Override + public boolean hasReplicatedVoiceConfig() { + return voiceConfigCase_ == 3; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The replicatedVoiceConfig. + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig getReplicatedVoiceConfig() { + if (replicatedVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } else { + if (voiceConfigCase_ == 3) { + return replicatedVoiceConfigBuilder_.getMessage(); + } + return com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setReplicatedVoiceConfig( + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig value) { + if (replicatedVoiceConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + voiceConfig_ = value; + onChanged(); + } else { + replicatedVoiceConfigBuilder_.setMessage(value); + } + voiceConfigCase_ = 3; + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setReplicatedVoiceConfig( + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder builderForValue) { + if (replicatedVoiceConfigBuilder_ == null) { + voiceConfig_ = builderForValue.build(); + onChanged(); + } else { + replicatedVoiceConfigBuilder_.setMessage(builderForValue.build()); + } + voiceConfigCase_ = 3; + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder mergeReplicatedVoiceConfig( + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig value) { + if (replicatedVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 3 + && voiceConfig_ + != com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance()) { + voiceConfig_ = + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.newBuilder( + (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_) + .mergeFrom(value) + .buildPartial(); + } else { + voiceConfig_ = value; + } + onChanged(); + } else { + if (voiceConfigCase_ == 3) { + replicatedVoiceConfigBuilder_.mergeFrom(value); + } else { + replicatedVoiceConfigBuilder_.setMessage(value); + } + } + voiceConfigCase_ = 3; + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearReplicatedVoiceConfig() { + if (replicatedVoiceConfigBuilder_ == null) { + if (voiceConfigCase_ == 3) { + voiceConfigCase_ = 0; + voiceConfig_ = null; + onChanged(); + } + } else { + if (voiceConfigCase_ == 3) { + voiceConfigCase_ = 0; + voiceConfig_ = null; + } + replicatedVoiceConfigBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder + getReplicatedVoiceConfigBuilder() { + return getReplicatedVoiceConfigFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder + getReplicatedVoiceConfigOrBuilder() { + if ((voiceConfigCase_ == 3) && (replicatedVoiceConfigBuilder_ != null)) { + return replicatedVoiceConfigBuilder_.getMessageOrBuilder(); + } else { + if (voiceConfigCase_ == 3) { + return (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_; + } + return com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } + } + + /** + * + * + *
+     * Optional. The configuration for a replicated voice. This enables users to
+     * replicate a voice from an audio sample.
+     * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder> + getReplicatedVoiceConfigFieldBuilder() { + if (replicatedVoiceConfigBuilder_ == null) { + if (!(voiceConfigCase_ == 3)) { + voiceConfig_ = + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.getDefaultInstance(); + } + replicatedVoiceConfigBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig.Builder, + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder>( + (com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig) voiceConfig_, + getParentForChildren(), + isClean()); + voiceConfig_ = null; + } + voiceConfigCase_ = 3; + onChanged(); + return replicatedVoiceConfigBuilder_; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfigOrBuilder.java index bccab5f42282..fa3905987f5e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/VoiceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ public interface VoiceConfigOrBuilder * * *
-   * The configuration for the prebuilt voice to use.
+   * The configuration for a prebuilt voice.
    * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -41,7 +41,7 @@ public interface VoiceConfigOrBuilder * * *
-   * The configuration for the prebuilt voice to use.
+   * The configuration for a prebuilt voice.
    * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -54,7 +54,7 @@ public interface VoiceConfigOrBuilder * * *
-   * The configuration for the prebuilt voice to use.
+   * The configuration for a prebuilt voice.
    * 
* * .google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfig prebuilt_voice_config = 1; @@ -62,5 +62,52 @@ public interface VoiceConfigOrBuilder com.google.cloud.aiplatform.v1beta1.PrebuiltVoiceConfigOrBuilder getPrebuiltVoiceConfigOrBuilder(); + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return Whether the replicatedVoiceConfig field is set. + */ + boolean hasReplicatedVoiceConfig(); + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * + * @return The replicatedVoiceConfig. + */ + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig getReplicatedVoiceConfig(); + + /** + * + * + *
+   * Optional. The configuration for a replicated voice. This enables users to
+   * replicate a voice from an audio sample.
+   * 
+ * + * + * .google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfig replicated_voice_config = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1beta1.ReplicatedVoiceConfigOrBuilder + getReplicatedVoiceConfigOrBuilder(); + com.google.cloud.aiplatform.v1beta1.VoiceConfig.VoiceConfigCase getVoiceConfigCase(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpec.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpec.java index 832cb69aa7ea..10a5198624e9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpec.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,6 +41,7 @@ private WorkerPoolSpec(com.google.protobuf.GeneratedMessageV3.Builder builder private WorkerPoolSpec() { nfsMounts_ = java.util.Collections.emptyList(); + lustreMounts_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -388,6 +389,93 @@ public com.google.cloud.aiplatform.v1beta1.NfsMountOrBuilder getNfsMountsOrBuild return nfsMounts_.get(index); } + public static final int LUSTRE_MOUNTS_FIELD_NUMBER = 9; + + @SuppressWarnings("serial") + private java.util.List lustreMounts_; + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List getLustreMountsList() { + return lustreMounts_; + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getLustreMountsOrBuilderList() { + return lustreMounts_; + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public int getLustreMountsCount() { + return lustreMounts_.size(); + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.LustreMount getLustreMounts(int index) { + return lustreMounts_.get(index); + } + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder getLustreMountsOrBuilder( + int index) { + return lustreMounts_.get(index); + } + public static final int DISK_SPEC_FIELD_NUMBER = 5; private com.google.cloud.aiplatform.v1beta1.DiskSpec diskSpec_; @@ -473,6 +561,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (taskCase_ == 7) { output.writeMessage(7, (com.google.cloud.aiplatform.v1beta1.PythonPackageSpec) task_); } + for (int i = 0; i < lustreMounts_.size(); i++) { + output.writeMessage(9, lustreMounts_.get(i)); + } getUnknownFields().writeTo(output); } @@ -504,6 +595,9 @@ public int getSerializedSize() { com.google.protobuf.CodedOutputStream.computeMessageSize( 7, (com.google.cloud.aiplatform.v1beta1.PythonPackageSpec) task_); } + for (int i = 0; i < lustreMounts_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(9, lustreMounts_.get(i)); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -526,6 +620,7 @@ public boolean equals(final java.lang.Object obj) { } if (getReplicaCount() != other.getReplicaCount()) return false; if (!getNfsMountsList().equals(other.getNfsMountsList())) return false; + if (!getLustreMountsList().equals(other.getLustreMountsList())) return false; if (hasDiskSpec() != other.hasDiskSpec()) return false; if (hasDiskSpec()) { if (!getDiskSpec().equals(other.getDiskSpec())) return false; @@ -562,6 +657,10 @@ public int hashCode() { hash = (37 * hash) + NFS_MOUNTS_FIELD_NUMBER; hash = (53 * hash) + getNfsMountsList().hashCode(); } + if (getLustreMountsCount() > 0) { + hash = (37 * hash) + LUSTRE_MOUNTS_FIELD_NUMBER; + hash = (53 * hash) + getLustreMountsList().hashCode(); + } if (hasDiskSpec()) { hash = (37 * hash) + DISK_SPEC_FIELD_NUMBER; hash = (53 * hash) + getDiskSpec().hashCode(); @@ -721,6 +820,7 @@ private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getMachineSpecFieldBuilder(); getNfsMountsFieldBuilder(); + getLustreMountsFieldBuilder(); getDiskSpecFieldBuilder(); } } @@ -748,6 +848,13 @@ public Builder clear() { nfsMountsBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); + if (lustreMountsBuilder_ == null) { + lustreMounts_ = java.util.Collections.emptyList(); + } else { + lustreMounts_ = null; + lustreMountsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000020); diskSpec_ = null; if (diskSpecBuilder_ != null) { diskSpecBuilder_.dispose(); @@ -802,6 +909,15 @@ private void buildPartialRepeatedFields( } else { result.nfsMounts_ = nfsMountsBuilder_.build(); } + if (lustreMountsBuilder_ == null) { + if (((bitField0_ & 0x00000020) != 0)) { + lustreMounts_ = java.util.Collections.unmodifiableList(lustreMounts_); + bitField0_ = (bitField0_ & ~0x00000020); + } + result.lustreMounts_ = lustreMounts_; + } else { + result.lustreMounts_ = lustreMountsBuilder_.build(); + } } private void buildPartial0(com.google.cloud.aiplatform.v1beta1.WorkerPoolSpec result) { @@ -815,7 +931,7 @@ private void buildPartial0(com.google.cloud.aiplatform.v1beta1.WorkerPoolSpec re if (((from_bitField0_ & 0x00000008) != 0)) { result.replicaCount_ = replicaCount_; } - if (((from_bitField0_ & 0x00000020) != 0)) { + if (((from_bitField0_ & 0x00000040) != 0)) { result.diskSpec_ = diskSpecBuilder_ == null ? diskSpec_ : diskSpecBuilder_.build(); to_bitField0_ |= 0x00000002; } @@ -912,6 +1028,33 @@ public Builder mergeFrom(com.google.cloud.aiplatform.v1beta1.WorkerPoolSpec othe } } } + if (lustreMountsBuilder_ == null) { + if (!other.lustreMounts_.isEmpty()) { + if (lustreMounts_.isEmpty()) { + lustreMounts_ = other.lustreMounts_; + bitField0_ = (bitField0_ & ~0x00000020); + } else { + ensureLustreMountsIsMutable(); + lustreMounts_.addAll(other.lustreMounts_); + } + onChanged(); + } + } else { + if (!other.lustreMounts_.isEmpty()) { + if (lustreMountsBuilder_.isEmpty()) { + lustreMountsBuilder_.dispose(); + lustreMountsBuilder_ = null; + lustreMounts_ = other.lustreMounts_; + bitField0_ = (bitField0_ & ~0x00000020); + lustreMountsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getLustreMountsFieldBuilder() + : null; + } else { + lustreMountsBuilder_.addAllMessages(other.lustreMounts_); + } + } + } if (other.hasDiskSpec()) { mergeDiskSpec(other.getDiskSpec()); } @@ -985,7 +1128,7 @@ public Builder mergeFrom( case 42: { input.readMessage(getDiskSpecFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; break; } // case 42 case 50: @@ -1001,6 +1144,20 @@ public Builder mergeFrom( taskCase_ = 7; break; } // case 58 + case 74: + { + com.google.cloud.aiplatform.v1beta1.LustreMount m = + input.readMessage( + com.google.cloud.aiplatform.v1beta1.LustreMount.parser(), + extensionRegistry); + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.add(m); + } else { + lustreMountsBuilder_.addMessage(m); + } + break; + } // case 74 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -2149,6 +2306,415 @@ public com.google.cloud.aiplatform.v1beta1.NfsMount.Builder addNfsMountsBuilder( return nfsMountsBuilder_; } + private java.util.List lustreMounts_ = + java.util.Collections.emptyList(); + + private void ensureLustreMountsIsMutable() { + if (!((bitField0_ & 0x00000020) != 0)) { + lustreMounts_ = + new java.util.ArrayList(lustreMounts_); + bitField0_ |= 0x00000020; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.LustreMount, + com.google.cloud.aiplatform.v1beta1.LustreMount.Builder, + com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder> + lustreMountsBuilder_; + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List getLustreMountsList() { + if (lustreMountsBuilder_ == null) { + return java.util.Collections.unmodifiableList(lustreMounts_); + } else { + return lustreMountsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public int getLustreMountsCount() { + if (lustreMountsBuilder_ == null) { + return lustreMounts_.size(); + } else { + return lustreMountsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.LustreMount getLustreMounts(int index) { + if (lustreMountsBuilder_ == null) { + return lustreMounts_.get(index); + } else { + return lustreMountsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setLustreMounts( + int index, com.google.cloud.aiplatform.v1beta1.LustreMount value) { + if (lustreMountsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLustreMountsIsMutable(); + lustreMounts_.set(index, value); + onChanged(); + } else { + lustreMountsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setLustreMounts( + int index, com.google.cloud.aiplatform.v1beta1.LustreMount.Builder builderForValue) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.set(index, builderForValue.build()); + onChanged(); + } else { + lustreMountsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts(com.google.cloud.aiplatform.v1beta1.LustreMount value) { + if (lustreMountsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLustreMountsIsMutable(); + lustreMounts_.add(value); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts( + int index, com.google.cloud.aiplatform.v1beta1.LustreMount value) { + if (lustreMountsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureLustreMountsIsMutable(); + lustreMounts_.add(index, value); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts( + com.google.cloud.aiplatform.v1beta1.LustreMount.Builder builderForValue) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.add(builderForValue.build()); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addLustreMounts( + int index, com.google.cloud.aiplatform.v1beta1.LustreMount.Builder builderForValue) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.add(index, builderForValue.build()); + onChanged(); + } else { + lustreMountsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addAllLustreMounts( + java.lang.Iterable values) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, lustreMounts_); + onChanged(); + } else { + lustreMountsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearLustreMounts() { + if (lustreMountsBuilder_ == null) { + lustreMounts_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000020); + onChanged(); + } else { + lustreMountsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder removeLustreMounts(int index) { + if (lustreMountsBuilder_ == null) { + ensureLustreMountsIsMutable(); + lustreMounts_.remove(index); + onChanged(); + } else { + lustreMountsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.LustreMount.Builder getLustreMountsBuilder( + int index) { + return getLustreMountsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder getLustreMountsOrBuilder( + int index) { + if (lustreMountsBuilder_ == null) { + return lustreMounts_.get(index); + } else { + return lustreMountsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getLustreMountsOrBuilderList() { + if (lustreMountsBuilder_ != null) { + return lustreMountsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(lustreMounts_); + } + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.LustreMount.Builder addLustreMountsBuilder() { + return getLustreMountsFieldBuilder() + .addBuilder(com.google.cloud.aiplatform.v1beta1.LustreMount.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.cloud.aiplatform.v1beta1.LustreMount.Builder addLustreMountsBuilder( + int index) { + return getLustreMountsFieldBuilder() + .addBuilder(index, com.google.cloud.aiplatform.v1beta1.LustreMount.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. List of Lustre mounts.
+     * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getLustreMountsBuilderList() { + return getLustreMountsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.LustreMount, + com.google.cloud.aiplatform.v1beta1.LustreMount.Builder, + com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder> + getLustreMountsFieldBuilder() { + if (lustreMountsBuilder_ == null) { + lustreMountsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.cloud.aiplatform.v1beta1.LustreMount, + com.google.cloud.aiplatform.v1beta1.LustreMount.Builder, + com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder>( + lustreMounts_, ((bitField0_ & 0x00000020) != 0), getParentForChildren(), isClean()); + lustreMounts_ = null; + } + return lustreMountsBuilder_; + } + private com.google.cloud.aiplatform.v1beta1.DiskSpec diskSpec_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.aiplatform.v1beta1.DiskSpec, @@ -2168,7 +2734,7 @@ public com.google.cloud.aiplatform.v1beta1.NfsMount.Builder addNfsMountsBuilder( * @return Whether the diskSpec field is set. */ public boolean hasDiskSpec() { - return ((bitField0_ & 0x00000020) != 0); + return ((bitField0_ & 0x00000040) != 0); } /** @@ -2210,7 +2776,7 @@ public Builder setDiskSpec(com.google.cloud.aiplatform.v1beta1.DiskSpec value) { } else { diskSpecBuilder_.setMessage(value); } - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -2231,7 +2797,7 @@ public Builder setDiskSpec( } else { diskSpecBuilder_.setMessage(builderForValue.build()); } - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return this; } @@ -2247,7 +2813,7 @@ public Builder setDiskSpec( */ public Builder mergeDiskSpec(com.google.cloud.aiplatform.v1beta1.DiskSpec value) { if (diskSpecBuilder_ == null) { - if (((bitField0_ & 0x00000020) != 0) + if (((bitField0_ & 0x00000040) != 0) && diskSpec_ != null && diskSpec_ != com.google.cloud.aiplatform.v1beta1.DiskSpec.getDefaultInstance()) { getDiskSpecBuilder().mergeFrom(value); @@ -2258,7 +2824,7 @@ public Builder mergeDiskSpec(com.google.cloud.aiplatform.v1beta1.DiskSpec value) diskSpecBuilder_.mergeFrom(value); } if (diskSpec_ != null) { - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); } return this; @@ -2274,7 +2840,7 @@ public Builder mergeDiskSpec(com.google.cloud.aiplatform.v1beta1.DiskSpec value) * .google.cloud.aiplatform.v1beta1.DiskSpec disk_spec = 5; */ public Builder clearDiskSpec() { - bitField0_ = (bitField0_ & ~0x00000020); + bitField0_ = (bitField0_ & ~0x00000040); diskSpec_ = null; if (diskSpecBuilder_ != null) { diskSpecBuilder_.dispose(); @@ -2294,7 +2860,7 @@ public Builder clearDiskSpec() { * .google.cloud.aiplatform.v1beta1.DiskSpec disk_spec = 5; */ public com.google.cloud.aiplatform.v1beta1.DiskSpec.Builder getDiskSpecBuilder() { - bitField0_ |= 0x00000020; + bitField0_ |= 0x00000040; onChanged(); return getDiskSpecFieldBuilder().getBuilder(); } diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpecOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpecOrBuilder.java index ebe451a2d9d9..a735505d786b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpecOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WorkerPoolSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -220,6 +220,72 @@ public interface WorkerPoolSpecOrBuilder */ com.google.cloud.aiplatform.v1beta1.NfsMountOrBuilder getNfsMountsOrBuilder(int index); + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List getLustreMountsList(); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1beta1.LustreMount getLustreMounts(int index); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + int getLustreMountsCount(); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List + getLustreMountsOrBuilderList(); + + /** + * + * + *
+   * Optional. List of Lustre mounts.
+   * 
+ * + * + * repeated .google.cloud.aiplatform.v1beta1.LustreMount lustre_mounts = 9 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.cloud.aiplatform.v1beta1.LustreMountOrBuilder getLustreMountsOrBuilder(int index); + /** * * diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayload.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayload.java index bbd08b540545..5c1098f3b791 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayload.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayloadOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayloadOrBuilder.java index d3acdf8bc82a..20b3a85d9ccf 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayloadOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesPayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequest.java index bac60d7c4870..45f034e390b4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequestOrBuilder.java index ef89ab5960a9..38e0a98cd581 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponse.java index 060531b708b4..a15caa07cd66 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponseOrBuilder.java index 0090b8193595..4848b45f8815 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteFeatureValuesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequest.java index 00a51e55202d..0b2387d85b9b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequestOrBuilder.java index e9e2f1360195..5a6d891e6ccb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponse.java index d6f69da45973..fbab9568cc8d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponseOrBuilder.java index f8e302fe8621..21deacdf0e7a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardExperimentDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequest.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequest.java index 37b7611f25fb..c438032180a1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequest.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequestOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequestOrBuilder.java index 9db762d2e7ae..54670d1fb0be 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequestOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponse.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponse.java index 20c7d13fc2a1..a049903c0c9f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponse.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponseOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponseOrBuilder.java index ffe906436ff7..f9aa9e91c987 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponseOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/WriteTensorboardRunDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttribution.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttribution.java index 013cbef75ccf..8bc6ab094ff8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttribution.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttribution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttributionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttributionOrBuilder.java index 59cab9dcb0b0..7f3b8cd0bda3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttributionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/XraiAttributionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstance.java index fed8912a9571..df8119f3f1f5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java index d7c99116e53b..b7e9277e976c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java index 1785dd1852a3..176d252e7679 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageClassificationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java index 0b38712d03a0..aa0249186de9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java index 23cc40c9199f..e9639bcd404e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java index 4f6a065d9584..11087b35a80d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageObjectDetectionPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstance.java index cbba69ced43c..e9be0b79e424 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java index e44d777dc7a1..be096a5106f9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java index a970c5cf6374..dfdbf49818ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/ImageSegmentationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstance.java index f2b4f5bd0bbd..a4ae09e30e4e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java index 9b4c971b4a65..4349b8ff2431 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceProto.java index 63589faa5074..d34912f06c70 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextClassificationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstance.java index a2a46e08c596..2c9895ee7989 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java index 469fb352187b..6ae8a2a13f60 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceProto.java index 32c77210d94f..2540fb32e629 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextExtractionPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstance.java index 0de15da68587..8337dfe4c18e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java index 56e918ccdabb..e85f073ccce6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceProto.java index 11bae87726e5..dae034d1297c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/TextSentimentPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java index b5e1fb089aee..a85bcc8169e1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java index a31d2aaf2ee0..67aa614d11f6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java index 9636b9170b91..bd4b774d697c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoActionRecognitionPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstance.java index b24f33e9ed44..da6633d9273f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java index 0b94484f365b..32ecb8a872e5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java index db94bcb596af..af10040492d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoClassificationPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java index bc9d1f163f79..33f01b1a2ea1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java index e85c4c9e04c2..877e8df56f49 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java index a229583988bc..bcad3f4da970 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/instance/VideoObjectTrackingPredictionInstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParams.java index 4095bf80e2a0..f6cb0576d52f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java index 8ab69223a4e8..8d575c490919 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsProto.java index 8e8c4cfc4b90..b1880b67785b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageClassificationPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParams.java index 032af8f4a1f3..5cca51f2efb0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java index 981dab8e8a87..1116cccc7ad2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java index 66699cec50d4..d68ee7ef31c5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageObjectDetectionPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParams.java index d41e5620240a..42d58e69d12a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java index ac40e9e5bfc7..be2a9b0073fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsProto.java index e5ec01661fa1..9a77e2ea73cd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/ImageSegmentationPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParams.java index ff479da9ff70..677b3d77da90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java index f16f3bb7770f..c36398d81126 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java index 06279da07271..43dafc287529 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoActionRecognitionPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParams.java index eb8526928b9d..65f1ceba866e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java index 5c278bd9c557..90f5458ccfdc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsProto.java index 783d53c3c0a8..7fc82bf2800c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoClassificationPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParams.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParams.java index 4395a2882935..d6f8d18affa3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParams.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java index 1a4330446b9b..388d4186e455 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java index 64e575eb9d45..e4e2459a15fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/params/VideoObjectTrackingPredictionParamsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResult.java index 6c0410773c79..6eda4b5becfe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java index 8f001fbee0bf..5c4b4304c65f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultProto.java index 91eeb11e976e..4f4c2d6aa94d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ClassificationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java index ada4966271e0..bb67d469e7b2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java index 720f6035b2b9..95a64335d5ec 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java index 1db59e12284a..e6c1c4a62ad2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageObjectDetectionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResult.java index d4865d92832a..95c3da126c08 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java index b34100445ef8..dd3f6be9369e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java index 6f50a9b478c2..f9b2fb5ff2a9 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/ImageSegmentationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResult.java index 80a8b8a0ab22..3713f433bb0b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java index f7073126eab7..19af1c4369c1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultProto.java index 45ce9dd2239c..a342b8c40f35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularClassificationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResult.java index 97ab607f2480..702cc5131b64 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java index be43c78b5c7a..0d8f3785ef83 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultProto.java index 8949bac1c84e..edf489d8c0f2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TabularRegressionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResult.java index 660db3c6e6ac..9ca7dbdc620b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java index d5ba13c02ae6..14f01404407c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultProto.java index 11e21a551ea3..7996df2fa114 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextExtractionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResult.java index 28fb1cbbe1c1..e6417ab3983e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java index 320b5dd5fe3d..06797ace3ec3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultProto.java index 8dc80242bc5b..d719b310dc8f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TextSentimentPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResult.java index 177c4fcbea5f..badd678c4315 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultOrBuilder.java index e20acdf366fc..78aae9924b19 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultProto.java index 0f11c0d1c831..5576577a8d04 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/TimeSeriesForecastingPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java index 8f2e790bfe12..64e4085d661b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java index 5a8084f08a17..6f01aeec3ce8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java index dc7fe691949d..b05337b4747d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoActionRecognitionPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResult.java index ca6dd3995167..e052434bdb24 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java index 4ef9b2be0e1c..96e5f122b325 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultProto.java index fdb6a7457628..d7d961cbb515 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoClassificationPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java index 91005c762789..af4bb7bd8659 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java index ab176c717079..ee68ef91873d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java index 362838a15693..873a148bfc14 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/predict/prediction/VideoObjectTrackingPredictionResultProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLForecastingProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLForecastingProto.java index c3be8725e82c..4ce62bab5cc2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLForecastingProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLForecastingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageClassificationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageClassificationProto.java index e66b797f810d..ecd5c0546a3d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageClassificationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java index 93ef85f1713f..dd5324b72c1b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageObjectDetectionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java index dddc633e3e5b..b4cc37a94096 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLImageSegmentationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTablesProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTablesProto.java index d3eacebcac3f..b7542df57ff0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTablesProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTablesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextClassificationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextClassificationProto.java index e6644ef8eeee..6bb0da96ef76 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextClassificationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextExtractionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextExtractionProto.java index 81e73c4c87b3..ab80562e7336 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextExtractionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextExtractionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextSentimentProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextSentimentProto.java index 03246e0bd53f..fd7c86b402ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextSentimentProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLTextSentimentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java index 2f5eb3eb0c13..3d08381d7867 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoActionRecognitionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java index 15228fc055e8..8632c166e491 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java index b287150a8492..3e7e39157305 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMLVideoObjectTrackingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecasting.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecasting.java index ed0aa4448be2..f0d52c4ad94d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecasting.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecasting.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputs.java index 92952d6182a1..0bfd4ebc9ef2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputsOrBuilder.java index 45efdd7ae11e..0375772f9989 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadata.java index 53645a876fe3..84357472a3d3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadataOrBuilder.java index fc976f9ba204..3b45231e73c0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingOrBuilder.java index 974cf22722fa..cd7c8ff2e06d 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlForecastingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassification.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassification.java index 781085c917ef..cc09b1e38834 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassification.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java index b7763b4d8f71..b5e10aaf7db7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java index 9bbfaac970be..c3208c27d4c3 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java index 38a034046c91..11bec89ff12a 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java index 9c0d88a12ab1..8d4e676aeb25 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java index 40d6b911e447..7e4a06b29111 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageClassificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetection.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetection.java index 079a24402867..782a39cc3a35 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetection.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java index cc302d78ea92..bc8fa814eb51 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java index 9e8acfe43162..af4dcd13e8fd 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java index 34db86a82e21..4a47acdaa803 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java index f9023e16e029..43ade6050dcc 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java index a278951b0a2d..937d9864cec0 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageObjectDetectionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentation.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentation.java index 8942c5b3fc04..75152b11bd79 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentation.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java index 15cf5cd2b363..d93f94f33621 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java index 6d10b320c71d..4e9f6c4aa8d5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java index 7b0796fc0617..0b5ea7a8cd03 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java index d15ecba03606..01e42c3a14c4 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java index e057373e676a..46fd91bcd6fb 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlImageSegmentationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTables.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTables.java index fc8560143e43..67cdd11fe38e 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTables.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTables.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputs.java index af166fc4f7e8..ccba3e438c78 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java index a393e602b8a5..f3bcbb2af1de 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadata.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadata.java index 00910f886873..845d3b614793 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadata.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java index c7c73e276710..8301e02eb690 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java index da6b457bc4fe..34c9d8dbdc88 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTablesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassification.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassification.java index 57e49f55be22..1147f7e16033 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassification.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java index e268d2cd0ea3..8d850eefab13 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java index eba9b0f92640..abc0f1ba7198 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java index ae5981e14203..1ff3fe09892f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextClassificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtraction.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtraction.java index daa9d6b1934e..2b68daf89a18 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtraction.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtraction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java index 02116ffe56f8..ff8a080be5ce 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java index c8d8a7d3e1ef..a9f4052e7745 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java index 607150c81677..88124d271256 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextExtractionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentiment.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentiment.java index 786c010a9c75..a43cb56914b1 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentiment.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java index ca59b303fe62..b03ba7d4bf69 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java index f3fca0d20f40..6de528493c81 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java index 2e22e8348d41..af523cd4b99b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlTextSentimentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java index 79397fd3b2c7..7ce2c43b1494 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java index ccdedddb101d..5197bdc526af 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java index 146edf7ea1b1..5be1b1f9ad27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java index 0cf2ab2cff72..7c5c5f56cee7 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoActionRecognitionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassification.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassification.java index 56f0604efd67..19d22b495eba 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassification.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java index 22bcd2320868..096a4dc4cbbe 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java index 7b4e6f251104..c55e5bff5f30 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java index ccf1e54f7c68..6a798e424345 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoClassificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java index 31010b03ca09..209262f889c6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTracking.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java index 7e43df01dfed..0ebd7c377eff 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java index 7cb7c475ede4..78e3d3baac0f 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingInputsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java index b5779797b48f..937b444bc716 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/AutoMlVideoObjectTrackingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java index 66cde095c891..f31620ddeb46 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java index 95d7db0e48bd..8f0cdc9ead27 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java index 79312104ae60..74655515d1e6 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/ExportEvaluatedDataItemsConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/content.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/content.proto index afca4d1ad7d8..a7cfac932f90 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/content.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/content.proto @@ -190,19 +190,62 @@ message PrebuiltVoiceConfig { optional string voice_name = 1; } -// The configuration for the voice to use. +// The configuration for the replicated voice to use. +message ReplicatedVoiceConfig { + // Optional. The mimetype of the voice sample. The only currently supported + // value is `audio/wav`. This represents 16-bit signed little-endian wav data, + // with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not + // set. + string mime_type = 1 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The sample of the custom voice. + bytes voice_sample_audio = 2 [(google.api.field_behavior) = OPTIONAL]; +} + +// Configuration for a voice. message VoiceConfig { // The configuration for the speaker to use. oneof voice_config { - // The configuration for the prebuilt voice to use. + // The configuration for a prebuilt voice. PrebuiltVoiceConfig prebuilt_voice_config = 1; + + // Optional. The configuration for a replicated voice. This enables users to + // replicate a voice from an audio sample. + ReplicatedVoiceConfig replicated_voice_config = 3 + [(google.api.field_behavior) = OPTIONAL]; } } -// The speech generation config. +// Configuration for a single speaker in a multi-speaker setup. +message SpeakerVoiceConfig { + // Required. The name of the speaker. This should be the same as the speaker + // name used in the prompt. + string speaker = 1 [(google.api.field_behavior) = REQUIRED]; + + // Required. The configuration for the voice of this speaker. + VoiceConfig voice_config = 2 [(google.api.field_behavior) = REQUIRED]; +} + +// Configuration for a multi-speaker text-to-speech request. +message MultiSpeakerVoiceConfig { + // Required. A list of configurations for the voices of the speakers. Exactly + // two speaker voice configurations must be provided. + repeated SpeakerVoiceConfig speaker_voice_configs = 2 + [(google.api.field_behavior) = REQUIRED]; +} + + +// Configuration for speech generation. message SpeechConfig { - // The configuration for the speaker to use. + // The configuration for the voice to use. VoiceConfig voice_config = 1; + + // Optional. The language code (ISO 639-1) for the speech synthesis. + string language_code = 2 [(google.api.field_behavior) = OPTIONAL]; + + // The configuration for a multi-speaker text-to-speech request. + // This field is mutually exclusive with `voice_config`. + MultiSpeakerVoiceConfig multi_speaker_voice_config = 3; } // Config for image generation features. diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/custom_job.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/custom_job.proto index 04798e4b9503..d52dc962bbc8 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/custom_job.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/custom_job.proto @@ -312,6 +312,10 @@ message WorkerPoolSpec { // Optional. List of NFS mount spec. repeated NfsMount nfs_mounts = 4 [(google.api.field_behavior) = OPTIONAL]; + // Optional. List of Lustre mounts. + repeated LustreMount lustre_mounts = 9 + [(google.api.field_behavior) = OPTIONAL]; + // Disk spec. DiskSpec disk_spec = 5; } @@ -387,10 +391,10 @@ message Scheduling { FLEX_START = 6; } - // The maximum job running time. The default is 7 days. + // Optional. The maximum job running time. The default is 7 days. google.protobuf.Duration timeout = 1; - // Restarts the entire CustomJob if a worker gets restarted. + // Optional. Restarts the entire CustomJob if a worker gets restarted. // This feature can be used by distributed training jobs that are not // resilient to workers leaving and joining a job. bool restart_job_on_worker_restart = 3; diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/endpoint.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/endpoint.proto index 4ed88fd31d98..42fbeae165ea 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/endpoint.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/endpoint.proto @@ -225,6 +225,10 @@ message DeployedModel { string shared_resources = 17 [(google.api.resource_reference) = { type: "aiplatform.googleapis.com/DeploymentResourcePool" }]; + + // Optional. Resources for a full fine tuned model. + FullFineTunedResources full_fine_tuned_resources = 36 + [(google.api.field_behavior) = OPTIONAL]; } // Immutable. The ID of the DeployedModel. If not provided upon deployment, diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/feature_online_store.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/feature_online_store.proto index 3b37af423ccd..b422d8ba914b 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/feature_online_store.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/feature_online_store.proto @@ -81,6 +81,11 @@ message FeatureOnlineStore { // Metadata of the Bigtable instance. Output only. BigtableMetadata bigtable_metadata = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Optional. The zone where the underlying Bigtable cluster for the primary + // Bigtable instance will be provisioned. Only the zone must be provided. + // For example, only "us-central1-a" should be provided. + string zone = 5 [(google.api.field_behavior) = OPTIONAL]; } // Optimized storage type diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/machine_resources.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/machine_resources.proto index 3b3774b6daf6..3e8466499fb5 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/machine_resources.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/machine_resources.proto @@ -91,6 +91,14 @@ message MachineSpec { (google.api.field_behavior) = IMMUTABLE, (google.api.field_behavior) = OPTIONAL ]; + + // Optional. Immutable. The minimum GPU driver version that this machine + // requires. For example, "535.104.06". If not specified, the default GPU + // driver version will be used by the underlying infrastructure. + string min_gpu_driver_version = 9 [ + (google.api.field_behavior) = OPTIONAL, + (google.api.field_behavior) = IMMUTABLE + ]; } // A description of resources that are dedicated to a DeployedModel or @@ -262,6 +270,42 @@ message BatchDedicatedResources { bool spot = 5 [(google.api.field_behavior) = OPTIONAL]; } +// Resources for an fft model. +message FullFineTunedResources { + // The type of deployment. + enum DeploymentType { + // Unspecified deployment type. + DEPLOYMENT_TYPE_UNSPECIFIED = 0; + + // Eval deployment type. + DEPLOYMENT_TYPE_EVAL = 1; + + // Prod deployment type. + DEPLOYMENT_TYPE_PROD = 2; + } + + // Required. The kind of deployment. + DeploymentType deployment_type = 1 [(google.api.field_behavior) = REQUIRED]; + + // Optional. The number of model inference units to use for this deployment. + // This can only be specified for DEPLOYMENT_TYPE_PROD. + // The following table lists the number of model inference units for different + // model types: + // * Gemini 2.5 Flash + // * Foundation FMIU: 25 + // * Expansion FMIU: 4 + // * Gemini 2.5 Pro + // * Foundation FMIU: 32 + // * Expansion FMIU: 16 + // * Veo 3.0 (undistilled) + // * Foundation FMIU: 63 + // * Expansion FMIU: 7 + // * Veo 3.0 (distilled) + // * Foundation FMIU: 30 + // * Expansion FMIU: 10 + int32 model_inference_unit_count = 2 [(google.api.field_behavior) = OPTIONAL]; +} + // Statistics information about resource consumption. message ResourcesConsumed { // Output only. The number of replica hours used. Note that many replicas may @@ -311,6 +355,22 @@ message NfsMount { string mount_point = 3 [(google.api.field_behavior) = REQUIRED]; } +// Represents a mount configuration for Lustre file system. +message LustreMount { + // Required. IP address of the Lustre instance. + string instance_ip = 1 [(google.api.field_behavior) = REQUIRED]; + + // Required. The unique identifier of the Lustre volume. + string volume_handle = 2 [(google.api.field_behavior) = REQUIRED]; + + // Required. The name of the Lustre filesystem. + string filesystem = 3 [(google.api.field_behavior) = REQUIRED]; + + // Required. Destination mount path. The Lustre file system will be mounted + // for the user under /mnt/lustre/ + string mount_point = 4 [(google.api.field_behavior) = REQUIRED]; +} + // The metric specification that defines the target resource utilization // (CPU utilization, accelerator's duty cycle, and so on) for calculating the // desired replica count. diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/reasoning_engine.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/reasoning_engine.proto index 6e14c18facd0..85b43672ca7c 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/reasoning_engine.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/reasoning_engine.proto @@ -32,6 +32,10 @@ option java_outer_classname = "ReasoningEngineProto"; option java_package = "com.google.cloud.aiplatform.v1beta1"; option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1"; option ruby_package = "Google::Cloud::AIPlatform::V1beta1"; +option (google.api.resource_definition) = { + type: "developerconnect.googleapis.com/GitRepositoryLink" + pattern: "projects/{project}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_repository_link}" +}; // ReasoningEngine configurations message ReasoningEngineSpec { @@ -48,8 +52,9 @@ message ReasoningEngineSpec { // Optional. The Cloud Storage URI of the `requirements.txt` file string requirements_gcs_uri = 3 [(google.api.field_behavior) = OPTIONAL]; - // Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11. - // If not specified, default value is 3.10. + // Optional. The Python version. Supported values + // are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value + // is 3.10. string python_version = 4 [(google.api.field_behavior) = OPTIONAL]; } @@ -113,6 +118,38 @@ message ReasoningEngineSpec { ]; } + // Specifies the configuration for fetching source code from a Git + // repository that is managed by Developer Connect. This includes the + // repository, revision, and directory to use. + message DeveloperConnectConfig { + // Required. The Developer Connect Git repository link, formatted as + // `projects/*/locations/*/connections/*/gitRepositoryLink/*`. + string git_repository_link = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "developerconnect.googleapis.com/GitRepositoryLink" + } + ]; + + // Required. Directory, relative to the source root, in which to run the + // build. + string dir = 2 [(google.api.field_behavior) = REQUIRED]; + + // Required. The revision to fetch from the Git repository such as a + // branch, a tag, a commit SHA, or any Git ref. + string revision = 3 [(google.api.field_behavior) = REQUIRED]; + } + + // Specifies source code to be fetched from a Git repository managed through + // the Developer Connect service. + message DeveloperConnectSource { + // Required. The Developer Connect configuration that defines the + // specific repository, revision, and directory to use as the source code + // root. + DeveloperConnectConfig config = 1 + [(google.api.field_behavior) = REQUIRED]; + } + // Specification for running a Python application from source. message PythonSpec { // Optional. The version of Python to use. Support version @@ -142,6 +179,9 @@ message ReasoningEngineSpec { oneof source { // Source code is provided directly in the request. InlineSource inline_source = 1; + + // Source code is in a Git repository managed by Developer Connect. + DeveloperConnectSource developer_connect_source = 3; } // Specifies the language-specific configuration for building and running diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/tool.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/tool.proto index 177aedfd3f2e..012bbef8a5d2 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/tool.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/tool.proto @@ -151,8 +151,10 @@ message Tool { // Enables the model to execute code as part of generation. CodeExecution code_execution = 4 [(google.api.field_behavior) = OPTIONAL]; + reserved 8, 9; + // Optional. Tool to support URL context retrieval. - UrlContext url_context = 8 [(google.api.field_behavior) = OPTIONAL]; + UrlContext url_context = 10 [(google.api.field_behavior) = OPTIONAL]; // Optional. Tool to support the model interacting directly with the computer. // If enabled, it automatically populates computer-use specific Function @@ -275,13 +277,51 @@ message FunctionCall { // execute the `function_call` and return the response with the matching `id`. string id = 3 [(google.api.field_behavior) = OPTIONAL]; - // Required. The name of the function to call. + // Optional. The name of the function to call. // Matches [FunctionDeclaration.name]. - string name = 1 [(google.api.field_behavior) = REQUIRED]; + string name = 1 [(google.api.field_behavior) = OPTIONAL]; - // Optional. Required. The function parameters and values in JSON object - // format. See [FunctionDeclaration.parameters] for parameter details. + // Optional. The function parameters and values in JSON object format. + // See [FunctionDeclaration.parameters] for parameter details. google.protobuf.Struct args = 2 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The partial argument value of the function call. + // If provided, represents the arguments/fields that are streamed + // incrementally. + repeated PartialArg partial_args = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Whether this is the last part of the FunctionCall. + // If true, another partial message for the current FunctionCall is expected + // to follow. + bool will_continue = 5 [(google.api.field_behavior) = OPTIONAL]; +} + +// Partial argument value of the function call. +message PartialArg { + // The delta of field value being streamed. + oneof delta { + // Optional. Represents a null value. + google.protobuf.NullValue null_value = 2 + [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Represents a double value. + double number_value = 3 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Represents a string value. + string string_value = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. Represents a boolean value. + bool bool_value = 5 [(google.api.field_behavior) = OPTIONAL]; + } + + // Required. A JSON Path (RFC 9535) to the argument being streamed. + // https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". + string json_path = 1 [(google.api.field_behavior) = REQUIRED]; + + // Optional. Whether this is not the last part of the same json_path. + // If true, another PartialArg message for the current json_path is expected + // to follow. + bool will_continue = 6 [(google.api.field_behavior) = OPTIONAL]; } // A datatype containing media that is part of a `FunctionResponse` message. @@ -632,6 +672,12 @@ message FunctionCallingConfig { // will predict a function call from the set of function names provided. repeated string allowed_function_names = 2 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. When set to true, arguments of a single function call will be + // streamed out in multiple parts/contents/responses. Partial parameter + // results will be returned in the [FunctionCall.partial_args] field. + bool stream_function_call_arguments = 4 + [(google.api.field_behavior) = OPTIONAL]; } // Retrieval config. diff --git a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto index 5c5fd3766d7a..d434a57e5823 100644 --- a/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto +++ b/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto @@ -201,6 +201,15 @@ message RagVectorDbConfig { string index = 2; } + // The config for the RAG-managed Vertex Vector Search 2.0. + message RagManagedVertexVectorSearch { + // Output only. The resource name of the Vector Search 2.0 Collection that + // RAG Created for the corpus. Only populated after the corpus is + // successfully created. Format: + // `projects/{project}/locations/{location}/collections/{collection_id}` + string collection_name = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; + } + // The config for the Vector DB. oneof vector_db { // The config for the RAG-managed Vector DB. @@ -217,6 +226,9 @@ message RagVectorDbConfig { // The config for the Vertex Vector Search. VertexVectorSearch vertex_vector_search = 6; + + // The config for the RAG-managed Vertex Vector Search 2.0. + RagManagedVertexVectorSearch rag_managed_vertex_vector_search = 8; } // Authentication config for the chosen Vector DB. @@ -371,6 +383,9 @@ message RagCorpus { CorpusStatus corpus_status = 8 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. Number of RagFiles in the RagCorpus. + // + // NOTE: This field is not populated in the response of + // [VertexRagDataService.ListRagCorpora][google.cloud.aiplatform.v1beta1.VertexRagDataService.ListRagCorpora]. int32 rag_files_count = 11 [(google.api.field_behavior) = OUTPUT_ONLY]; // Optional. Immutable. The CMEK key name used to encrypt at-rest data related @@ -385,6 +400,12 @@ message RagCorpus { // Optional. The corpus type config of the RagCorpus. CorpusTypeConfig corpus_type_config = 13 [(google.api.field_behavior) = OPTIONAL]; + + // Output only. Reserved for future use. + bool satisfies_pzs = 19 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Output only. Reserved for future use. + bool satisfies_pzi = 20 [(google.api.field_behavior) = OUTPUT_ONLY]; } // A RagFile contains user data for chunking, embedding and indexing. @@ -463,7 +484,7 @@ message RagFile { // Output only. State of the RagFile. FileStatus file_status = 13 [(google.api.field_behavior) = OUTPUT_ONLY]; - // Output only. The metadata for metadata search. The contents will be + // Output only. The metadata for metadata search. The user_metadata Needs to // be in JSON format. string user_metadata = 15 [(google.api.field_behavior) = OUTPUT_ONLY]; } @@ -604,13 +625,13 @@ message RagFileMetadataConfig { // well as entire Google Cloud Storage directories. Sample formats: // - `gs://bucket_name/my_directory/object_name/metadata_schema.json` // - `gs://bucket_name/my_directory` - // If providing a directory, the metadata schema will be read from + // If the user provides a directory, the metadata schema will be read from // the files that ends with "metadata_schema.json" in the directory. GcsSource gcs_metadata_schema_source = 1; // Google Drive location. Supports importing individual files as // well as Google Drive folders. - // If providing a folder, the metadata schema will be read from + // If the user provides a folder, the metadata schema will be read from // the files that ends with "metadata_schema.json" in the directory. GoogleDriveSource google_drive_metadata_schema_source = 2; @@ -624,13 +645,13 @@ message RagFileMetadataConfig { // well as entire Google Cloud Storage directories. Sample formats: // - `gs://bucket_name/my_directory/object_name/metadata.json` // - `gs://bucket_name/my_directory` - // If providing a directory, the metadata will be read from + // If the user provides a directory, the metadata will be read from // the files that ends with "metadata.json" in the directory. GcsSource gcs_metadata_source = 4; // Google Drive location. Supports importing individual files as // well as Google Drive folders. - // If providing a directory, the metadata will be read from + // If the user provides a directory, the metadata will be read from // the files that ends with "metadata.json" in the directory. GoogleDriveSource google_drive_metadata_source = 5; @@ -758,7 +779,6 @@ message ImportRagFilesConfig { // Configuration message for RagManagedDb used by RagEngine. message RagManagedDbConfig { - // Deprecated: Please use `Scaled` tier instead. // Enterprise tier offers production grade performance along with // autoscaling functionality. It is suitable for customers with large // amounts of data or performance sensitive workloads. @@ -791,12 +811,11 @@ message RagManagedDbConfig { // The tier of the RagManagedDb. oneof tier { - // Deprecated: Please use `Scaled` tier instead. - // Sets the RagManagedDb to the Enterprise tier. This is the default tier - // if not explicitly chosen. + // Sets the RagManagedDb to the Enterprise tier. Enterprise enterprise = 1 [deprecated = true]; - // Sets the RagManagedDb to the Scaled tier. + // Sets the RagManagedDb to the Scaled tier. This is the default tier + // if not explicitly chosen. Scaled scaled = 4; // Sets the RagManagedDb to the Basic tier. diff --git a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetCredentialsProvider.java index f963d46d9928..618596f6800e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetEndpoint.java index 0dc6d9595af4..0eb952f323e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/AsyncGenerateSyntheticData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/AsyncGenerateSyntheticData.java index 63f872634754..05d9bde81dfd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/AsyncGenerateSyntheticData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/AsyncGenerateSyntheticData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/SyncGenerateSyntheticData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/SyncGenerateSyntheticData.java index e3bb3798f762..4663c66e312a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/SyncGenerateSyntheticData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/generatesyntheticdata/SyncGenerateSyntheticData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/AsyncGetIamPolicy.java index 868c1b6ca8c9..4ec904a07d06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/SyncGetIamPolicy.java index 7ae95b57767c..3e4f83e51f3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/AsyncGetLocation.java index 2e759f70b5f7..e51980254d22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/SyncGetLocation.java index 45e438b470dd..cf8f27fd34f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocations.java index 1b2387f1b751..f1f9ec4d1aeb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocationsPaged.java index de9f01541ee2..7cc514a25626 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/SyncListLocations.java index c5b1ee6c6077..3c65d6c206eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/AsyncSetIamPolicy.java index ea11dfe99fa7..18f28d014d18 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/SyncSetIamPolicy.java index bf11e50d2fe4..e6766b564ec7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/AsyncTestIamPermissions.java index dcea1f5f772e..0b698852779c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/SyncTestIamPermissions.java index 3c7d3371c97f..a7f6034b7600 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservicesettings/generatesyntheticdata/SyncGenerateSyntheticData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservicesettings/generatesyntheticdata/SyncGenerateSyntheticData.java index 9dc988c2710c..67d8e1c41af5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservicesettings/generatesyntheticdata/SyncGenerateSyntheticData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datafoundryservicesettings/generatesyntheticdata/SyncGenerateSyntheticData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetCredentialsProvider.java index a87b0c79cefd..c9ca45a9310e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetEndpoint.java index 3831d413209c..a46ebe611bf9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDataset.java index cc63b72811c2..d5da089ea1b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDatasetLRO.java index 4e1cd9eef244..564514bceb04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/AsyncCreateDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDataset.java index 9a1182226aee..be4eb433b7e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java index 48e5e6c2b255..06945f584293 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java index b7ec7128fe39..3338418d11fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java index 9278687324a0..da10ff242003 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java index abda5e2bfb65..667cba5896f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java index 63540be57bdb..7480fe228792 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java index d74ce607f184..38ae40ed53cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java index 95940685e3c6..cf62b05de2f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDataset.java index c21eb3f71541..06545a344d4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java index 8f23ce0e7ef6..b16bc4f54309 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDataset.java index 049882863c0a..5fcc04daa695 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java index c166243e72d6..3f54f9363bb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetString.java index 9497680f5201..947d3a2dff25 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedataset/SyncDeleteDatasetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java index ce0290391204..4f6cb565fbf7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java index 9b7f4898bebf..4f67cc2f200f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java index 17a570c98efd..869cc8fbaf5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java index fe8336fa87f9..d5b3c08561cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java index 91c7c79af02c..b94ca26a1414 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java index 8f7767fab608..c6148c5c8090 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java index c024c89a9a8e..5f8d7423ec29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java index 437b2c416558..0e9dc023e228 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java index 801bb3b0d27e..96a58304a5ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java index 617d2cab7a27..66214dd02511 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportData.java index 61e45abf1355..670403ff7166 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportDataLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportDataLRO.java index 9ceddaa60c97..71e5942af99a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportDataLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/AsyncExportDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportData.java index 3371217e7ee5..c2e966170def 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java index 61345fcfce3d..f59308e27850 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java index b72456f43382..3a208973c05f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java index 1dc6888c1ff2..c741e8b63427 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java index 9f4b2410d342..5bb3c46fea82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java index f5cb3bba4cf4..40c95a46a980 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java index 7685597cec66..5ff1ccbe4a08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/AsyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/AsyncGetDataset.java index 50f3e57f83ee..29e99ca4af5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/AsyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/AsyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDataset.java index c75c66d49ac2..87ec9c9c71b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetDatasetname.java index a88a2dff74ed..3f8db9279d8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetString.java index 962f555907a8..1806468ad7e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdataset/SyncGetDatasetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java index c040d647c734..d4dd570d0b7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java index 447128d2e968..26cadb8da426 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java index 05eddb5f7b05..6ea4080418b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java index ca5d5e6ae287..158256188caa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/AsyncGetIamPolicy.java index 1ae68478e69c..12017b6fbbc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/SyncGetIamPolicy.java index 9f6a14c832dd..cfb49dfc9fc0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/AsyncGetLocation.java index 9b1ef1404f42..0593d45bd47b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/SyncGetLocation.java index 1430f0ce4f7d..61a5cc724101 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportData.java index 937564e3cacf..d36671e9422e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportDataLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportDataLRO.java index 60a9eefad26a..eb1defeeffe6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportDataLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/AsyncImportDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportData.java index 7aa66587e185..06a6ac199120 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java index 89ea2eeca2e9..5fafc49ce67b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java index c08e77dd2b0d..e09c2ebf6939 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotations.java index fec5735efdd3..4fcaa8109cd9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotationsPaged.java index 444d2f7ccc66..a511940d4031 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/AsyncListAnnotationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotations.java index 0ced9d902c5a..e793a1080fb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java index 68a9f55cd597..e7c07fea0b3a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsString.java index f19f153ed95e..7f5e88bc595a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listannotations/SyncListAnnotationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItems.java index 06fb3ff65ec0..03774f9f12f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItemsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItemsPaged.java index 764b9f2d0f5e..3d5cca096913 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItemsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/AsyncListDataItemsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItems.java index 3bdd7cd18a68..4f7c6e43a602 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java index 58c10576cb9a..97eea89820d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsString.java index 7fd204650507..a2021f5855e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdataitems/SyncListDataItemsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasets.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasets.java index 5471a7946650..29ba63fe7731 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasets.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasetsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasetsPaged.java index 11e0d2a67720..0d697c0887e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasetsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/AsyncListDatasetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasets.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasets.java index ff5b9cbdf7aa..2733a6aaaffc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasets.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsLocationname.java index b9efe8c68230..db27fc57c4e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsString.java index d1d556159027..b093adaf8482 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasets/SyncListDatasetsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java index a35630bb40b3..3f62da95b4e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java index e6feb56da117..c792683a5e0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersions.java index 1ca018fa9168..9caa3b9b2f3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java index 4a832ee51572..6cee3b7bfe42 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java index eef1cb41564f..51d9e14158b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocations.java index 7e61d8bb0744..0d4f8e67b636 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocationsPaged.java index 1cb73cd2b74c..775c0acd72f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/SyncListLocations.java index 751d6bf122c6..2e0401cd8fb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueries.java index 31732626379d..ff187c39291e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java index ed765ac84e5f..be9bf125c576 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueries.java index 2ad7bc40ead3..299ed26e709f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java index ba7ae1f9662c..35abfef64131 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java index 33d1aa4a6628..d97d4aa499b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java index 3f691546df89..763816aa2486 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java index fa896d06a405..b36041fb186a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java index 58c24f98b6b6..1ef943c71e29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java index 910a317c3862..87da3c9ea5ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java index 03f83768b0ad..0626e7c4745c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItems.java index 853f86a22616..3a46a0982a5b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java index 31c021602f93..54f586753752 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/SyncSearchDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/SyncSearchDataItems.java index 69ddd185c184..3dcd9ef92b19 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/SyncSearchDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/searchdataitems/SyncSearchDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/AsyncSetIamPolicy.java index 4a4c202a9888..9bb0f6c51700 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/SyncSetIamPolicy.java index 374f5d16a320..f4c38150fad5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/AsyncTestIamPermissions.java index f0dceba3eda2..f52f42a2070e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/SyncTestIamPermissions.java index 44784f2026c1..a796f30ecbe7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/AsyncUpdateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/AsyncUpdateDataset.java index b547f6da6d1d..dce764397ece 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/AsyncUpdateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/AsyncUpdateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDataset.java index bbf96bec61cb..d4dadea3987f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java index edc70d40398e..c23161d8d534 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java index 8ac177777d6f..789cede967bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java index 4ef4a2664833..4ddb2220f074 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java index 1b2b9c425e5a..3db6bda78139 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/createdataset/SyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/createdataset/SyncCreateDataset.java index 132a2b0542a8..824e08dda51a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/createdataset/SyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/createdataset/SyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/getdataset/SyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/getdataset/SyncGetDataset.java index 6578f44cb33a..acd9dd68bdef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/getdataset/SyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/datasetservicesettings/getdataset/SyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java index 5df1604178c5..e22d5c2c424c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java index 710d570b3bc0..947c94962b38 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java index 4489ceb8ebe8..a7965070cc2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java index ad8154c4c92f..40ae86976ea1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java index 422e5858805d..f5f1387d1781 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java index 2edb6a95f24b..4ccffad53946 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java index 9523c25571be..1c03cf96746d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java index 7cffacbf3380..15a7ef395370 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java index 790918b38441..773487acf911 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java index 3c0b77bab6d9..fa6fcb82576f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java index 25fd1f5be26f..2c22221b95ae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java index 4e52eb8ccdc2..1721d8c6a20f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java index 35a8e16c7cac..6dd1b5809985 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java index 82518537dd44..014eec1b3b1a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java index de1228e996ed..2df4785c9e43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java index 8b77d8ef9567..2ccf9c6c2fe7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java index 69e1c7587912..d11dc677ab9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java index 84d8e5a25744..715546315efc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java index 8cb1b2edd388..efba69eb4043 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java index b238ae64e4c1..1776905b66c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java index ef2743a0b5a8..35ed187ddc8b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java index 265052ccca62..8835aa5606af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java index 046a2462ad01..fc58a1024e22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java index bcb6e1b8e525..2ca754e9ca66 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java index 4c647df39ed0..070de5a480ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java index 8d63a88444ff..4544df018ec0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java index 14bf23c01c84..78f2478f917e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/SyncListLocations.java index 5ba5ed1cb94b..5f9e8d10acc0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java index b3d02a20a8cc..c4e39ae33855 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java index 3605d4c28c24..5a1e65ba50b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java index af42607a4b32..5baf3715b815 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java index 3642ab9e598d..c3e6ea828c8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java index 6aecaae41882..e45823ce37d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java index 4c97cb307b7f..2e2c3ae549cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java index 070b752724ed..2eed1faeb2fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java index c12c1892b76a..1507c471f819 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java index a90ad0398067..d0d921ab95f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java index 1e16d9319b78..e13b3e8c1349 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java index 0c27e23e5332..579c47fc109f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java index e6bc0f97492f..ede061bec052 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java index 8bc0b019e4f1..5ede517acb7e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java index 9048b5da9d19..c7147067cf84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetCredentialsProvider.java index fd48e6032fcf..5353ab1f4748 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetEndpoint.java index 4a8cba090387..68269672cb7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpoint.java index d29e6b17b445..e8c17b5c7b4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java index c162e40a57b6..68ffc1346c48 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpoint.java index 1b2848022394..72c24aef5a2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java index 377c12762520..69deeb762162 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java index 29430cbc7744..f3f778590784 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java index 61e4cb7b6a00..7da9f17f2758 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java index d612b9f51408..ab18d8f46ef5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java index 7fa600981b3f..cc08de2baf96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java index 5d5c69d2a5c0..bf8f6cb1d9ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java index 95a773d0fc9a..c9d9b114a3cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java index f54fb969ff32..6c5544a49f92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java index a81d61f2af93..f5bfaca931eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModel.java index b8ab2ea582e3..b356670d977d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModelLRO.java index 2fb7898803dc..0a784ed33921 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/AsyncDeployModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModel.java index f49a62315bdc..8369b567361a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java index 0d8500589145..556d957a81d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java index 194fc0259f68..9b92d0f251c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/AsyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/AsyncGetEndpoint.java index 019f82f9b8b2..16806fe3f7a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/AsyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/AsyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpoint.java index ad8b946c53e5..eda7233bbb71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java index f2cbf6a57177..2ac8c664a372 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointString.java index 1361f74ef297..002d08b33b89 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getendpoint/SyncGetEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/AsyncGetIamPolicy.java index 6594a32fa524..9860618a0970 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/SyncGetIamPolicy.java index 93d1859df8f6..2a6682e9316d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/AsyncGetLocation.java index aac8d955d65a..64fb2c00ff96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/SyncGetLocation.java index 0c5f9187172b..cc55daa9df8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpoints.java index d7807c7c4191..1520c07dcaa1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpointsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpointsPaged.java index 993b25c7ff0b..fa4ea44a3d64 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpointsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/AsyncListEndpointsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpoints.java index 739f5397970a..12b5225b80e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsLocationname.java index 3910d151d1ca..da08d14b85af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsString.java index 27330d9a1283..0ca313c9d218 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listendpoints/SyncListEndpointsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocations.java index 64733ac2687b..9ece8af8102f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocationsPaged.java index b287c37074b6..4236666f1074 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/SyncListLocations.java index 21d29c33a201..18104db2c370 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java index e66e5f96b5a0..54ff45174fda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java index 600ef507e89e..348c36c8d500 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java index 4b2ef797e974..e9ea236d9cbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java index 5437b79e8f9a..c2c6eaffc03a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java index 7db470563bb2..3111a4415739 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/AsyncSetIamPolicy.java index 31fe33a53577..fa2d363fb7e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/SyncSetIamPolicy.java index 09b873ee551b..5b1104e2b403 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/AsyncTestIamPermissions.java index 2252d3fc7aee..0895b3239f5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/SyncTestIamPermissions.java index 5709c96dbc3a..b8a934091484 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModel.java index 84db71a84169..9a2248304f73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java index 15ad42747160..d6b1d986efd8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModel.java index b4d016359b12..4bdf32f848a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java index daae1ec4de14..529ba2f6ef98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java index 75a799528a06..dad28a94ab29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java index 196149b5e369..0f4e8ee69d04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpoint.java index 58a32817319c..9140e2ba0c97 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java index 0bc5bb92318b..326e52e8baeb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java index d94cfe70408b..68f8ec65205d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java index 17357dafad76..6e440d34f78d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java index 39566606d075..b15ee12b2339 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java index fdeac524684d..6d140bc1ae0f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java index f8b478e11fce..79f6e3db99db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/getendpoint/SyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/getendpoint/SyncGetEndpoint.java index ce62aba8bd00..40a825473113 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/getendpoint/SyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/endpointservicesettings/getendpoint/SyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetCredentialsProvider.java index 3f5d00a31c99..37c9cccdbf2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetEndpoint.java index c1dc31e81463..945dabec78e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java index f79eabb46195..93e418376e9f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java index 3ce668c3d87d..7ec90dc602bc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java index cf13f9ac7a2a..8a664c17a906 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/SyncGetIamPolicy.java index 27239b473ea7..bfe72aab6aff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/AsyncGetLocation.java index b5e041e173ef..4bedf17e10c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/SyncGetLocation.java index a31b0e4f3e43..e3be641d6777 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocations.java index 8bb78c0ed637..b9cf3896b6a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocationsPaged.java index 59bf69a5450a..d61193507b0e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/SyncListLocations.java index df3f75646fcb..cff46d4df1de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java index a7eb46de6aa7..242acb48a4e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/SyncSetIamPolicy.java index 3138440ce59c..b7352162397c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java index ac02799a7c9e..47cf82e4f895 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/SyncTestIamPermissions.java index 6d92c2eb6f66..91a9362b00af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java index 32f60d6c7c8d..9978b27f0057 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java index 417bb71fab43..cabc3e2eda33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java index 1906fbd20eb1..07cc79f955d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java index 30002b6177a8..147228b22f4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java index cdf83d7ac648..ae8b255f9345 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java index 394d6f16b189..a43e6de72f01 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java index e5d459030c26..fc4bec760746 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java index 6a161505b31e..6ca757725fa6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java index ba4635668dfe..e0d9b59ea80e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java index c4607cadff36..10a69d13bc2a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java index 557a2ccfb489..3d8c507b2b1b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java index b61539c86066..2bf8912b5e9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java index a654c4d75879..ba8e54410286 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java index 57609fbf5988..acebb268a68f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java index bf4fd041b27d..d5f32a25c8e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java index 81c73b57f39a..c65b5c8f46e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java index 963058fe70e4..deee1593c6cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java index ccc366abea62..87c5c8113065 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java index 3b6c615da6c3..b608b71abb8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java index 4c7032e01896..d49086dd9a76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java index cf6ce177e6d5..460d594de95c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java index e3b7e257061a..d30c0983b341 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java index 856bb58bf4d5..1c6622afcc5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java index ab06a1ef1445..d67d365ce1a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java index 659db1d1dd39..c846c115bb39 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java index ea18655eab31..1ae37d94bfe3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java index 15b4e8cabd8b..8942d96c2add 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java index 01ca3d9bd78a..62d271914b14 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java index 2bb02430c1b4..e9058c30ddfc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java index ace4b99848df..2ccbecbe342c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java index 7ce693d4bce9..7b433c4cf5f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java index 87440d2b3c32..b355a2fbafd1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java index 50f15cb699ba..f1cfbeb711dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java index 341c1be0b642..d162b0ea5ad4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java index e5716fcbd7b2..c8ce17076560 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java index 6d10f7cfd6d0..cf5203f585dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java index 91f5598efaed..63df217065de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java index 95e2b4bad4db..b1d512fe0e1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java index deb2591d2325..7b6c78d6b37f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java index 2a3a745c9253..d407b651bbd2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java index 435f06e26109..00a66d28bff0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java index 37493a633393..cab26c2aeb4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java index 55d48764c2c1..23f2c33bda69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java index d16f4002facf..4f93d53f92b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java index 8ff016d616d6..35c96edc0c86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java index cfaf0a6be967..cb772843ff9a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java index e612965a466f..331ab2e7cdf3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java index 329a21037472..ff03d0d55af3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java index df2077724a67..5edefd948d15 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java index 94f01a69ad21..7b816b25b97b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java index 1931b15bedb3..b2af1578b0fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java index 5011138d4e46..8cabab25a897 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java index 6cd574c87b1b..f0e247e2980c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java index 7408cac62c18..8a2de8131d56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java index 2a16fd25693c..14726af30a08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java index 8f8138a78dbc..e89144b367ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/SyncListLocations.java index 91ed3d671954..e8eed6e05de2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java index 09edf08d3f41..337e0129cd74 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java index 1a86c3ebfa59..c0be7099d38b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java index 2ee85ad209f2..a1b7bebfb32b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java index 57bb54aadab0..85dffba67fe2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java index 1134e6f22595..d454ce3efe82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java index a89a294c24d5..a14f9f39ff70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java index dcb6555cc8f1..10532d4d9e2e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java index a97fa958befd..fe1f07acfbd6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java index 55f7922d2c99..cc5ff293bc07 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java index 25b7cba3399c..456472a7c66a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java index 46b9ac7b98f0..f82d040bbfa5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java index 8391a08c1ebe..681805de6fa3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java index a5a867e3409f..663189bae581 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java index ae9e90c091be..c13fe5aef7ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java index 254524d4c3aa..fe5ec8a2dc09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java index 1b17def4fd7f..e47d066766c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java index 1e302f386966..0e8ff248ea0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java index 123213d1c25b..1634bd0610cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java index 22cca8c0cbb4..5b5a5e4d3108 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java index 0b4fb30fa918..1ccb1175858f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java index bf64a21b6deb..79a7b89eaac0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java index 38ae22be9db9..d2fd3e870827 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java index 8ad8b8dc18b9..4a548d5079b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java index a9d1c91aa79c..c9f687ef952b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java index 161fb1c3c25f..62282bd56c16 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java index c7be1ec773fe..72eec0117391 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java index a9df783bbc41..4e16d036df97 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java index d6af44dfc9d2..ce1d12cda92e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java index 2565974086c7..c1724dafd4e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/AsyncGetLocation.java index bca96fbd89da..559b0eb245c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/SyncGetLocation.java index 2f9459d92f9f..6299ff08df70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocations.java index 38dbcb1fab30..46613442867c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java index fb9d8b99fd67..286f46e5e9eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/SyncListLocations.java index ebac1f9914eb..08d2916bbcce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java index 47117cbb1644..f6fb1438950c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java index 0fca71008427..ea631b9971a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java index 0742c5b35eef..5f0ee1b22644 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java index a00e8b14ddee..fde00928e2f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java index 1f03f5f52076..3b58eeb720c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java index c6b446a73c65..9984d966b119 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java index f80f0eb834c6..b318640bdeda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java index 440790082f50..30955951c608 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java index 3d37a8b59744..f337d95e5e96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java index e7009466cd76..6e30862ec8f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java index b9a34c8aceb0..a4d757e5a726 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java index 302e76a71b5a..1e106de5da47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java index ba83b38ee3c1..8c78d4a0d5de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java index fd24079352b8..c9dd6cd852af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetEndpoint.java index 9cf183a5ac32..263949f4f745 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeature.java index 5956035b0ad9..1152c8a8ec58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java index 5992fa30b9c8..324789e046f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeature.java index 60866434cc73..bd699cb29ecc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java index e88d724e533e..90760abaea24 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java index 05cc65328676..1608211f7c6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java index adaa9728d81a..5f41f34de55d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java index 9984c5b9baec..5ccde9135a05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java index d4266ef31875..00d238b3a7ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java index 33902352091c..2c8941534f89 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java index b9f35ac87a6d..1c8de11e22ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java index 1d2a8e24bc76..a3f99d258400 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeature.java index c86aef4966c1..521dcaa19786 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java index 403c3119a325..2b86108196fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeature.java index 03661c15838d..437d8c19dc02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java index e6edb80a0016..4a0b4106ef12 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java index ea1ad1e38a3c..fea31dae1a09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java index 0570c7c3e512..2921a03e6c52 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java index d7534945e5ed..689ba6af630f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java index adee1722f78c..c1c7fb24231c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java index 826346670a28..514c5e78636c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java index 188ccaaa5008..72c3de3acc47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/AsyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/AsyncGetFeature.java index a472c0e265be..5884611e92cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/AsyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/AsyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeature.java index 8f43ddc2fe95..e9e834a2fee0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java index 4839f45b74f5..c99b1b5ddbab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureString.java index fee9ed38c699..fd2121068f06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeature/SyncGetFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java index 582ba44a240d..bb75a9f6bf56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java index 527ed038484b..32a1319e825c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java index 8a462314f0e1..52c2725a3128 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java index d373f416c1c1..808f19079232 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java index 3ef7f8e8998d..5b2566977086 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java index 60f5140859a0..65092fc9e450 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/AsyncGetLocation.java index 0092f9b1cd1e..973137cfa864 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/SyncGetLocation.java index 6d04f0abd842..27ce418aee02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java index ad412c8971e4..7a6427822937 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java index 92a143871fca..3e2d4f946e36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java index caa031b7c982..ebf2de288bc5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java index 0a3bb73ec7eb..5c6e3cc18af6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java index 4dea8a514f2f..16366ea70678 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeatures.java index 3938f4cbcc58..2277ad671430 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java index 324e74b2eaa7..275686498a57 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeatures.java index 821093252af8..2a1e1edd98f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java index acc7173f2bfc..032a0bfed9a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java index 38a47f6148ea..49ba8a223bf5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesString.java index 945f8260d8b6..0fd9e1ce7239 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listfeatures/SyncListFeaturesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocations.java index 07b268c4100d..12e4cfcb174d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocationsPaged.java index 8fa0a2bc6294..e89293a1316c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/SyncListLocations.java index e1846a23d4a8..9257c6ccb1f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java index cba3ce14b5ba..1ec366cc48c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java index 02c69c62fe23..5c4f84047900 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java index 9e985027c8c8..31d5ba5055f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java index 4196b742ad4f..b2b265643457 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeature.java index 5edea687a9b5..f564a89850f0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java index 0f15233c1b81..963280c89cee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeature.java index 88cd12279143..1aaae4e165e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java index 713a9b9d0453..84b134def3c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java index 7aa1d10e863f..f05fd6ceb48f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java index c4bd5eb529f8..d5ebebc51f88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java index b23f2d0ced19..c6446c849a9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java index 2db0b7c82fd8..83bc1bdd1641 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java index 62feb5718f7c..8c6264670013 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java index f1188e06b5ea..0ba90626875a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java index 5e6cd1c38f99..55bac423e0ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java index 80c7428b783a..8a19c4a4d7ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java index 43685d2b6d82..cb0492acd6c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java index 217917cda35e..6a9b02ba9a61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java index 7a960bf3593c..0b506e855706 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java index 8d50ba5393af..960507147972 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java index 949f067e7120..796c875ccfc8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java index f9131f507c24..dd174a1ff20b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/SyncListLocations.java index 8ef34418f3e3..81d765507bc5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java index 1c7c8a0f4937..2bb72594efc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java index 913e8eb3d3f0..abe6e86413fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java index a1e5abf33707..9db0039d3da5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java index a02853a21a0b..b358f2053390 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java index 07a0afb2d009..f010be15d27e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java index 06dc86cfb3b6..b14041342135 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java index be31886b44aa..1dd5454ec78a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java index 617d271699ee..e725a1470a1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java index 0fdfd29cabaa..2458ff53c8dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java index 6bd0b2c70b18..2f41fb0f8f73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java index 9c2afefa7dc6..a3c630b9e5a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java index fd28ad8d3fbc..dc857f027be1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java index 8063e36a32ae..ab2c449e4e7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java index 3ab4488c6a70..e7e9d0b938b0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java index 3d60187760a5..6d31e399e3e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java index db2154187abd..99ca1d81be24 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java index af381485f4be..e6dee87e069d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java index 6404721bbaf6..d03a24d49dd4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java index 861d8e748633..f5a88c2219d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java index 23f3b7636fed..38b5737bedd8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java index 8b3b39e2c09e..8458aec948cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java index d3239f5ad1cf..b0b78f471917 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java index fd48e5c2c6b4..f4fbd93c8c94 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java index 227751dafa0b..cb3a656d8c06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java index 6d0422742a98..129b3fc96e22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java index 49cdbe0ac22f..f8c6a2039cb5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetEndpoint.java index a2f0327ca142..8d57dd9b81ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityType.java index 03ceec91b07b..070218f3686d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java index ad25fe34adf6..f41536fbde89 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityType.java index 907d45685890..6baaec629691 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java index 5bb02082127b..7218c7dd06e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java index d05764a8f707..38b719579dbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java index c3050cb3a21f..6cae77016cd6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java index c7cb0acbc887..13584fbe1976 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeature.java index a9e2a323812a..7d0dea08ac06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java index b9b52ce00acb..d87e69e0a432 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeature.java index 9d6e592c4c69..33e00c351f9b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java index 0813cc2fd81c..7926deb64b70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java index 4fb8c8ebf9b5..24d683df2731 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java index 3323703fc423..e7ebfe8a5248 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java index f5f18b1a3a26..732580bcf9ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java index b3dc1fe94a78..c640f38e508a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java index 3f1fbd4156e0..2fedfb61e152 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java index 63b3a5d3b001..07f502b8be81 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java index 2a4539b20d86..039328d59bbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java index d2063b0b15ac..fde60d491b2c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java index 2a86da6e2dfc..ea790a75f13d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java index 523537028529..d63ac40125df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java index aba385faf2ae..524ed85fd44d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java index 5efe702c57c7..731774a40b19 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java index ddec4e084a27..f11b803cc97c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java index 741a02e25973..da3c1c10c2a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java index 825a3fa78249..d26d1030acb9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java index 94bdf7419623..3f4faa82fc1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java index 083e9b60bd8e..e81932f8d070 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java index 7f432075a8aa..0915bae04676 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java index 6248f13b0687..9460702599c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeature.java index 0d97643598c6..a03c7d5c7fbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java index 9925a8ca6c34..7c005cd00897 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeature.java index 367a011d775e..560a6c1eb392 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java index 1a11cb570154..7ee632976502 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java index 7ca93568bf4d..e9e9054453d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java index 73ae22a79983..6122e8d5c420 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java index 9acb50ad912f..9a85de25a7f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java index bf2b003b8208..2f64b948a2af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java index 9975f131eb70..3a6123010d8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java index 13e070f3c5f1..ee4a80d8bfb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java index 2f404efa74de..19dab56eaa94 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java index 5b90b0b2d4b4..2264e893a79b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java index b34eb2558772..7c2b4339690a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java index 7da478735347..c500c8cfe4f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java index abbbdf44779a..8940cead5212 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java index fb496d0687d0..df5ce71233cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java index 0134facbf9f6..2d59763457b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java index 59f40d979c3b..8659b77ce950 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java index 587eb3744851..2c60549856a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java index 2f2c278daddc..a037dd7378da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java index bcb8a18a67ab..a9905e4d1db6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java index 9094ee3e9b71..93425adafecd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/AsyncGetEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/AsyncGetEntityType.java index bbbdb8e8382a..c5b54c3ff1f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/AsyncGetEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/AsyncGetEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityType.java index cbb288be4295..48c40b8c2603 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java index 63556ac6e2c0..81c8bc3d8469 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java index 48448784321e..adab2a54bf6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/AsyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/AsyncGetFeature.java index 59a211aaf764..df8620df6990 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/AsyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/AsyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeature.java index ef737109724e..5dd41899b718 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java index 26cf9b1d9038..ae4e6395f614 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureString.java index d144bd1ebef3..a18d7fa7db90 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeature/SyncGetFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java index 97da4af5b4ba..ebaefc4a28af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java index c676748d6362..58947e2d68df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java index 116ae4bc9c1e..6c2384b66254 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java index 2745f580d575..f6d92cec2e0f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java index 34fb3fc4b8e2..222cf6c341f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java index 0515d1110448..815d22896aff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/AsyncGetLocation.java index 8048ef29b83f..0434e3e14459 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/SyncGetLocation.java index 075c782bc335..689af6dd8b99 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java index 5ffdcc1a27e9..2ba22b540694 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java index 7e9535e6ab31..06759d613674 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java index 771ad8c4af8a..68b6f89a9176 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java index decedf09843b..25b38270b95c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java index 13210c6d4c56..c827af1b3049 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java index 749b34b5cf2f..a8f40799b078 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java index 63ca1ff80362..25d70e3f2d4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypes.java index c95f2c261848..003df004a571 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java index ffdeeb256fcd..1414dc24c3f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java index deeeda5ed755..e35bd5485368 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeatures.java index 30834ab54bf9..7374071b4595 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java index 71475885ed53..20724f183910 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeatures.java index 0897aa9b6f54..6d4b22684e09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java index 3756cc7a5d9b..43e0a99e44ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java index a802196d3eb9..e7c7ef9ade45 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesString.java index ab8ba69e32e5..22e1854fe82b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeatures/SyncListFeaturesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java index c1652da22a59..354502216e8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java index 09ea05e9f232..34bd7c95a8a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java index 110f5bcbfa3d..61afa492d4ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java index fcb138e8c6d6..0f5153ff8bd4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java index c90e480ec8f5..9a5dcaf0dd64 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocations.java index a9c00bf61fd9..383af0dbc101 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocationsPaged.java index aabcfa8b56b1..041455928381 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/SyncListLocations.java index 317f40da345d..ea0389e276f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java index 1cdd43b03ccd..b665b7146f78 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java index 2cd261772a86..dc4519d8aec8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeatures.java index 0d7460dfe4b9..fa21e8b79596 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java index ef58dd4fbe6f..041932aa453a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java index b1cf13de03f2..5cb21efd3cbb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java index 673c1b6f2039..49ff862f634b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java index e082ec9e4126..6cf4c655081b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java index a0b0685625cc..dfa8318a7372 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java index 906f3503e1b1..1deb3588a164 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java index b5b083bd81eb..2170ea3603c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java index baf56b67603c..8b1928e54c70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java index 085c0c67401b..99aa73ca9e7a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java index cb87e3e3cf97..591455c131e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java index fece2e268609..18b22d3e48e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/AsyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/AsyncUpdateFeature.java index a2f65616db90..d5ab353d6641 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/AsyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/AsyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeature.java index 87286aacd392..1dfca4415e30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java index 739de8b45ee8..785e33485357 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java index e84a3edf5df4..c79981edd519 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java index 58396e439aae..cae25008a6c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java index 613a62c0ecad..3695162111b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java index 53b3d2785f71..7ba4fc984153 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java index b59101158899..b38c3d3f4f33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java index 380c97c0d86e..5740a172cc59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java index a99904d48e99..fac3538c5b26 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetEndpoint.java index 3477702267ab..ce1835080846 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java index f0248523ee1e..761dfa27d769 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java index 1be29ba07b62..63e4b226b44f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java index 442599c2e887..fa7f612a0204 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java index 3ea031ed4929..c81d43af4d22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java index 91420bf3e4ff..4d38366d1cc8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java index 104b24c6304b..6bb5b25f5462 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java index cc7ff3d7a17f..beeb97e195de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java index da8f6096df5e..4d29278a52e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java index 3468294f3086..657ace85fac1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java index 169c57cdfe20..20bf9fcc41dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java index bdc2d2678a63..53ee8cf9e46a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java index b9ac5501e5cf..f9420a5a4388 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java index 77d4811a14fb..4eb0e4f5cb1e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java index f4e523590ed5..cf07258e2b58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/AsyncGetLocation.java index db9725e9b164..b6136bd6bb6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/SyncGetLocation.java index fe7b74b77d98..ea1c2b5d0e05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java index 924f634e163a..112ab8ff71c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java index 78acf5ceec11..b5259b7253a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContents.java index 5148e80334ba..9036c5200151 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java index 336898df89a2..a1733169cf62 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java index eddcd082d2ea..4c5b99d77759 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocations.java index de934d09d719..d4f9595b3580 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocationsPaged.java index fb7a9e0e5ea7..c6e26257579e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/SyncListLocations.java index 3b577c95e179..959bfa6d0470 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java index c31b5ecb6011..e80f3ba8a903 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java index 4d3f5da3da42..c93378949f43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java index 22e01618377a..43dde61ef940 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java index 78755a2bed64..1aeb6ed32e97 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java index 709135ccd432..080fbfe1b571 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java index 04c7f8bbdb75..0d95ee3f985c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java index 9808d6dff86a..cdba11928696 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java index 4a3d560db011..bd5f24f7215c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java index dc1f19a88ac2..1ec7f1be23e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java index 9cc452c9ea13..83a60e2bba51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java index 1aaf376dd5f3..ee4067d584db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java index 14dd1b1e6095..0a67577a5733 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetCredentialsProvider.java index 993add556049..93a552c35e29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetEndpoint.java index ef76b88a1cd8..2ed022ddfd27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java index 4645d5d7a1e9..ad5acbb3f77c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJob.java index f16e5911326f..a78d648e2f97 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java index 46a6b300e86b..a4d2d1a47849 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java index a40045664324..0ec1140f57f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java index f42741918935..913d9c8d0034 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/SyncGetIamPolicy.java index f259a09baae3..2c2b8b9aef62 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/AsyncGetLocation.java index 24dd21f54a29..800bb4d9589d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/SyncGetLocation.java index b39d60f4167d..09aea76de543 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/AsyncGetTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/AsyncGetTuningJob.java index ea39d9e1877d..94e2740837b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/AsyncGetTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/AsyncGetTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJob.java index 30227cdf76cb..dd6ddc80aaef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobString.java index 157083716087..1bba73380786 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java index b1ba4fda9f93..6da5cd2745fc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocations.java index 4485ddf4e152..bf612d2a406a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocationsPaged.java index f41444e46018..94d1e447fccd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/SyncListLocations.java index 818944e2ace5..943a7aaa4b6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java index 0fc77fe5d602..50cc46a78f4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java index 53c55df63800..c3c46f183f88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobs.java index 28677a5c7ae2..eab06341a3ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java index 6ff0792c1b08..49f6bd416785 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java index 66c4ff243a6d..2407050cf265 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java index e052fbded08d..2b19484c7f82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java index dc82a6155159..161e717df271 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java index 4c4b95dcdb19..32876afbf35f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java index 8b1dbb8d7b11..cad278aeff6f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java index 35ecc065412d..3c1dda1fd7d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java index 50789ff12b2a..68476d5f5981 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/SyncSetIamPolicy.java index 43ee2ce4d089..16fe96d145a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java index 4a30c5681b4a..d86f6b0d3a38 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/SyncTestIamPermissions.java index ce2e9c2de8c2..b0e635b9e1f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java index 5f7a533ab1e9..41f7ff5bb2e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java index 8cb10fcafa75..27540404351a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java index 71710e171652..4d411380f2be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetEndpoint.java index 3872df659a29..0460b505a9a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java index 378ea3799aa8..7379951361d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java index a49bda5bba4d..f1d6069e4d47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java index 340677e05dbb..bd6be3737dc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java index 708debe886fa..917b692c5b8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java index d6e52b548240..bc857eac3dbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java index be1e4af7aab9..87887e5f9c2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java index 71489653aa63..fc43c9285c18 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java index 4affecc72cc3..c78d2de563b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java index 46d2a567af85..1a003d415836 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java index 1aa9ba30d5a4..71816e9efd94 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndex.java index 5008a0d7b5bc..9a01a63c30d1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java index 4957f3ce20f9..6168e12c046e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndex.java index 709fd4ec5d7d..3b0668f10014 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java index 234237bd3f7a..180b29cb8e92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java index 5fd17d951f60..738f5efed636 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java index 817e0d76a69f..58f23ce455e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java index 68e360dda1f7..88b70e77676b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java index 4b0c442287e3..b359b6d8d78d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java index 447fa27f29a5..2a7d45ab4746 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java index 7c07fe29eadd..87a9122170ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java index d4d8340de191..f3de3e65ed62 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/AsyncGetLocation.java index 29e628d32b28..ba658832ca38 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/SyncGetLocation.java index e72aeadaf046..36c99573f3c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java index 82a476103fa1..48264dea01a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java index 2a2ebee621c1..a6a2eb6623a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java index e98054f89c00..537d8f9a533c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java index 211c4a541b3c..2dbab0c616ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java index e4e78da8aa4d..a3058cc6ac4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocations.java index 8188d5b912b8..2ac9898b910b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocationsPaged.java index 3cc029320aca..ceafd798a83c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/SyncListLocations.java index 94b6c860e4a0..59813056a5a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java index 76727c0fe3bb..dd30170deb7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java index 9e1f157c29f7..431519200222 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java index df19252f9b68..4109df314f85 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java index ade3c16484ca..04aec1fcf837 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java index db7b6c761704..10f3b8fd3b58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java index ba9a4622da2e..60206a75efbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java index fd09cfc413c2..938f98ae91f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java index 32b736a1d379..3eddcc791f30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java index 24ac41384747..70a0cc774f69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndex.java index 823bd53f34b3..e3852727aa70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java index 4e493a72b3d9..69f359815c95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndex.java index e677abb49634..f89d113c9c49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java index 8162b104aa60..a363243702fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java index 8cf666beb486..c97379dd926f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java index 08f72f43a1a3..e6493f606c6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java index 9f381b6d86f5..f44f12dbc6b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java index 16a7f9f46f8a..8dd5a66b1e30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java index c9327d703fb0..2e1666f9306c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java index 4e9e33f5cceb..f6016ed9333b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetCredentialsProvider.java index 122082cf3d19..fb8a0576a0b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetEndpoint.java index fee9ab57b97b..110e7ac98cf7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndex.java index f238713e148c..43a6b76ed5e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndexLRO.java index c4ae1dfd7a49..1dc5ff6c3200 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/AsyncCreateIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndex.java index 6df396037326..59b9d420be8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java index 9c56eff7fe78..1cf023f03889 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexStringIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexStringIndex.java index 9c56b4e1b734..9f0508549d54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexStringIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/createindex/SyncCreateIndexStringIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndex.java index d98e919e13ad..7156e1581987 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndexLRO.java index b10356f60588..a2aff7509511 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/AsyncDeleteIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndex.java index 640d03186728..05dc2dfbc522 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexIndexname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexIndexname.java index c7a0063252e3..26972bf7a28e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexIndexname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexIndexname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexString.java index 170da7404065..41936f104547 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/deleteindex/SyncDeleteIndexString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/AsyncGetIamPolicy.java index 703449a8dad7..0c29c5e4ab9b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/SyncGetIamPolicy.java index 4e665da7affa..385c04a061a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/AsyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/AsyncGetIndex.java index 85b8602bb92e..25b048c1a46c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/AsyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/AsyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndex.java index 6337dccf7104..97ae1b7877a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexIndexname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexIndexname.java index 70b7925a4814..87753c79c1bc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexIndexname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexIndexname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexString.java index 5162b2ee1a2e..e3a9f1e62f53 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getindex/SyncGetIndexString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/AsyncGetLocation.java index 4dc2f05eb692..5a61549b9ed0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/SyncGetLocation.java index bba8d1666597..ee457150f8ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexes.java index 0e9e04d19cbb..623d1e7458da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexesPaged.java index 91720a64f610..5fc8be186f5d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/AsyncListIndexesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexes.java index 8fec12352b0a..23609aed1344 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesLocationname.java index 7e651f48f393..b45d4147087e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesString.java index 066c3bc4973d..f1b1609f3c6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listindexes/SyncListIndexesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocations.java index 51ee7ff3dd3f..3cdd946cf344 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocationsPaged.java index 7f356928473a..16e167607295 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/SyncListLocations.java index c8d9778d6f60..1f4311648a44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/AsyncRemoveDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/AsyncRemoveDatapoints.java index cc6a4d329815..da78f2c48060 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/AsyncRemoveDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/AsyncRemoveDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/SyncRemoveDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/SyncRemoveDatapoints.java index 938265984108..d2dd9f4194f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/SyncRemoveDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/removedatapoints/SyncRemoveDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/AsyncSetIamPolicy.java index e6489ce465d7..fb6f816aef2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/SyncSetIamPolicy.java index 041455703494..e4e8f00a7b3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/AsyncTestIamPermissions.java index c84c8e84610e..f8a165881ed7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/SyncTestIamPermissions.java index 44374e0cb060..4991e31afcf9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndex.java index 67587172089b..fa4159d72250 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndexLRO.java index 0c48dc8599e4..9dace1e79263 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/AsyncUpdateIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndex.java index 84030af56275..c989610ecd08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java index 9c28d4c07f81..88de8dfda716 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java index 37512276830f..e49743a89f03 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java index 1b7fee50f420..a6e82dc81f72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/createindex/SyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/createindex/SyncCreateIndex.java index 36f54fa5502d..ba010694c680 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/createindex/SyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/createindex/SyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/getindex/SyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/getindex/SyncGetIndex.java index 546d97d34ef6..77f0535ea556 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/getindex/SyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/indexservicesettings/getindex/SyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java index 34e133916d40..429892d9f34c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java index 31347740daa3..0249c9b31370 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java index 1554289ca576..e9f87bfc852e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java index 949f70172caa..5f7c3b2e33d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java index b14fe2c48361..cc1bf0dc3768 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJob.java index 7fdd4c4c8c60..49840829fb6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java index 2b9beaa1bffd..e018c1098389 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java index 8093438cc681..2e8fdbca0e09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java index 90a112f56814..4ab243dd033d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java index d5d4923040dc..797aea0684c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java index 8ed3a395066b..f9aea80147b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java index 8b07b42b30ba..f93f7bdad590 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java index a90f2e9d7f1b..24ebdc610608 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java index 05d948b5b597..677cec6da37d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java index fd4ad980a4da..0fec78630ad5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java index 7f72de070831..910359dd6a3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/AsyncCancelNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/AsyncCancelNasJob.java index 80b224ae3488..930a1ee98ca1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/AsyncCancelNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/AsyncCancelNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJob.java index bba7452af998..2c4a90607c3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java index 22be4774819e..9d51dd929035 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobString.java index a5cda59d3d54..10a2550108c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/cancelnasjob/SyncCancelNasJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetCredentialsProvider.java index ecad538110dc..1f3d10b5217f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetEndpoint.java index 403623f1d117..34a25d8c71e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java index cbfc43937f14..2aef6e21ac07 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java index c88805dd5532..0987a84d2be3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java index aa6363d20fe3..18754d0bbcbe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java index 6b4254f20f41..1bf9472ff852 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/AsyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/AsyncCreateCustomJob.java index dd19e998885b..025790cd77b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/AsyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/AsyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJob.java index 26c9e208da8f..fab63f185e5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java index 6e43e58d7318..fa3afa562ab5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java index adbf48ee3c84..d826604ce941 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java index ef6077573872..fe7af36d1fe0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java index d122c19856f6..730f4f372795 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java index 0ac0250c885b..68df262edc5d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java index 50c9ec0ab382..00b56f9495b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java index 589999b546bb..3ed28aaf3f58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java index 657c0ca4ea2c..d0ea0daeadfd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java index 9abb1fc4891b..73f82a0fbdf9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java index 50eed99fa40e..7a0e9d929564 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java index 8bb88829aee1..dbba21c5cb30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java index 3e690b3efaf8..85a5f3e948c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java index 6af637c607de..2f4e52340465 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java index 5b323b1f6052..66cc46b13d9b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/AsyncCreateNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/AsyncCreateNasJob.java index 949a303d632e..73484c123d4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/AsyncCreateNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/AsyncCreateNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJob.java index 3b6d48bf33cf..78b089cc1b3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java index 34a0c1f4133c..f17448628096 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java index caf8bf0dc7f4..3849df762f6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java index 459e17d7a211..99393126edbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java index 83d89c46fff7..7a737f5b6d36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java index 7362abd90d09..f71db98b9890 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java index 178b0a4c3f92..c0179f96b983 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java index 790f69bb0e08..a41d86da9b71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java index 85d5dd99c3ec..bdbaa13256ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java index 40ff5b6f4464..042adae11ed0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJob.java index 6aedcdd30d17..9a7db9d9df17 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java index 3a8074d4c7b4..26f77fc724a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java index 3e88eca3080f..e610451480de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java index f4bf4f9a002e..74af58ff1c04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java index 43c727adfe0e..69be0662557e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java index e0c4a3aa83f0..8d1a6bef2c1a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java index 20c910e0c5a9..750bdfdeea21 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java index ecbc14c77bcd..9f9bc149d7fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java index 93eb39de41c1..ac6c1b646e0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java index b092ecc7bae7..5339791b217b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java index b4d8e7a59502..b2d405579a5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java index 154efad494b6..ae5eec408076 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java index 98a755890e53..a9747d9cdd6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java index 21337c75e099..eedca455ecc4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java index afe132d7a34c..3ec52d339f1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java index 119396611792..b78d941dc388 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index 350a11abd310..5d30cc1ea9e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java index e83f4820bad2..852f4cb014eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJob.java index 0e26fa3d2fdc..78e84b499053 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java index 798f1b6a685d..02e4043f060f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJob.java index dc4c92b9644b..7941d876ac7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java index d51e1e4caf42..b3ee9b1a5728 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobString.java index 9caf347c9df6..3ea729ec523d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/deletenasjob/SyncDeleteNasJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java index 4149a066c4cc..545ae6a09a1a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java index 2125ffa74b57..84c912f4aa50 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java index 635de0c1adc1..1b878c5709c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java index 69cb5231f1e9..abaa934279e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/AsyncGetCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/AsyncGetCustomJob.java index 1829eb916b53..df7d86627267 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/AsyncGetCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/AsyncGetCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJob.java index 0aeef1d661c8..b974ae0e7130 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java index fc666189c8ea..5b69ba3a1254 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobString.java index c2adff306f5c..1c30579a0614 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getcustomjob/SyncGetCustomJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java index 304ebea2ce7a..45aec588f9fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java index 74a4f91dfa6d..59fafc886914 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java index 2a26a6fcaeca..d07cb9f7d3fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java index 83a507f0c5e7..9bc6142fd1b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java index 08d73c6e5567..bf4469590b92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java index 1e3b9a48120c..31fa77ac2ff6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java index 27f79b3c0cc9..269866cc46a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java index 8e792c772c98..22a96051744f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/AsyncGetIamPolicy.java index 59c811f5b2dc..9b7402802fc1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/SyncGetIamPolicy.java index 35dc49703d33..cf9e2b6a1c82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/AsyncGetLocation.java index d953002139d6..04b50a6717c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/SyncGetLocation.java index 18880e9429a1..bf22e29a8769 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java index 22976cd8c185..8150ecb57724 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java index 5371d640941e..8527e862a185 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index fb736cbfeb33..b18cd5a33e0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java index 3310b730e5b5..313b795789db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/AsyncGetNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/AsyncGetNasJob.java index c0a3875081c4..db27eaffd3c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/AsyncGetNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/AsyncGetNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJob.java index e65d4f4e7bb6..f5dd9e00fbc8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobNasjobname.java index 92c46adffd89..024c9e86893b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobString.java index 42985d1d882f..d2a4ab7dee56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnasjob/SyncGetNasJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java index b89ad374639c..264d37e24ad1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java index b1fbc8d3058d..0bfc3f94b490 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java index 4cd83ef3ad70..cc994bbd9be8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java index fb67433410a3..e25ed5d467c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java index 0d58e0bbb5c5..bf10289d518f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java index f906b413cc3c..553951061c90 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java index f70e84b3ad2e..5b7cdb1367ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java index f6fa15a7ca35..e32229af7c6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java index 23635864b5a8..d85b07e9ae3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobs.java index 79233c1ef6bf..055b96562fb5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java index 0fed608b387f..421988a5a06c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobs.java index 26f2e55f466a..0b663890d081 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java index 9147424bfb03..96f068aeabf7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsString.java index 4d592109a4fe..877259ef6bf2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listcustomjobs/SyncListCustomJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java index cf90e84bb641..ad83cc4969e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java index 2edf3b59e897..26f50df817c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java index 4abf8e1bb982..cb48fa5163f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java index f523eaf9ed70..eb31913bf35b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java index 4aa4ed956051..7ca3b40162ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java index 28868c0b3ba2..e1fc6b3549d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java index ffee4d430154..90a7983890d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java index e6f6fdfbf8d1..d46aea7d0394 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java index ea22ea781242..32f86742f85c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java index ebf274197960..445cf1dd02d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocations.java index d148d06b1f92..ce3572d0f10e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocationsPaged.java index 926c24bf1488..4196180a63bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/SyncListLocations.java index 8a20729a218f..49b3b910a0be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java index 33d4617fd71a..b6eb082dba8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java index d8d843dd66da..3e83fbb0d11c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java index 7dcd766a41c1..dc64ed891418 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java index 5a387244b474..c4126c2b315b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java index b6747c1b6a35..10ba2a155d88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobs.java index c17eeb47453c..013fc5e0c956 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobsPaged.java index 4cd9775b4960..ce1fb1dbee99 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/AsyncListNasJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobs.java index b37e040bb630..e6ca60d0d65b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsLocationname.java index 86ed1e7828dc..ba61a045a7ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsString.java index a303faf456f7..986c1e7e751e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnasjobs/SyncListNasJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java index 8d22d5a1ca33..1bc85eb2e4b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java index 0897a799c4f4..70b3ad442dc0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java index 2e268547ec22..bfad7edcde16 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java index 895047b28010..3edc22d5c7f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java index c4b4cb6d4716..dee269f82a8b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java index 35f77d341125..b5050aba2b51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java index ea5d34d3ff10..1c216d07283d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index efd24161841a..7ae2cb0028d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java index 0d394ad9c2cd..0b2ff2b733f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java index ce6b6b7f873c..db6191d461d9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java index 4236ef739da8..5da07bfc445a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index a73bafd0800b..81984090b829 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java index 6b9fc284be1e..dd0972f66e57 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java index 58f3c5297d35..2d56a0fd8573 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java index b46d972e1c88..d621a4b4b692 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java index eb3403517cef..942c21e62dd2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java index 82b9004bfd6d..a7c61a40a78a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java index a3c28d3f3203..9012238c1906 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/AsyncSetIamPolicy.java index bce3dc2ef8eb..9bc9d1b7fab9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/SyncSetIamPolicy.java index 4c2b401313d8..8354d4d2bba2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/AsyncTestIamPermissions.java index 7bff9651bfdc..70bf2269bb3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/SyncTestIamPermissions.java index 478ea500ef58..119d11f690b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java index 8a11c4c1c922..6c9381c68ca0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java index 89d3c3aa20bb..1eaaf53220cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java index 5325004ad6b3..eef53369c552 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java index f3f98ab894c3..e3edd190fe3a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java index 16c0f6b8889f..7589773b7331 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java index 9e9f4692deb4..a42cd341f2a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/AsyncComputeTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/AsyncComputeTokens.java index de437d61c4c2..a314e51fd077 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/AsyncComputeTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/AsyncComputeTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokens.java index a91adc7cdef5..4594902cb14c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java index cf0538cc5724..7b80abbb730c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java index de3aa8856e1d..8c3e358db800 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/AsyncCountTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/AsyncCountTokens.java index 00d3213056e7..d1fb65ccbe5b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/AsyncCountTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/AsyncCountTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokens.java index b28a59f7bb14..ff8fd3ad8f7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensEndpointnameListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensEndpointnameListvalue.java index 4975a3d0c164..61dce13c3552 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensEndpointnameListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensEndpointnameListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensStringListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensStringListvalue.java index fd4cd77ed323..b7ce4dbe2d08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensStringListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/counttokens/SyncCountTokensStringListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java index a5b7d87694f7..70f14d622055 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetEndpoint.java index 821cc668ac7e..a5c560680599 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java index f40f7fdb06cf..2b216156c033 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java index 8501d279513e..f3539e7acdd7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/AsyncGetLocation.java index b8c14533422b..9aac7681f3b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/SyncGetLocation.java index bf128cc1ee80..5c10cdeb88da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocations.java index 62adcf88283e..f2a18b072fde 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocationsPaged.java index 71e816091464..5eeadca6f303 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/SyncListLocations.java index d7f23cb99bc7..2f3568560c1a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java index f500014f260d..b5c088e71430 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java index 3ad88abb3a45..09efe0c4cbb1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java index 52b792bace7e..dc589347db06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java index 1c271fe12e20..cae8c0e776eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservicesettings/counttokens/SyncCountTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservicesettings/counttokens/SyncCountTokens.java index b0d1fda65fa7..6a35dc9289e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservicesettings/counttokens/SyncCountTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/llmutilityservicesettings/counttokens/SyncCountTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetCredentialsProvider.java index 84ebecb77adf..288763e9f8c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetEndpoint.java index ab2a2c4eb730..b37436ff419b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/AsyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/AsyncFindNeighbors.java index fbbc3ed658f9..232bdb9e916c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/AsyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/AsyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/SyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/SyncFindNeighbors.java index b073ebaa0bf2..378f6509407f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/SyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/findneighbors/SyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/AsyncGetIamPolicy.java index 5a5c3cde344d..5e26a4e0a391 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/SyncGetIamPolicy.java index 97aae2958fe6..34be008415ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/AsyncGetLocation.java index ecc9d79b8790..12daf54f711f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/SyncGetLocation.java index 2321ec924014..23fef8bd7836 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocations.java index dc811f225327..eb7f5603db5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocationsPaged.java index a1798f4a2198..9b2c36f8d687 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/SyncListLocations.java index a6cc0c04b004..08ab63e08e20 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java index a1175814fd3b..09280d5366c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java index dd8a7bae33fb..47603ed2479b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/AsyncSetIamPolicy.java index 3ed919144307..741f93c6c15d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/SyncSetIamPolicy.java index d076e078f012..fea6f7348f47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/AsyncTestIamPermissions.java index d9286dbce46f..ff14ee51ba08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/SyncTestIamPermissions.java index 89e1ff64db10..8c28bdaf88eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservicesettings/findneighbors/SyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservicesettings/findneighbors/SyncFindNeighbors.java index a1dc697b7784..21435b7e4da3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservicesettings/findneighbors/SyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/matchservicesettings/findneighbors/SyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java index 53c0803e1cd1..47f760c7cd3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java index 56c671365090..06a1f722dab7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java index 335fde76e704..ee1428f50b4b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java index 39d534e9334a..bcce41aba56b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/AsyncAddContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/AsyncAddContextChildren.java index 2ee8b9b4a381..2f0337443a98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/AsyncAddContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/AsyncAddContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildren.java index 746736d09315..add60b94c2a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java index 110055d2ca9f..95e35fa0c649 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java index 1130e991613f..4c9b5f79dcfa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java index a796ad0f0aba..19f3fc6ba398 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java index 66113cbf45b8..2f969af5c47a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java index 3101e10b0df6..71da45d8a215 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java index 8b48d28df5f9..69a011e354ba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetCredentialsProvider.java index 54b4610414ff..9d6747a6a137 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetEndpoint.java index fb3c9db4645b..8b33cd0a9a1a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/AsyncCreateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/AsyncCreateArtifact.java index f8af43b9ecd5..46a9393dd8b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/AsyncCreateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/AsyncCreateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifact.java index ca657ba3d241..86ce725af47f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java index 0bc09ed5c665..5ec5127c2c49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java index 43cf3f5be8b6..5ae9e2e7eca2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/AsyncCreateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/AsyncCreateContext.java index 2ad811085a76..51cff0f17072 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/AsyncCreateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/AsyncCreateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContext.java index 0bf4d39663e1..92d6162a03d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java index a8acae418580..d4e3bb5cb8b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextStringContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextStringContextString.java index 8b62b547b2c5..41f4c7699a9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextStringContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createcontext/SyncCreateContextStringContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/AsyncCreateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/AsyncCreateExecution.java index 517a46ea29ea..51c20ee6dca4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/AsyncCreateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/AsyncCreateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecution.java index 1929daaa9d99..88e96f9a213f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java index 134c62161f9e..d89a3362e599 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java index 7337e20cf05a..dfde263e8354 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java index d2c285b84b87..1b98a311376c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java index 00c0f25197c0..5ded4ed5ee89 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java index 7f1124b0b49c..00e977099948 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java index 3f356bc66c9c..182cef85ec6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java index 06774f788852..dc8e6137f11b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java index da54557e0d7f..9d23f86d8920 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java index b894af004bc3..9197db2368db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java index b9393d6e6125..938f762f3055 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java index 3c651d683800..7b90e0998d69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifact.java index 479f30d40f5d..fb54ae7b6f22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java index 86df2cb08c5d..00ad941bb4b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifact.java index 04e22f92b802..08e9e6acd991 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java index 7cc7c37872d8..e59ade7682ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactString.java index 95c7f2ec3a3c..a01f0a26be3a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteartifact/SyncDeleteArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContext.java index 55eaaa3b7a7b..a21bab304b8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContextLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContextLRO.java index eddfc11251d8..b8e706f410ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContextLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/AsyncDeleteContextLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContext.java index 5b2024ef7198..f5f7d107a932 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextContextname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextContextname.java index 920eab299e45..43015be854be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextContextname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextContextname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextString.java index 511a488f35fa..e309aca4541a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletecontext/SyncDeleteContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecution.java index fee03ae0bf93..97f31effb44f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java index 413f897c306d..110e9bf4de36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecution.java index 303f28b8642e..1a389133b1e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java index a15cfc76207c..58c80011dc9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionString.java index d247f1c4a289..21be18def352 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deleteexecution/SyncDeleteExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java index b15319093060..12431b6e997b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java index ab16bd08aee8..116679721e26 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java index 76c40fcd5406..b825a7ab28c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java index 3f6f21399692..9647d470e18c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java index e2ae10d9baa5..1fd3afc420dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/AsyncGetArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/AsyncGetArtifact.java index 2c84cdbfac6b..2cc56087f10f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/AsyncGetArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/AsyncGetArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifact.java index deb2e6a07e1c..497ff9517cdd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactArtifactname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactArtifactname.java index 5e08e3fcb36e..3211606e466a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactArtifactname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactString.java index 4f8bd306657b..20dfd00a4b33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getartifact/SyncGetArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/AsyncGetContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/AsyncGetContext.java index 5f313f9bedc2..4b1014fee55b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/AsyncGetContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/AsyncGetContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContext.java index aedbcde811e5..8f8d124751f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextContextname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextContextname.java index b590c4c23a66..e21ed8f0ec82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextContextname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextContextname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextString.java index 6906b69be13b..7f1be6aee3e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getcontext/SyncGetContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/AsyncGetExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/AsyncGetExecution.java index cf3ae712ba7f..a6d2f2f03c50 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/AsyncGetExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/AsyncGetExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecution.java index 8124337bc915..db3fe8a2d140 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionExecutionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionExecutionname.java index 28d1531ce6d9..ce5cb14ac062 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionExecutionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionExecutionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionString.java index 85833ca9efc5..1a1b3a5a03d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getexecution/SyncGetExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/AsyncGetIamPolicy.java index 93d6ecbd5a46..c3b6d722a7cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/SyncGetIamPolicy.java index 66851bfd5f31..4c789a36c1a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/AsyncGetLocation.java index 32a575c62411..6d124aaf06be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/SyncGetLocation.java index b016116244c3..492a30b8268d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java index fc80ed22755a..99784a481f02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java index e1a6a5e865c1..9c328360e726 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java index d94221718f43..6e461e9110ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java index b0266fd30be7..c99a16893d3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java index c4e5b3e56220..d8bda74f4cc1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStore.java index fdb6e67dfb5c..fa2b2c55037d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java index 048700c4a4f1..347d8e4150b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java index beb489310e04..4f89de7d049e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifacts.java index c890227940d3..caaac5dd1e91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifactsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifactsPaged.java index 338b92cc1265..92c5d981e670 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifactsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/AsyncListArtifactsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifacts.java index e0eded29a870..3a6a459f0a00 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java index 018d1723e9c3..f64129a0c860 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsString.java index 21a6bf8a8d0e..466ee30e95dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listartifacts/SyncListArtifactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContexts.java index 7f56d5e70b02..f0039db05c8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContextsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContextsPaged.java index 05e7761dd247..8aa588c8f07c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContextsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/AsyncListContextsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContexts.java index 232b13dc244b..f45ded55c55d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java index dfe6bf672b5b..fe6c80dd9841 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsString.java index af32dca4970f..b87dfc4fa10a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listcontexts/SyncListContextsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutions.java index 192a4ebd3cc6..c00d629ec8a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutionsPaged.java index 4f91e41752dc..1b1031d88080 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/AsyncListExecutionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutions.java index fecab4f307d0..2f40c6d130bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java index 2d8b7dc8182a..320108ff17f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsString.java index 48767f47e345..c21bfb6ed9f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listexecutions/SyncListExecutionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocations.java index f7544ecd7fb8..a44aab9fc14d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocationsPaged.java index b478b22384c9..476234b98824 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/SyncListLocations.java index f61638b32582..07df57916282 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java index 782c4f0e6579..2bf7ab6b2c17 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java index b2bddede0437..b12c5c714f67 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java index 576421fa04b4..8f875064f3c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java index 926657b0e6fb..8bebce2ebbe9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java index 830837b8d638..8d22c020815c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStores.java index 5b6bef8c8c6c..e5424bcaf4ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java index 819fed8f3670..b22cc3c12c51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStores.java index dc4d0aaffd0f..cb4fb20d388d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java index 4d601e0b2c21..d0b99b730d3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java index e62595c0b039..b4fad3c4fc13 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java index 80ef215d2208..eff193181331 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java index 1a8b6c4a66a8..cfe8798847ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java index 8660cc97f3ae..718b11538766 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java index 7527e5cb1ac8..dc6c1dae45ba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java index cb3bcd54ae5d..83389140082a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContexts.java index ff935ec8622a..0624f1f2a199 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java index 5206e0f91602..6fdda305e18a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContexts.java index 34008d70a168..a6885a8857d0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java index 54c10244715f..cefb0194c60d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsString.java index a23a2c834d75..d84167f503b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgecontexts/SyncPurgeContextsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java index 572b3c9a2f45..347786e2c72a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java index f9214a112a04..054d638ac573 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutions.java index 171275caa243..7dd257490ce5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java index b03622929907..6aabd765b7e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java index ab4962f1880a..08f49ee2b3d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java index ac2cf7853642..e1fc88e8a9b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java index 770b0bc1a199..9d99ea45b578 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java index a7d214e8c651..2160a64628df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java index 1e45d81e9e79..5fb52bf71ade 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java index faba1cb8be4a..a4f581f248f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java index b7b936150646..1d9665ff95e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java index 701558a399b4..ac11537bfa04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java index b710e7c1a878..20500036d26c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java index 02916c9bc885..9c9abcbb5d3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java index 46a6ecb71826..27c03bda7c6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java index dc1472c06a9b..f8b370f08f80 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java index c7e008e22e9f..07cfe3e66200 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java index d3d36412c0d2..0807c488e25c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java index 2ccd50630f36..cc61cddc0d9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java index 5aba48aa8488..a96deebe90a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java index d4b8e7d48420..b912985152b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/AsyncSetIamPolicy.java index 208ae7ef07d7..4999278797df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/SyncSetIamPolicy.java index 07fa1ae88cc4..b6293e9444e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/AsyncTestIamPermissions.java index 8e4044b643f1..2f1fe043cddf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/SyncTestIamPermissions.java index 39795cfe2785..2f154a918486 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/AsyncUpdateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/AsyncUpdateArtifact.java index d6b32db2f61a..90ed144ffb58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/AsyncUpdateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/AsyncUpdateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifact.java index 37c185386a47..9fc8b3bdf54d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java index 01b96ba50da6..4940e170565a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/AsyncUpdateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/AsyncUpdateContext.java index e8dcacc94fb0..5cb5b538e48a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/AsyncUpdateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/AsyncUpdateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContext.java index a28461ec0dad..5ae05429d766 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java index 748b77dd5389..c55dfda06887 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/AsyncUpdateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/AsyncUpdateExecution.java index db7e29bd744c..e91f81ec9639 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/AsyncUpdateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/AsyncUpdateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecution.java index 8f9fd92d051d..4263be9282f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java index 609e86c2688c..19f92caa1c8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java index 888fde0aa285..a9691ed23af3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java index 58be9b315710..3c0c929f2661 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java index 2bf98e2824c7..82834ee4f760 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java index 5d6dd9d9ec15..0758629f1fcb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java index a3e662442360..ef5c6be22984 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java index 0c159cccaf06..fd58423710e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java index ed542f018fee..e52d46966c1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetCredentialsProvider.java index 6ec378f0157d..44fce02c67c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetEndpoint.java index ef02189fde8a..9da7ed1b069f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/AsyncGetIamPolicy.java index f2b2333ec4a2..1ae2f75fd57d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/SyncGetIamPolicy.java index 535f56eb830d..34eefca7d098 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/AsyncGetLocation.java index 15be23ae71bf..7e5682396908 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/SyncGetLocation.java index 48413dfe5c93..fcdaa80de9f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocations.java index ca8c5054036f..bd52d0da8d72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocationsPaged.java index c6029634492b..dcf99fe2fd9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/SyncListLocations.java index f7f5cb6c95b8..c9d70511f023 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java index 7fae70578500..697648c32a5a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java index e05ba878b0ac..0b1a99c9f8ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java index 59e72e0213c8..7294d1173e84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java index e1c7535b386f..8683aa704702 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java index 4ad01857ea65..f35b375b293c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/AsyncSetIamPolicy.java index 6de6d9c279be..b3a49fc91ade 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/SyncSetIamPolicy.java index 213eb14f3f45..0d8e5225047b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/AsyncTestIamPermissions.java index 061ef2a25ab6..a26500e588a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/SyncTestIamPermissions.java index effe5fd7cca6..42ce1d52a9ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java index f1d549b629bd..561827888319 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/getlocation/SyncGetLocation.java index ffcff8a51990..288552708bea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/migrationservicesettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java index 201e41ae6f9d..74e68d14b4c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetEndpoint.java index 0dd3af4b79b5..4aa597fb6c1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeploy.java index e394a93a2f30..177bd9e47e2c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeployLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeployLRO.java index 7334a52bf9f3..9da526d26b9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeployLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/AsyncDeployLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/SyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/SyncDeploy.java index 6fc46e970bbb..a83b3a6fc955 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/SyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/deploy/SyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java index 0a068a57db44..df832a16e41f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java index d2c85f4f85f6..72b4a917e079 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/AsyncGetLocation.java index 650bc21ead47..171f94f74979 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/SyncGetLocation.java index 43726ba8c2ce..e1d02f49f316 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java index c25bfa61c36b..1b59b771d2c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java index aff83b1a5b62..844966567b95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java index 72aa2c2c42ae..634e5c38034c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java index ab5d9eeb8468..afba677354df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocations.java index 8852ddf64296..d4747f6e2bab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocationsPaged.java index 577e7a1cac1c..82882fee7f8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/SyncListLocations.java index c2a1b891c4d0..30d8b8e7386d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java index 96ef1d998e0f..b7252fad82c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java index 1c37032811c7..3d12b24e8249 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java index 59c4e3c9ae17..e704d9e328a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java index b79ddfb881c5..a7d0d8007b50 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/deploy/SyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/deploy/SyncDeploy.java index 48ec3c7232de..a974c494317d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/deploy/SyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/deploy/SyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java index 79a0d16fd7fe..bb57eeaf8b93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java index 9f2b7c16ef5e..2cc24a0c854c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java index 6821c64122a0..3fe99edc3646 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java index 857c72d3bb47..1ab60bc781cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java index 8f9a83443769..0cf60c1c133d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java index 982af8ff77ad..13381f7103af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java index c011c12e55ad..4b181daba4ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java index b855311bdaed..99e55ff6083f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java index c91f4bf349bd..84d02d48aec3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModel.java index c49bacd34a21..412e62aed447 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModelLRO.java index 265c158e21ec..7d619de0b7b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/AsyncCopyModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModel.java index ef22e0192cd8..0badbb19168e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java index 5807fbeee17e..a4ee8f2f94cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameString.java index 39c16a0b9f8d..d91f7875b2b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringModelname.java index 04912bae9d5a..cc69c319deb8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringString.java index b78a05d3fc7f..a3c3298b7b8b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/copymodel/SyncCopyModelStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetCredentialsProvider.java index cb43f764a8e5..a0d29220d049 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetEndpoint.java index af8461d3c959..d67e966d8119 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModel.java index 3b2d567ff508..f8ad22f68476 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModelLRO.java index 8ec7aff78eb7..cdef10644fa6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/AsyncDeleteModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModel.java index 069ab6632134..4e75283a4297 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelModelname.java index 138d39d7f613..a9c5f98be918 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelString.java index c24f21bc32d8..b684fcf5c3e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodel/SyncDeleteModelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java index 44bdfd8ee91a..787a7324a1e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java index ff802f82668f..adf7c30e52db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersion.java index 00811774b267..c04200a682fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java index 702b36eb2595..1a5dc5db0588 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java index d2c58ac815b6..3f06dadd6005 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModel.java index 16f5fd73f430..ef94bdbb96b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModelLRO.java index 7ecb6a1483d5..4ac5c2d902de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/AsyncExportModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModel.java index 2929603b9605..cf8184b2c271 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java index ec8f339da9af..16817bea2a27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java index bb733900be2a..15ba7e6c3255 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/AsyncGetIamPolicy.java index 874a62d550ed..ae8659b8c279 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/SyncGetIamPolicy.java index 5969344e7ebf..e118b2eb5bb6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/AsyncGetLocation.java index b7af95fd19d5..d636862b585a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/SyncGetLocation.java index 2e1fe79bff03..855cf0295ae5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/AsyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/AsyncGetModel.java index 87810659b68c..0209b49a9319 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/AsyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/AsyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModel.java index edf1f188ca64..a350ec8c844b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelModelname.java index ada27cfbab7a..352bd14aca94 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelString.java index 6dfefbc0d15b..f68701588c4d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodel/SyncGetModelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java index 94f78c4950b4..86cd11c572d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java index 43844f01f87d..9347335d0e14 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java index ba5dcc170899..3cf1d0e0b946 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java index 91c9194e4886..b74b6bc965fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java index f3602da52b6a..b8586aa23fca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java index 697db9641ab7..0ca172ae7659 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java index 2e794887d5f6..0559abbf64db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java index 3bc2b49efd80..543efd485977 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java index 668f66a14f0b..e3c5ec7e89f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java index 301a9f075dfe..7fc297730cf4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java index bc250f031d67..6e306ef3b137 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java index bfda0b66a192..a2ea505a2202 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocations.java index 0e17f9c7f686..8da4943d5d43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocationsPaged.java index 4d7b7f62b5ec..572d77f1e61a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/SyncListLocations.java index 8a07c49369c7..e857478e11c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java index dc3c50afc768..81b666b59b04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java index feb09df2b037..20475ff420cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluations.java index 62e58fec71b8..b225e8962099 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java index a52d282ceadf..f45112801a41 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java index cfe828f753ac..fbb8b724d59c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java index 314b53dab83e..324404396bf6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java index 5cf641ed1d57..5c3c070a7d95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java index 9a3cc9b7d024..18fbf15d1a1e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java index e4cd523efaf6..ceed1b14cf3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java index f3ae362fb932..129890c5d1dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModels.java index 76c4cb9fb7b9..0ea1fa75b27e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModelsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModelsPaged.java index 766218019a4e..971b8b07ed42 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModelsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/AsyncListModelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModels.java index 580e841566fd..47f090879dc0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsLocationname.java index 7b01735bdd17..3b4ffc8e800e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsString.java index c92a57dd5983..ce4f958cfaca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodels/SyncListModelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java index e3f1f0f4c106..1232f2454b4b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java index 0d047325474d..8cf571633dd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java index f9a010a93ff5..95a47c7ff243 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java index bea134156ea7..36f943450825 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java index b5b86eda5842..e0bd9ff52fbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersions.java index c71deba57d16..0f161e783b93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java index 79bb7fd2476d..562fb40d13ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersions.java index 62935944f918..835d5053d15d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsModelname.java index f594031fb339..484d1c13ec9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsString.java index a46c3667af04..25b0750151d1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/listmodelversions/SyncListModelVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java index ebd28921dd3b..89e46a1248a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java index 940b385f5869..020e2c3b37f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java index 8de50870f864..4d3d2a763ebf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java index 80befc0ca6f3..c4a71b29b0ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/AsyncSetIamPolicy.java index 0582be019a60..6940376693a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/SyncSetIamPolicy.java index 429ab07db974..aa1e05caa4e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/AsyncTestIamPermissions.java index 2371850f742f..dac6f2d16a41 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/SyncTestIamPermissions.java index 2a0c9e33a1c9..69b2837bcef8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java index 142378e1adeb..9267ae1d4b8f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java index a15790fef5cf..91b76b92917e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java index 5433207a11e5..5a2cb444bcf7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java index f74382fd0248..75525639e26e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java index 75a00d45cb54..da778b5f5ee2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/AsyncUpdateModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/AsyncUpdateModel.java index 81527a7eaa4a..e0857d72004d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/AsyncUpdateModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/AsyncUpdateModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModel.java index b4bd105586ed..1d51d9241670 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java index a7b84a8a1a77..9681052c22c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModel.java index 37fedfde2834..526f8e49f6ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModelLRO.java index b02f373543a2..b5340471a7b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/AsyncUploadModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModel.java index 7950a02b2947..824e4337deb8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java index bb5f6d6594be..85d10a336bd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelStringModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelStringModel.java index 9d8234b7935b..dc1587d775de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelStringModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservice/uploadmodel/SyncUploadModelStringModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/getmodel/SyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/getmodel/SyncGetModel.java index 9cf093a1ac29..2e0ca0f56bef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/getmodel/SyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/getmodel/SyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/uploadmodel/SyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/uploadmodel/SyncUploadModel.java index 8e6c9cb41cd7..e9a76caec26b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/uploadmodel/SyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/modelservicesettings/uploadmodel/SyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java index e8a7c4bbdf34..c6f9125daf6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java index fe2ff8ba8e18..20f9d66eb516 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java index 0952c622fb6b..4c27fc85186c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java index 43b4ea86c889..3c93e0df32c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java index 4cbecdcca42c..2e12f003b993 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java index 26391073a303..d38fb2c0fa96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java index 10aed38326ba..93f46645c59b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetCredentialsProvider.java index 21d43b33c028..dc9c081568ba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetEndpoint.java index 30d7a31f7f26..eb74afdc76e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java index b5572d6db64f..825a59f2e2f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java index ed2703d3628c..e0c642b233c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java index bbcd4147b6bc..6ceb88c03445 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java index 7fe127512c11..905d7b17c93c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java index db0683f4c133..058081b7c41e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java index df9754dffe1e..feb60ac306fc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java index f0555ae4959c..0bad2a761487 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java index d78239f26d50..3938223bf485 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java index 5aab85fda481..5b51e8148d2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java index 81e822e8c782..f968ea09aac0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java index 57107845f5b2..a1e70f6fd31e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java index feb0347e5785..5e2efd67bf78 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java index 11b50f93f0c4..fd22f9799f8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java index dc10b8682235..d4881751ed01 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java index ef0c8936bb16..f7f20768c1aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java index 5d1672bf033e..60f02cef0d63 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java index 396945ef37fd..0e2c7d6ac8bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java index 6a3318f74e8a..c0d9c933c5fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java index 2f892ca773bf..17a1401c2447 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java index fd5efebdbd6a..c469a9541209 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java index 1ff6183497cd..a13bcc3fc364 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java index 794680cb5b8e..1a5ced71540f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java index 2c62058a7454..461ecfbe38be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java index b826f4ceee5a..b19801343caf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java index 55fe5d8127e9..3a7836321e09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/AsyncGetIamPolicy.java index 14617b366a99..8838cc68e414 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/SyncGetIamPolicy.java index 82f7ba558569..fec974b6b9b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/AsyncGetLocation.java index 883db2c6c986..cff5235e2a02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/SyncGetLocation.java index 5043f55ef794..c50a2151b11e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java index 6f541b15de43..53669a5ee8e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java index 90186e6105de..00ca1ce19b3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java index c7c8a48b2321..3b90871f2cd6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java index 021e0b5f64a1..884d4d2f5b2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java index f349a8880a61..4cdccd530d06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java index 7b18d7203fb5..2a050fafb169 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java index 422afa8cd5e3..84bbf9a771ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java index 8f121bcbe9c5..fd538bf822ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java index 1f4a8a5a516c..59d1557d5f91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java index 010a6a7b4142..fc47146adee6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java index ac78497d620d..787c66d2f645 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java index 1790080541c1..7761bada334e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocations.java index ade6f9a7d446..048b6d35a07c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocationsPaged.java index 6bd98beaad6f..7a8f9580d96d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/SyncListLocations.java index 84fb12d11e13..538cab312835 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java index 46d09aa5cd11..9d4171ce7b75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java index 6894be685650..cae654cab17d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java index 6718f7da3afc..3d923147a28c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java index cf197a20a99f..fe65bdc080c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java index 7c2b73f8cac1..914e7b34a3ba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java index a0b09edead79..6a9959283a67 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java index 1f6258897547..f02952d08744 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java index accf1e36012e..60e4e441df53 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java index 82df586c8839..b974ced7a5c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java index cb2848f2e089..9e83d1a5835f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java index 3d19318786ab..e54989951d6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java index 5818fa7a943c..81f3073be1cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java index 909fa77fb584..2657ac80c182 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java index 1f921bdbd743..4f6549c320ae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java index 7d1c589ae156..08a578a5d7d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/AsyncSetIamPolicy.java index 001d74f46f8d..3ff8e1b770c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/SyncSetIamPolicy.java index 177c52ca80d2..8ee9ebd43672 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java index c1337a14ca3d..7f1454b9c60c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java index ed4418fbbe53..4a2cc618297d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java index a8ea39517732..efb83bb619f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java index a87e5ff60cc2..39991c65268f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java index c2d0af883e20..fc165346f7f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java index 8b0ca78309da..d221681d704b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java index d275cfeee14b..899b9eb09551 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java index 0e1669f96cf3..6482c873fbf4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java index 0fc79505f9c3..f79acf3ced2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java index 5e3a31b4504a..0bd39426ac2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/AsyncTestIamPermissions.java index 98187f51dfba..936bd946b141 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/SyncTestIamPermissions.java index 411898dd05fc..e919144bd56e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java index 52f4e7cf7b82..4c5cbd67c52a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java index 8d9fbcf142cf..e5535f22dccf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java index 49e18b2dc493..df62699126b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java index bd66411035a7..0cfddab99fce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java index 26a8e3cbe8ae..33432ac3e02e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java index 141dcd69160e..0d63e9f1428d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java index ef91bc145d01..eb819615f441 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java index 3704a680b46c..6d68dd1b1dfb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java index c444facb560f..3b4dfb24ecd1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java index a06303171cd3..59f91e0bbc95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java index 579f9469b44c..e04b220a4057 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetEndpoint.java index 12bc6fc93f05..d5f3545654a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java index f7ac28860c6b..e7693ce7ac46 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java index c57b767f46be..570e023754ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java index c5d303b10db1..2b5135952d74 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java index bfe75b43d619..7e95bb87fa9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java index 9335cbd801e2..d0e4175280bd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java index 825c1d39206d..dd58d7addcdf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java index 86af0b2269fb..ed933b1ab845 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java index d24f90a5be8d..133b088b3436 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java index 1ccb3a801d27..acb18345022a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java index 784fdc98e475..6107ab5e600e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java index f113ca4facfd..d6151531a120 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java index 2e028366cfe6..09c2081508f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/AsyncGetLocation.java index c39d36dce7f9..4ec6719fc46a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/SyncGetLocation.java index 436b6ed89fea..0e2d27eb3b3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java index f939452e70c2..0c7c46e1e9f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java index 3d57b96f813d..757ceb8fdc14 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java index a3824d8f6b1f..3e3faa0a6010 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java index f99573cb75cd..810503fe3865 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocations.java index 6775fed5efc6..089e39304151 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java index be69c28be99b..0b373414750b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/SyncListLocations.java index d0cde3579f5d..202fa94d1a79 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java index dc11bf317f14..796750bb1de4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java index 8822488474e9..efe17b7e74cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java index fcb13eb35190..5a65552177da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java index 012a84094337..131582fc71a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java index 225f4595e154..19ecd75f775b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java index 29b15faddaa4..2922a40a01e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java index fd5a4438eefe..48d24840ce9a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java index f69d272ef3b4..a68b25d6bff2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java index a83048ea2799..65682123ac8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java index ab16ce337aa6..833fd8a4c9c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java index 8dde811dde78..8a6c0aa89c5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java index d386eda5003d..3c2f138ed5e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java index 2492549031a7..a458814689a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java index 75e4493443d5..6ee6f7221d06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java index 743ad6d55bd4..53eee02f2674 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java index ecb9573e713f..6c89ddb77820 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java index feb637a114db..13cfd7bd5a6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java index b66b62bbe04a..eeccfbe51b1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java index 5e98da23ec3f..6ecd4d47e3cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java index 5f9aae186810..04f34aa42a6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java index d389a57b23ae..160e24a65e3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java index 9bf7f11f2b8f..5730cc31cf59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java index b1b899bc1f78..0a9c02162dc6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java index 9a0fba37b3fc..677416a3caa9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java index 9de10d67bfb2..ad3ccc509b80 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java index de1af5f31555..990b15342b52 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java index 5e9f9c29585c..239dfbafbed0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java index 1ef20ad324d1..c5d61c275d85 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java index ae30b6196005..2a3e4d55d467 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java index 0238ca4a2cc9..c2b755e851ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java index 6c900310b2d1..efb229078631 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java index 2c95b0d2f831..3dcf14d8a718 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java index 07a494f8feb3..04bb9df895cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java index 922d50030b79..25705d459630 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java index 75b66875d132..c4211af3b984 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java index ae1a45efa646..d985310fec2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java index 33c8e8a281c4..f0bc68468203 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java index 7112cfb6e1df..519283afdae2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetCredentialsProvider.java index 750eda965a4c..201a396df763 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetEndpoint.java index 2a531f59a1b4..25f4b3670b88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java index c1d6f162a88d..fc6486f6e6d1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java index 1f3542b9bcf4..ad89a157a714 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java index 07a2b80d64b0..6a852d4f492f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java index 10ae02aca0f1..f3f386b75e92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java index 782ffa826e6d..36fb77d7213d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java index a7e174dfd2f2..d587a26ca2e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java index 21c94b1bbde6..0df060accf4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java index 74fced7d6d06..d1f7b2736786 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java index 7170bb793ee8..a64096c1c9d0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java index 6ee22d3e8dcb..1cb1378bdd79 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java index 307e31fc0524..b0a1baba680d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java index 3a69cddcf1a8..2f8aa7d922dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java index ec6f2ab391f0..d9f6d41187a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java index 3f9755caaffd..ffaa7fda8c4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java index 9bfc6971d90d..ff5eb738f385 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java index 9e7d1d97343e..e74d04eb4a4d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java index 80221e1165c5..0cf6fcf29da2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java index 9f62fb933a08..8572406a869c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java index d2f5567ebf0c..cc1af4dfa56f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/SyncGetIamPolicy.java index 6069d4788799..0b495aa548cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/AsyncGetLocation.java index ea2429e22049..c733959fea31 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/SyncGetLocation.java index bcca3c44ea24..59ea4a4f2c60 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java index 11793b847025..fe8ef3b282e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java index ce9a63258440..b8f6724367ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java index 7427bcc988d4..87c93af8dd27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java index 0d7fb3f19327..b632a4ba674f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java index c492eea90f71..42adf61c0b08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java index 61aa5c619d4d..62d7c0a9b297 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java index 42c17007071a..01e2a2f1ab56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java index f63172bb7664..a42be4685cb8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocations.java index 9ef6b3395512..52d085fab983 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocationsPaged.java index 4d3f8e2916fa..28029f4b0eee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/SyncListLocations.java index cea663ea93f1..4f9adf11ba8b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java index db7ae239eecb..c15e0204d07c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java index adea4b5cd324..7283ec09db39 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java index 9bc59eb32240..260cc8c2285f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java index 6380121bd7af..b6657fe5fc9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java index 114f57043bb2..782d9f88302a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java index 5cc988f40a6c..7884a1aa37fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java index 1620bc148bc7..f0f5c5da3036 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java index f8cdb37a2231..5fff7e2444ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java index c306d25b9ea7..9748d298714e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java index c473e710f865..974d19ecf7f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java index fda46ea27f01..366c4aa8a44c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/SyncSetIamPolicy.java index 4abf489e45b0..a6c94ec84dd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java index 7fb921f361bd..8a9f0b0141df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/SyncTestIamPermissions.java index 1219247e18c0..d46164db25e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java index cddb81fef794..9c97281ffe27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java index 7cba4a154aec..aee08d72ac22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetCredentialsProvider.java index 43d00f7cf582..0317fa8244d0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetEndpoint.java index c44ebe34945b..132713430504 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/AsyncDirectPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/AsyncDirectPredict.java index 341d4d67bf40..e5030981f64f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/AsyncDirectPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/AsyncDirectPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/SyncDirectPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/SyncDirectPredict.java index bea84c7078ee..1760ba8fe699 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/SyncDirectPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directpredict/SyncDirectPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/AsyncDirectRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/AsyncDirectRawPredict.java index b36b3af62ea5..1efc1d562233 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/AsyncDirectRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/AsyncDirectRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/SyncDirectRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/SyncDirectRawPredict.java index 5d2bb0b6c799..cc812ce27704 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/SyncDirectRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/directrawpredict/SyncDirectRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/AsyncEmbedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/AsyncEmbedContent.java index e6ad673abd60..b9c1c3648415 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/AsyncEmbedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/AsyncEmbedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContent.java index 139a14ff0f0c..b18ef4372c12 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java index 6898d07e9f1c..40ea209cfcbb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentStringContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentStringContent.java index d42564f6edd0..e12daec7d2ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentStringContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/embedcontent/SyncEmbedContentStringContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/AsyncExplain.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/AsyncExplain.java index ceef6bc60832..48062fc4b155 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/AsyncExplain.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/AsyncExplain.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplain.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplain.java index aab32b5abe0a..a19027e730e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplain.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplain.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java index d526402b6ede..9428c414f7fc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainStringListvalueValueString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainStringListvalueValueString.java index 8d383d33efb6..ea7cd3d7c40b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainStringListvalueValueString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/explain/SyncExplainStringListvalueValueString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/AsyncGenerateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/AsyncGenerateContent.java index c4af93d9a94f..5dd9b7875620 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/AsyncGenerateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/AsyncGenerateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContent.java index fb06da1b4f3d..70b052c8c585 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java index d4f8e134c370..9940cb599d91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/AsyncGetIamPolicy.java index 7c2d08f6e54e..1cce9a6ffede 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/SyncGetIamPolicy.java index 6e188910a434..2e9ceb2c2bc8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/AsyncGetLocation.java index 541b88925585..6905cd9c55cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/SyncGetLocation.java index 5f7664be3d16..96c3255dd395 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocations.java index 2841fb0a1ca3..d3dba5ef0614 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocationsPaged.java index 0b6718bcfab4..4f5078ec5995 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/SyncListLocations.java index f684737c630e..92f71ceb2f40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/AsyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/AsyncPredict.java index 1df20669aab4..e5473cc3abeb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/AsyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/AsyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredict.java index 0a6d1738ba58..e544579a2d76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java index 37dc6510c959..a2bc8a7451a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictStringListvalueValue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictStringListvalueValue.java index 6a094c60cae6..574db0fe1130 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictStringListvalueValue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/predict/SyncPredictStringListvalueValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/AsyncRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/AsyncRawPredict.java index b6b77f2fa8c1..d096d61bd8d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/AsyncRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/AsyncRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredict.java index 45541d891205..ef977f96c503 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java index 225febe785c2..ae6a03255606 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java index 4eb368a57d04..1ad544c1a81c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java index 4d077d484cfd..811d8b38d93a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/AsyncSetIamPolicy.java index 30db5c29336c..bdfa5d7776a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/SyncSetIamPolicy.java index 6a7dc0bcd03c..0df46b1e2c84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java index 9f57eeaeb400..75092de84724 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java index bc685df35fc3..30fc64e3e416 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java index 190b4f385a12..7350f4964d2c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingpredict/AsyncStreamingPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingpredict/AsyncStreamingPredict.java index b0314f543ca1..8f9da8a147e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingpredict/AsyncStreamingPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingpredict/AsyncStreamingPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java index 893baa3f4302..da3374173cc3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java index cfe2018eea36..e8cbb8c18a55 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/AsyncTestIamPermissions.java index 60585d42070c..a6e73648d512 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/SyncTestIamPermissions.java index 787bbabaa325..e7f6b4fffbe9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservicesettings/predict/SyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservicesettings/predict/SyncPredict.java index 6faa0aa6ac9b..71f31e5dd713 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservicesettings/predict/SyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/predictionservicesettings/predict/SyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java index 0897eb4efd08..137b72768770 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java index ad9dd3edb2ab..d41f285ff794 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java index 57cd11f1fa7b..bb367750c702 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java index 7455e41d75c1..d4a8c123a5f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java index fe943fa3210a..c9e9d19228d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java index 431987f57919..dced083210a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java index 92c59a8b504c..6d97b2e3dcd5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java index 0575f643084d..b3d5a5b26f6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/SyncListLocations.java index 38f79db2ab18..fdf2b3a4624f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java index 6c735812700f..d9a0b1bcdbdb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java index 952bf2fdd895..94053a624f06 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java index a3883f7b1944..601c4254fcd9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java index 59b84c52b3d2..0ed523fdba69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java index 40abadad4be5..13d6de6de6e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java index b73dcfaf656e..38d061a2af74 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java index 3074a3db11dc..806c563633e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java index fe54e439ed93..581010efc635 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java index 6f5a8b8cbf8e..d2fb921d7638 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetEndpoint.java index cc3938bbdf48..54ceaf8407e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java index 4c79dc92e807..a45b5c41d4d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java index 4cadd47109f1..1b03c587a66c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java index 18416837a5dd..73e78e910347 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java index 098e0af8c745..be7cf01055cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java index f0339246ddcc..b9b07f3e0a41 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java index 5dc004b43e0c..1df427e8a67d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java index c0dc762db409..5576381212e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java index c3cf5e9b61cb..67977e8c866b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java index c11e5c5f05e0..f5884e00dd4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java index c02022836154..33491022818d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java index f1af92e657a9..4e70c8777f27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java index 851d7ad027c1..1fc78cda64dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/AsyncGetLocation.java index f55d5aec052b..92869828e85b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/SyncGetLocation.java index e03da541316a..3bd299880da0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java index 4211620c7655..07619737ca47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java index bc5adb107a0e..8c058f9b79af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java index 7e0d80c11281..5630b13964c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java index c1f8ead4474e..1491c68b6ec0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocations.java index 85e934b66bbe..31c435d96632 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java index bec08d879b0e..49877f251ccb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/SyncListLocations.java index 290b4a6aded6..25727f0902e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java index 90693c265179..2f7108d13d86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java index 7df4ab1475c1..68426ca0f529 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java index aca1bdd4e001..762c12a03d68 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java index 0851a2381d4c..e79eafad7773 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java index b4d05c2794eb..8a34d00559af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java index 75b761485116..3120a1a54821 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java index 216846a69477..f124d0e76e7e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java index ae820f6aed15..fe42e101b315 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java index 8ca30e3132d2..33ede4cc4da9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java index bfd3a8326f72..4ce198e33f11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java index ef0730a909f6..4c5b97307c10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java index b32828d54a81..dbf04a5bf344 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java index 9b709c328037..7352f5ebafa7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java index 8edd90217ef7..60017d032522 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java index 1a27687d3fd6..8acb84c42c63 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetCredentialsProvider.java index d244d0e4c989..c8b9b59509b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetEndpoint.java index dc8ad1766a32..a2209bb677ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/AsyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/AsyncCreateSchedule.java index 039dff238f12..28e8fd362cf9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/AsyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/AsyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateSchedule.java index 15f4fcff5034..0527b39aed83 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java index e545db7860d7..a2e9563785ba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java index 0167af137b11..bf0045a96dbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java index 18f1724c5537..9912780a6988 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java index aa1484ea9178..54f474ae58fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteSchedule.java index a5cedf400943..27a3c10ba130 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java index 65ba303a5606..6a8aa919ba5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java index 14fb2ac18155..416024470f71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java index 7d0c1a856a51..a4154ee1b0ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/SyncGetIamPolicy.java index 3a58069c2bba..99a5663cbe5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/AsyncGetLocation.java index e0c8082c500a..4147b3f97051 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/SyncGetLocation.java index 6ba54743a52e..42e00c450df1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/AsyncGetSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/AsyncGetSchedule.java index eefb3ab0da48..d708b49316bd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/AsyncGetSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/AsyncGetSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetSchedule.java index 64388c62951b..b515c3ece7a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java index 51b0f30ca3ce..ffdccf170c1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleString.java index 1065b459ed62..8a3ae0284b72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/getschedule/SyncGetScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocations.java index abf38c9b79d3..8e8c2bc39872 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocationsPaged.java index 91f352cbb636..2bb974d3f7b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/SyncListLocations.java index 9f4851f8fd74..878ceea9c5aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedules.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedules.java index ce088398ee07..ea84230585b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedules.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedulesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedulesPaged.java index 88b60752e0f6..e4d4377a74e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedulesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/AsyncListSchedulesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedules.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedules.java index b10ad610a57e..ab291b6de14e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedules.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesLocationname.java index 73f1c8d23282..df7e7d74720d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesString.java index 263c2ef1947b..e0e931266dff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/listschedules/SyncListSchedulesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/AsyncPauseSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/AsyncPauseSchedule.java index 9a0fd9e00759..bb39b9c71139 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/AsyncPauseSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/AsyncPauseSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseSchedule.java index 45dad2718a0d..20f0be84d86b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java index 120e653ec954..6eb093959cdf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleString.java index dde7f961f91a..c024c3775e45 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/pauseschedule/SyncPauseScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/AsyncResumeSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/AsyncResumeSchedule.java index 18619b80db2c..ec8e2fc21b7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/AsyncResumeSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/AsyncResumeSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeSchedule.java index a114a499d827..5df19926848a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java index 7840257acc72..0a9a3fd68d75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java index 7867b7219038..bcf9c914aea5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleString.java index 76a3c6984838..825d8196e7f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java index cdf290aca807..a1034e616a02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java index f78fac37c957..b11b49ddedb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/SyncSetIamPolicy.java index dab2652ad05c..ff8df69e7ee3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java index 90e4fecb01aa..2cc9d8e40c97 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/SyncTestIamPermissions.java index 7f07cb25c9b3..11f51d5db2f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/AsyncUpdateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/AsyncUpdateSchedule.java index 5f75025f44a6..f267d39e71f0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/AsyncUpdateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/AsyncUpdateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateSchedule.java index a80d7cb4bb0a..8af7a094e7b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java index 5820442ccc31..e9d491e53f44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/createschedule/SyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/createschedule/SyncCreateSchedule.java index 9f7d96eadfa2..16f6eda646d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/createschedule/SyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/createschedule/SyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java index 8a62cdf9834c..671bc9cd168e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java index 6e48b556a1a6..07a9b3f27d98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetEndpoint.java index d1a89522657c..1e2224662263 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java index 05cf626c655e..dca75dcb07e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java index bb0b0fcfdcea..67d39d1a75dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java index f3b51828e2ac..25d51db56da0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java index 062ac8434c82..a65e8ea9340d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java index ed5ccc09fa58..61bdb0bbed2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java index 0ace0c5234cc..99d2a8b11615 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java index ab1e5ac3e0ec..e80d2c88e389 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java index 7f9fd9caccb1..d9271e108e8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java index fcaa42280666..5856c1f1aeec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java index 776ae7b2581e..175f42387821 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java index 0b571d491617..e12d87787326 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java index fdad47a57ee7..b6f1323f97f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/AsyncGetLocation.java index ed24a5505e5d..f33693b6c3bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/SyncGetLocation.java index c9c5a7ac97c7..935f88546b29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java index 595a6d16de40..5017bb0124f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java index 26d4e83c816a..516dafbe437b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java index a232c4954187..d6caf98b589b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java index 6fdaf88bf2b1..554cad0761e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocations.java index bff670f01350..675fac423d88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java index 79f6cf5a4d70..80134c1a2220 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/SyncListLocations.java index 32f2d5c7f1f8..4c6db9ff3d55 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java index 9c0620176353..1b72cde5f4b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java index 274fe2db0291..b8540d139db3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java index 036d3e8889b0..b6e745021fbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java index 0eae6d34ce35..5d2bc2e74c76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java index c94e14365938..56de3b2483fc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java index a12fc0a59e0d..e3429b684cc6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java index 7c929cbc3eae..c1ed9b83a45e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java index ad2387f9aa65..fd5413ed0c55 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java index 94677c462194..55fe9548c4c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java index 9f13e611c223..cd15af0d4828 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java index 3ed9d1ffee13..e8c9d2ab17bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java index 143675ceb577..8055c520f123 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java index 13a06f32e6bf..8372e62cdabc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java index 5dc747e9d360..3825fd702136 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java index 36b0f712eeeb..02e4f46f19d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datafoundryservicestubsettings/generatesyntheticdata/SyncGenerateSyntheticData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datafoundryservicestubsettings/generatesyntheticdata/SyncGenerateSyntheticData.java index bc2d4390fb5a..7a7b628df492 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datafoundryservicestubsettings/generatesyntheticdata/SyncGenerateSyntheticData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datafoundryservicestubsettings/generatesyntheticdata/SyncGenerateSyntheticData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java index 5bcd177565f4..418bc3942168 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java index d5b0c6a65b60..a3ec0a290870 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java index 3a96b346712e..3251a805b4b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java index 7fa9153d9c40..9ab571c7341d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java index af5babdeb4bc..109539b4a832 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java index 66338d70221a..2f89bac08006 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java index 449a4d4624dc..eb2bf91cfcd1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java index 1f1c569dce7c..294e4a5078d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java index bb7f0b1f5154..5df097694cdd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java index e397461985a5..6b53f1b86afa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java index 20129b8f3936..39444cf0c7d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java index 0916176989d9..14d3887409f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java index e60924a64531..eb9aa0f9f363 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java index f3b8101af030..ec5d8c035730 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java index 4df1f038772c..ef5d201c5a46 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java index 0c068659af9e..50cc838154ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java index 03f34044c823..34c1ab1468f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java index e1ff4128dc3e..ef5f271e64de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java index c344a6e08aca..acc9e9913fb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java index 7e63c6220e9a..b9f567f6c4c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java index 1cd7fe9d3648..e39cf3ac3dc6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/getindex/SyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/getindex/SyncGetIndex.java index 56730407c7cd..35c61efc9475 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/getindex/SyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/indexservicestubsettings/getindex/SyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java index 463b1da01871..c114eb5191e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java index 4f14488c593f..a4ad788a5327 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/llmutilityservicestubsettings/counttokens/SyncCountTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/llmutilityservicestubsettings/counttokens/SyncCountTokens.java index 768fc676811d..f1a1d886cc35 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/llmutilityservicestubsettings/counttokens/SyncCountTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/llmutilityservicestubsettings/counttokens/SyncCountTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java index 4a56adb41cb3..4b7f0e57ef8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java index 62d75d987ce4..150c8e2715b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java index 44d97e9fe002..e5d6e12b67dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java index 75ca8918af61..a72a7d381521 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java index e13aa5721791..87888a8438cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java index 3e77c28dbbb8..e939ed396939 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java index 0f4ddc21a3ac..0d620e749be4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/getmodel/SyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/getmodel/SyncGetModel.java index 3d33822f3c5b..dbdfc52d068f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/getmodel/SyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/getmodel/SyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java index e6b52780a194..67f4faa96b42 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java index c63093b7e638..d053786365a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java index b2bccc72bde4..5e14efc6d5a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java index f956a107b4ae..33d47f9aba16 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java index 34b124a560e4..4df8ec70a84f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java index f2fa775283f1..130efaf0dd1b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java index 355a2640396c..c03182f2cb6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/predictionservicestubsettings/predict/SyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/predictionservicestubsettings/predict/SyncPredict.java index e7334a84ccf9..a561d89e2657 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/predictionservicestubsettings/predict/SyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/predictionservicestubsettings/predict/SyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java index f34e25ab9cbc..7817cae9b17d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java index 01206de979b2..db3c07f17986 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java index 89b20be744f7..a4ea896717be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java index 66156ee97850..153c690ec04f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java index 6af5e1890b66..284d41f2ebe7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java index 4a0120b1bed9..5c3167b43ce0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java index 5c8bf4d9c3b2..82204ddb3b49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java index 0c277990dfdf..ee678f55fad7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java index 8e2d12387657..7035dc939f54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java index 9d16b2c998b9..feb08eeecaa0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java index 4ca85ddc7825..23792ecbacde 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java index ec1c1bf4dc1f..3aba24a33546 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java index c46652bb75fc..81cf2a59e9a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java index 94aa0683632d..c890788b07bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java index 8eb0aea7355a..f27255dc754f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java index 131f516c1356..9a320d8233e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java index 1b6adc503788..c06ac2ecce93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java index 310d1d5560f8..a3433158fa2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java index fa18fad566f5..8c4ba07c6c3d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java index 16d548e9115c..ddda6f265040 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java index a092290d2298..9601d2a78e7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java index 356f40d130e2..1b09984c7b1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java index 6db387448df0..0944fcfcccae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java index 3e03dcf93397..a867643e7e2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java index b46c1fd04028..c386f672cc8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java index ea756f7bc872..dd1bf33b4334 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java index a54aa4cb7589..c9eeaccca1c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetEndpoint.java index a21004f8f9b2..ac721c9c55d9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java index 59d96107e95d..77638eeef215 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java index 8fbb671da8b7..6feff25c998b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java index c472693a1a4e..a626ded2cf4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java index b66e835e4217..8939e9cb2404 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java index 59357c58c885..30382dc350e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java index 3341eae44b26..3bfd64c2997e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java index b3a8adcbdeb5..acb914a45a50 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java index 67736d3e3e05..b1e2a1f92f58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java index bc552534afb0..a3d5ef23bef8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java index 41fb72fd176a..1f951d4cace6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java index 633a29cd29f9..28e6e1dc634a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java index d79c740019d8..652250db4e0f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java index e8d6c417e236..59bf36a613ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java index 37c8dc7ce508..153e2765ca6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java index 8a1ae178362e..11d327613354 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java index 8ed524de2f5e..6e9faa993ec6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java index 7ae39d6022a3..879bde98d683 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java index 246f35bac879..0b3668fd7f60 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java index bfec3541fcf0..90d73b1dc6cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java index 4f76fde4878f..dda396e17729 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java index 0db1360d7d80..db9978f7fbfb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java index 3f7c592da0dc..1717ad4947f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java index 1adf4c7a39bf..96886435a0f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java index 9ba94bec9d58..0d8bb95ce789 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java index b9b851cc4324..6cefc3b54050 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java index 404230b6e7d8..bbd37fc868ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java index 542412304780..81943f490d2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java index eb2590637fa1..06e9ea0a8f6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java index 32e820c70eff..da2f6267a154 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java index a4a8216eb137..30d00c9301f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java index e9ea75555602..e7ed672848ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java index 346e6ce2d7d9..32129f806dea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java index 2d90563ff4a0..14af6863f51a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java index c92e385d4fe9..fc4c2857f10f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java index 6e40177ba641..b777ba2c960f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java index 9fd40561fc45..359cdf001eb1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java index 5d14e7aa5d09..44fd6961a64f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java index 1b368363455a..9176690f7b41 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java index 88f5fb7661fc..d8c2fe6e7525 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java index ca7bca49f023..ac8606827768 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java index e42c6bd2bc45..90f5c556648e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java index a9e7a6a0b672..832e1c9c2972 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java index cb8dbe5abc55..78283ec23e63 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java index 39b513623675..d533a710cf61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/AsyncGetLocation.java index db00d851b2f1..5b0b9d48b916 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/SyncGetLocation.java index 33641053b66c..7fefccc51109 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java index 27eb697a9bed..bdb30d1905fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboard.java index ae9c684cf4c3..8d4f4bc57508 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java index 70ebe50488bf..1766b1168cbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java index 8f7d2419fab5..c6a27a8b3036 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java index 97e29b49672d..67981e77c129 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java index dfd309f568ca..52e35569e74a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java index ff91cef4081b..e25218101963 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java index 87cce6804fc7..0b033c6c9961 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java index 1970b6786216..aa7639432bcf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java index 6a6ed7d76d9e..1d5cc8fd4964 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java index 0fc5356deea8..fd1b774f872b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java index 46ecf94f72b2..090618002293 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java index 95cd25f36e1c..e32cc9b6c57a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java index 5dd0845a037b..b72fa8d33b5a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java index 706d842db816..9b1ee185cbd6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java index 856d2bb0712f..12e5cbd5e311 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocations.java index fe3917e31ac9..78f9993ac83e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocationsPaged.java index 1e27f8a11312..9a943cd0de22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/SyncListLocations.java index 561d56150226..072976b64fa5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java index 5b1d266438e2..ca35fdad6c44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java index 5b95e3da3e14..ed00a0c67814 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java index 46ed8abe0489..95d6beaa3396 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java index a2fbfc497e42..815cf16be0e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java index 57b75b8aeb6d..85b2d7741a53 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java index c7a9d035248f..5d7c385c72e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java index 1de06046be27..b8a11b8a3a72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java index 57c3ed3c6671..b41325693e10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java index 5a97b837b1ac..2bb880e23636 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java index c3cf45eac856..adf5451235b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboards.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboards.java index 567c2edd4375..2e01e498d42e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboards.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboards.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java index bf60aa3a77c7..914849a9cc4d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboards.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboards.java index ed9e8018255a..454dbaa9bb3d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboards.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboards.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java index 69ba8831ac2d..64f897cd3864 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java index d91081f4ac2c..d6938d78cc8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java index f5444069ddb7..2511295b245c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java index 62ed57f582bd..c447b8c456ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java index 304cda19643a..5b56906e0ece 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java index d60342b2e5d2..fe5cb9d3efbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java index e969eb722675..c44c40920125 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java index 686adab458e0..6929049ac174 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java index 7ae05250f510..47befec79562 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java index d7d3ec2f1db3..5e95b7de7a82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java index 0bee10515b22..062eab572a8f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java index 10dea62515d9..6b6a327075c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java index a7e3bdebf4d8..cee0f382bdff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java index 59f783c88bd6..00ea63e6fa0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java index a2ce1720d82c..c24e32b3fa93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java index 64a6d9857fb7..4a6336ed6912 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java index 52854669cf9e..a681bfeba9d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java index d995e6346a38..f473f85a4ff0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java index eb981b8c333b..94f04f1cd1b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java index 20ff522b953b..f79ea9ddfcd1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java index 1735707ed4ab..f28fdaab939f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java index 5aa22f54cf69..0aa63b3f9e56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java index 11f3347fee1c..2974bf420de7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java index 7b8d91358b69..511690b4b95f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java index eb3ff4cb24af..461324cc609e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java index 874ffbf8e3fa..2d9d650f6711 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java index 3cc417297565..aff4bf599e84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java index 21bbbfcd0da7..d2d168879f9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java index 6738dc6f6b3e..0851c7f0c2bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java index aef7d934decb..ba426c37a7c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java index 1689b89b5508..1b770f8a9488 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java index ccddff65810b..5d5dc430135b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java index a227df0c356e..3b3d39b3bac3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java index f64d5c8114cd..e9f522767d6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java index e60baf1f6e74..97be90f7fa7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java index 84e262eadeef..6301d1c34973 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java index 88388f447d5f..86e6f06fc885 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java index ae79a59b2619..ebad50f52b09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java index ecfaad945d16..1fecb6606005 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java index 7b72721e4824..7742d3323b5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java index b9517a14629b..8b7255f2e98b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java index 88d9b9773edb..bb0bd127c15d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java index 029a8778eb34..2bb5f57d6c71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java index d1231cfa81e1..c759a3d98b57 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java index bcdb222d763e..cb4f9ec98f64 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java index 62f823002179..e0d376014af6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java index e30be637afa9..c917ffb957d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java index 26f982f6cf83..2e1b5a2670a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetEndpoint.java index 6bde0994f197..959d41a06e3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java index 081b8705d013..99675621c747 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java index ab381cba1314..0ccb38bdbb09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java index 130ab33fcd9d..d8f0e5245646 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java index c2f24e93c79f..269aa8e0c680 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java index 789aa2e6a8a3..bce892a3d52f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java index 6bdeb7bb81ef..ebcac6ec5bcd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java index 5e8bdbb11e58..13a2b79891e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java index 5eba42283e4b..ffdd37c5915f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java index f027522ab06d..7dacb9da4802 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java index 6d51e6eb7a48..031102b3f9b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java index f9e288f78df5..8cbf0103c7ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java index b809573e26ac..bb17dc3a1324 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java index 275ee6f42bf9..8dde1c80a65e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java index 77dde290344a..447b7c27000c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java index 8589c85684ee..853ec67b0473 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java index b67ceede8558..894f5c14dc49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java index 147a82eafc5b..09b0fa21e173 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/AsyncGetLocation.java index dcd316ea10c4..321ba0646333 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/SyncGetLocation.java index e2aa598a3c74..2ac19150e87c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java index 7f2008e7f9c9..e6f60cabe45a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java index 3ab7ef467346..602ed783736c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java index 9b89ab339513..c9ed32b4c2b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java index 4f55df90e63a..8b9a4fcfe718 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java index 1cae6f62e36b..08df131f4b4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java index cd579cb5c6f2..27d64f76e9e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java index 3e8f26358c57..56560a944f92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java index 24a6cadc5920..09d19922cd33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/AsyncGetRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/AsyncGetRagFile.java index b73ad856f3d0..64e37ad19fd0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/AsyncGetRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/AsyncGetRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFile.java index 15fa5bd44fc1..ca229ab1df3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java index ff6e8d2691c3..b6d4977037d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileString.java index 18a240193398..88ce641c97f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/getragfile/SyncGetRagFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java index e51486c9f04b..9264911a3541 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java index a9bbe69c9fdb..0be7c078c4f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFiles.java index 80df2fcde347..dd7229fb6392 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java index 0c1aa3d02573..65eb584170df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java index 09c615a23bb8..980e1afb85f0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocations.java index 245c1229f1db..2072335f7644 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java index f63cd989aca3..a588e705b9a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/SyncListLocations.java index c648919d3be2..7f3e12112e96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java index dffa57985f53..7059a596d7dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java index 21e01566464e..72dddd3a2dbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java index 7bc3b7a214db..f209f5eec931 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java index ac6ec8d85bb2..2ed372ab4105 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java index 2387f84a3e8e..412e2ad38057 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFiles.java index 352780a28f74..fdbedd7557e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java index ed1a078cb0f0..cd5923a0bd76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFiles.java index 7d888ee3e0ba..556c3abe2e51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java index dbeb65017046..2818c8ac8499 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesString.java index e3dde24fa876..8cbe241de02a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/listragfiles/SyncListRagFilesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java index a02289051b0a..6f7df0fbb30d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java index d9bf449634b6..81e57bcc1bdc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java index aac3d7afc305..39d4e7b14f94 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java index 1a2b88eebd8c..2b74f664a313 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java index 70923b216c63..15d07c3db1f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java index 0e65ec3a73dc..700d7bdf8063 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java index 776efda6ad0c..59fd53bca59b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java index 3ef307a6c3b4..098d23b8eed6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java index c8ce15e8df2c..7cbfe62cabfc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java index 7deccd8a106c..c6fdbe00c680 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java index ac25de90679d..7cfff207f405 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java index 91722a65fd12..9c6760e48b91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java index 1dbb10744f57..e18580fc55f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java index 6cc9b4b7f378..27f02c9fbc19 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java index 6e54ab151c4f..c45f8ded5a43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java index 848c9de1c7ad..76bfc1c2c420 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java index 44c90e166ab8..fb40db099fbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java index a0dd91c3bd3e..dd298419219c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java index d28de3887fb2..752f2958df6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPrompt.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPrompt.java index 9c508ca54495..0768b6cbfc09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPrompt.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPrompt.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java index 240453b67b25..50b33dcb0174 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java index 891a7b4babdc..202e6e5bdbcb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java index c28554f64a2b..176c9fca6f33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContent.java index 3823bf1c3344..dcb6271bbb9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java index 7413f4b02d9c..a692eb8fe8a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java index 9c9f63c171a0..ac6be6e52c9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetCredentialsProvider.java index bc032ed4a710..02befdde3188 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetEndpoint.java index 729bc8f81bfd..17411946bfe4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java index 94ef726641f6..f8d0c77bc2d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/SyncGetIamPolicy.java index dcee1a017bda..ad37cafe736a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/AsyncGetLocation.java index ac8493981be8..98042ca96ce9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/SyncGetLocation.java index e2f853b0f48b..871bb074d6b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocations.java index 8a8b78d5581c..a66d99a3c92c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocationsPaged.java index d173f7b33fd6..ab5959058ba6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/SyncListLocations.java index cdd48d0fcd57..f4735b615642 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java index bb943ebb5abb..af5050d27326 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java index 4f0a123567e4..0a8d2fdb0081 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java index e21d2537c84a..0d90e7a6327c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java index f5f60d2568bd..56dbb917ef05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java index 53d7d88fc0dc..8b6c887bcbdb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/SyncSetIamPolicy.java index 1585bb5e9a46..20847bbc164c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java index 6961b3d3f534..9c3ef38f6938 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/SyncTestIamPermissions.java index ba0c817762f2..ce59268a826c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java index e93f82174944..98ef40479ea4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java index 331bfe19293d..fc19b26a1208 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java index 34c5ea7ee5d2..129d209bceb7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java index c82b3d8e0f89..4832c7c20b07 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java index c7ed3dd35dfb..17733e26ac89 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java index a1d4196d6c07..cf9229030b71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/AsyncCompleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/AsyncCompleteTrial.java index f74685002eca..d109f8e21b28 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/AsyncCompleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/AsyncCompleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/SyncCompleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/SyncCompleteTrial.java index 8015ef73ffc3..8e9bd6122a1e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/SyncCompleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/completetrial/SyncCompleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetCredentialsProvider.java index 2d9d8ce1299d..fb6ed98ca9f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetEndpoint.java index efccf5fd6da1..634113e2d526 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/AsyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/AsyncCreateStudy.java index 8ce2c9703e84..ffb40ce6505f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/AsyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/AsyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudy.java index ed77f1d59029..1833a9fbac03 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java index 802aafba186e..62abb51948cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyStringStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyStringStudy.java index cd71ccb70bd4..1b5b995d3d9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyStringStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createstudy/SyncCreateStudyStringStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/AsyncCreateTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/AsyncCreateTrial.java index a38aaa55a0ae..0bdbf1d3f4cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/AsyncCreateTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/AsyncCreateTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrial.java index d12909ccce19..de04ffe578dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStringTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStringTrial.java index 77269ddbc1c9..f179dd852204 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStringTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStringTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java index d1e98ae32716..a477b9ef7348 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/AsyncDeleteStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/AsyncDeleteStudy.java index bc270abb100f..183a91bf6282 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/AsyncDeleteStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/AsyncDeleteStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudy.java index db2de52c8322..66c87b29523d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyString.java index 8c26c19088e3..784dcc6a4af2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java index b9d47804507e..9366927b85ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/AsyncDeleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/AsyncDeleteTrial.java index 2a7d7682b397..dccee48aa878 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/AsyncDeleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/AsyncDeleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrial.java index 6aa4e9502f87..62453adea01f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialString.java index 2ddb1b59e7c4..ad6a44a1c925 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java index 08d2a42f8228..14ea7dccfa40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/AsyncGetIamPolicy.java index f597b4efa6aa..1a2db3718d9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/SyncGetIamPolicy.java index 7bee8cae3ade..30ad8e81a7c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/AsyncGetLocation.java index eded472efa16..198d6a92fc46 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/SyncGetLocation.java index 44e2b70cc09f..775128f22df4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/AsyncGetStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/AsyncGetStudy.java index 946f68528517..9d453c5b0343 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/AsyncGetStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/AsyncGetStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudy.java index f4c9dbcb6afc..c590265843e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyString.java index da7c2ecd5d30..efe8ae8cb9c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyStudyname.java index 48c957a36bd9..f498085c5529 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/getstudy/SyncGetStudyStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/AsyncGetTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/AsyncGetTrial.java index 83d67f330f52..b33764902076 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/AsyncGetTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/AsyncGetTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrial.java index 2d4165686312..51686d328460 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialString.java index f44c95fe0f8a..ea4b27684eb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialTrialname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialTrialname.java index a801f9983fc6..cf32ba6230a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialTrialname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/gettrial/SyncGetTrialTrialname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocations.java index 8deb7eeddde1..6a9740be713c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocationsPaged.java index f00f868fa75f..7dcfaff150c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/SyncListLocations.java index 5e2b200f0076..52f1b9886bd7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java index 7e3f4912a8e1..630b8ecfa0d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java index 9c32e2e7d0dc..481660687ecc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java index 5c2a7bbfeed8..5b4a90eb68de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java index 7636f44f2241..2a185ee32b8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudies.java index ead54d171718..10fc850c65e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudiesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudiesPaged.java index 7f23f46ef81a..d70d8d32a4c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudiesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/AsyncListStudiesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudies.java index 715acdd5f92b..c5c790fb648e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesLocationname.java index 12e2a04bb627..18dda3ba0661 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesString.java index e176e4331ea4..f62e8eb34d8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/liststudies/SyncListStudiesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrials.java index 796ff692b13d..cce0fb2894db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrialsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrialsPaged.java index f46f1494e3a9..3afc28aca7bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrialsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/AsyncListTrialsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrials.java index 510b7d9e93e2..1c81175812ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsString.java index d238227cac47..46d863cc6264 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsStudyname.java index 8842a16c6370..b7dd3b6cc0aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/listtrials/SyncListTrialsStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/AsyncLookupStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/AsyncLookupStudy.java index fee3a85ec764..c5e07ddf96df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/AsyncLookupStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/AsyncLookupStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudy.java index a4d38425ea32..186fb634a5bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java index 9316487b4d99..278da8d033e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyString.java index 655560cfca26..a69274de01c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/lookupstudy/SyncLookupStudyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/AsyncSetIamPolicy.java index 2198dc51a56d..d14483fce6d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/SyncSetIamPolicy.java index 4e2d26907562..f0e0c189044d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/AsyncStopTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/AsyncStopTrial.java index fe8ca4550986..9a241a3b1aaf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/AsyncStopTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/AsyncStopTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/SyncStopTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/SyncStopTrial.java index 36d42a42bb38..6ad0168f695c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/SyncStopTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/stoptrial/SyncStopTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrials.java index cab6d5634cfe..c3079485fcd9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java index 252d60b3830d..1b33be0aafbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/SyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/SyncSuggestTrials.java index a4c79c384186..1812ced13f78 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/SyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/suggesttrials/SyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/AsyncTestIamPermissions.java index 9930fb7160fb..6745b472b968 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/SyncTestIamPermissions.java index 775f01fd2648..051969b9589b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/createstudy/SyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/createstudy/SyncCreateStudy.java index 7e2d61c240c1..237e548d93ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/createstudy/SyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/createstudy/SyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java index 62129754cff4..c39fa1ac53ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleData.java index 799efb071339..6ca5dc1ffd1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleDataLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleDataLRO.java index c5222aa29901..9dca2501b7da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleDataLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/AsyncAssembleDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/SyncAssembleData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/SyncAssembleData.java index d8ed310f341d..cd63507add20 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/SyncAssembleData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assembledata/SyncAssembleData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessData.java index 5e3a2dfa2df5..06bc742d8294 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessDataLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessDataLRO.java index 651ef6bbedba..c936e93ef941 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessDataLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/AsyncAssessDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/SyncAssessData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/SyncAssessData.java index 50166a07cb50..d0f84f47be6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/SyncAssessData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/assessdata/SyncAssessData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetCredentialsProvider.java index 3992fd2941ed..285d07d8821e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetEndpoint.java index 2bda64585e45..1bbf8b0b7f28 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDataset.java index a24fdfd5a69a..bcda0176389d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDatasetLRO.java index ebbb4587cdad..f983473dd9f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/AsyncCreateDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDataset.java index 4b559606d249..9f14ceb3693d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java index 5b85d56c343d..dabddc2f5009 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetLocationnameDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java index 19bb1b3f13b7..971661d64cee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdataset/SyncCreateDatasetStringDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java index 8163c9d8528e..2039df69e8b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java index 99ab5ac2a00b..eb329ab07aa4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/AsyncCreateDatasetVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java index 1f5520fa6008..50edf1d88823 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java index 77ec1b581cb8..581941ae53cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionDatasetnameDatasetversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java index 744a16aa2a4c..2d726343a1de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/createdatasetversion/SyncCreateDatasetVersionStringDatasetversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDataset.java index 58ffe3df2d9a..ca3560b80228 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java index 994bebc6b6df..d626f09835fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/AsyncDeleteDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDataset.java index 958dd5b0cb00..a3c75c3e053f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java index 88425b97b919..46e3dc156ee1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetString.java index 7c6dc9807f6b..92a7e47cc286 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedataset/SyncDeleteDatasetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java index bd6648438e10..6aed9e739c98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java index 8c2c8d9001dc..adc8f75ed057 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/AsyncDeleteDatasetVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java index 19e50afd1c28..c53fcce45efe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java index 6ebc5fea7151..e1dc29908d91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionDatasetversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java index 4222d85357a3..bd65d121f065 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletedatasetversion/SyncDeleteDatasetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java index 7edd695d151f..ff260f057c71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java index b4ab43e26b73..3a3a9d79e093 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/AsyncDeleteSavedQueryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java index ae509d6d6e29..530aef9352e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java index 281709a99440..9d55aa82c127 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java index 072932f5c218..11c1da0ac745 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/deletesavedquery/SyncDeleteSavedQueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportData.java index 8adba71d73b8..83c6bee65705 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportDataLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportDataLRO.java index 50d379c7038f..bd7db4abe7da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportDataLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/AsyncExportDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportData.java index 6bed7b2901fb..6ab2d257f3a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java index b429c72d1085..533c6f2a00ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataDatasetnameExportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java index 14a57abb1c42..d1e667753526 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/exportdata/SyncExportDataStringExportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java index 6d8ecc755aab..3ea1d5631707 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/AsyncGetAnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java index a821a462323b..979bdc364150 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java index ec7ac6678ddd..b69bf8849ef0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecAnnotationspecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java index 8962004166bf..5813baa295f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getannotationspec/SyncGetAnnotationSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/AsyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/AsyncGetDataset.java index 89f06fcf1b61..b960bb9fd207 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/AsyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/AsyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDataset.java index f8d81dc46a0d..2f0489635b76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetDatasetname.java index 532ff02d0428..9b3839774028 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetString.java index 2244a5e62365..ce0d78119e7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdataset/SyncGetDatasetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java index 8c01c1b5d914..5b07d414a834 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/AsyncGetDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java index a7e1d80ba3f9..02b1278c1f98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java index 2fce7e0c841e..89ce6086f37f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionDatasetversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java index 62f1514d8159..dcf1d72231d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getdatasetversion/SyncGetDatasetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/AsyncGetIamPolicy.java index d1343153e4be..c7450df0b502 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/SyncGetIamPolicy.java index 2fbc475c461c..64135d56878d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/AsyncGetLocation.java index 34b663a2c19f..909a1571cdfa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/SyncGetLocation.java index 130f617ea965..002090665e92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportData.java index 1ad5459abed6..e611e6b85169 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportDataLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportDataLRO.java index 1bbe321d53dc..68527e3c51b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportDataLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/AsyncImportDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportData.java index 0ee9495b0830..c853bd05541a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java index b42c3b6046d7..d9d2999fe604 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataDatasetnameListimportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java index e60d977fdbab..c745753b44ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/importdata/SyncImportDataStringListimportdataconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotations.java index 4d7e068593ec..edcd1483d537 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotationsPaged.java index 964441624971..74a883a19cdd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/AsyncListAnnotationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotations.java index 51212026bb7c..4a787fff2b7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java index fadad3e2780c..e972ce94fccf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsDataitemname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsString.java index fb16b807793f..92e67d9fedda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listannotations/SyncListAnnotationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItems.java index 16acdb480fd3..7ccc741736f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItemsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItemsPaged.java index 2edc3c7b7fb8..3c1784e3fbee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItemsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/AsyncListDataItemsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItems.java index 3e3b11091c96..171f3964a97b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java index 2f760400d75e..2ef72e481f36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsString.java index 30137627d742..ebe20e10dde4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdataitems/SyncListDataItemsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasets.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasets.java index 8a7236a87561..134cb47af30c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasets.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasetsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasetsPaged.java index 123ca7c9d708..7c373b0e8200 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasetsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/AsyncListDatasetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasets.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasets.java index ebedf1ed2114..d357be1eda43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasets.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsLocationname.java index a48c451f3228..125c7abb0385 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsString.java index 7064f6072454..dc16934b4c0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasets/SyncListDatasetsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java index fe9f5bdcc454..8eb462f5bd87 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java index edd9b03e36c6..3827cbebb941 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/AsyncListDatasetVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersions.java index b20fe3abce50..048dcb789507 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java index b983e758d598..1ec429a16927 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java index 49baf8a0a49d..1708375e1e14 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listdatasetversions/SyncListDatasetVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocations.java index 2a268ed5a502..04c4c6d3f3c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocationsPaged.java index ac60455dc3a8..c1c4327c8d2a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/SyncListLocations.java index bdec4fc120d2..50c6e994e72f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueries.java index 6e44367c3be0..fa59f9ecf617 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java index 2d1b0569e276..ef9209c6f2d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/AsyncListSavedQueriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueries.java index e6025ba1ad6b..dcd7a185b937 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java index 2076e76e2436..8d3175067967 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesDatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java index 8933006191cb..ba50cd3ff451 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/listsavedqueries/SyncListSavedQueriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java index 38fb903d6aa0..99ec9c3d2139 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java index 01505ab03c51..74efe64294fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/AsyncRestoreDatasetVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java index b91bde8c7e26..fd37d21b4ad9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java index 72450723306e..c3a2e8f6cd25 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionDatasetversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java index b139dd49dde4..a51dfd17289b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/restoredatasetversion/SyncRestoreDatasetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItems.java index 505a4b824499..c3572ecdb95f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java index 9ef3d670009f..a0a14e7c3eaa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/AsyncSearchDataItemsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/SyncSearchDataItems.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/SyncSearchDataItems.java index 99244059e605..baf337a56bdc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/SyncSearchDataItems.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/searchdataitems/SyncSearchDataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/AsyncSetIamPolicy.java index 158f2cf1c2a6..8746ec498e1b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/SyncSetIamPolicy.java index c9b3463465b1..7e931a8730f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/AsyncTestIamPermissions.java index f90b1e6fbcbc..c85b11dd4977 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/SyncTestIamPermissions.java index 3bfe5aa0829a..b50a97be115b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/AsyncUpdateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/AsyncUpdateDataset.java index 995005dc4357..5536b8ac4919 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/AsyncUpdateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/AsyncUpdateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDataset.java index 67ed9cc171c2..a8cce9d6f860 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java index 6dab3647656e..2a2858761486 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedataset/SyncUpdateDatasetDatasetFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java index f6f92fad9fa7..8d8a448c907f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/AsyncUpdateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java index 978d66b4074d..1e5b408dc404 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java index c1cf98217948..27a6a8fbc693 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservice/updatedatasetversion/SyncUpdateDatasetVersionDatasetversionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/createdataset/SyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/createdataset/SyncCreateDataset.java index c5bd26d4e970..0afc4e35c5d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/createdataset/SyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/createdataset/SyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/getdataset/SyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/getdataset/SyncGetDataset.java index f7bad8b40913..32c89e87bdd8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/getdataset/SyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/datasetservicesettings/getdataset/SyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java index a11541fffb2a..b610743733d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java index 4fb1c4106ba1..7f2883c22ecf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java index 87b44f30a27d..d8b356f108c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java index d57443b2bd09..153e1ede1b33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/AsyncCreateDeploymentResourcePoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java index 1dd08197abff..0a5e58f12ed6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java index 7452cf419ac3..dbdc1b6689c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolLocationnameDeploymentresourcepoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java index e5e2d26c23a1..311bfdc708c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/createdeploymentresourcepool/SyncCreateDeploymentResourcePoolStringDeploymentresourcepoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java index 185d6e541fe2..847577efabde 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java index 65a20a2b2cf6..015c0a2b32ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/AsyncDeleteDeploymentResourcePoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java index f6db3a0c74e8..0f4aa519cc35 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java index 4fbe97185c71..7c154547948a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolDeploymentresourcepoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java index ed26246f0d40..ba251d97e689 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/deletedeploymentresourcepool/SyncDeleteDeploymentResourcePoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java index 2675b01ac98b..d94f772f8354 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/AsyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java index f2de9e80ce4b..b466c5fa8d10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java index fab6f2db1392..05b365001882 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolDeploymentresourcepoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java index ca4e2ddf04bf..4b76ca1aa8ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getdeploymentresourcepool/SyncGetDeploymentResourcePoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java index ad387e330e15..bfe71fa5e848 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java index 3bca79f078b9..95a68733bb6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java index 0c0cc63f529f..aae3108431ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java index 797c86523ada..a551672972a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java index 8f1a541df19a..93aca64823e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java index d402f4ea9edc..b50d480d010d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/AsyncListDeploymentResourcePoolsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java index ef33fb79f710..61d9b898f96c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java index faa81a5229f4..4a75c503ee50 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsProjectname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java index 04f4e35976fa..d0a9b694da6f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listdeploymentresourcepools/SyncListDeploymentResourcePoolsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java index fe13f246748d..e133d984fb08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java index 4363f7d67900..65a8ed880b57 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/SyncListLocations.java index ec5f984dc834..d932dcf0f193 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java index 5356fc2b3692..b8274cee0ccc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java index 2c29648a877a..a0ec448df1a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/AsyncQueryDeployedModelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java index cdc2abc475be..e4b77a4fc9fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java index e17a2d489b7f..1ad7e96a5a1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/querydeployedmodels/SyncQueryDeployedModelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java index 165a10818e5b..2d63ee16d8c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java index 3e8b366c2f84..8a632ef63113 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java index 0c99d1cdff5d..96d42165baaf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java index a71a1bb2bad9..efc3d1b0ce54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java index b3bfa1f7ce01..330d87554276 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java index a28a773aa482..2c0a9e674d6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/AsyncUpdateDeploymentResourcePoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java index 6204183f094c..bae9cb4cd5b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java index 0d90ec3a19ec..b4ca9ea64720 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservice/updatedeploymentresourcepool/SyncUpdateDeploymentResourcePoolDeploymentresourcepoolFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java index dab7ed4d8779..a894d00451f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java index 4de5696e9fe8..a8feb4749493 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/deploymentresourcepoolservicesettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetCredentialsProvider.java index 62928cd1c44d..9d744814ff4e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetEndpoint.java index dbb082cce0d7..654214d573fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpoint.java index c43d55cbd3e8..61ceb5291b1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java index a1eb521ea5da..f4eab3d2209a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/AsyncCreateEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpoint.java index f973bbf7e214..b2bbddd5a1b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java index 954c204d9e79..412425cb573b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java index ebdb1ed19ffa..2718059aa87a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointLocationnameEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java index d402919d1b84..eb8a749c7024 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java index 4429cf675b04..ba0f4628851e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/createendpoint/SyncCreateEndpointStringEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java index 0a7cb7a54925..62d2d1c877a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java index b8bf2c88149c..a25591f56105 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/AsyncDeleteEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java index 134374c3b84a..1e6af0bb9b16 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java index 0b3313e9e30f..8e71d4559fe5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointEndpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java index 5fd9ef0a65fa..8a2f90230877 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deleteendpoint/SyncDeleteEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModel.java index a995114d4002..f98936204ea3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModelLRO.java index 670d868ae380..97e53c952b36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/AsyncDeployModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModel.java index 7a174a28dc1d..21338df75f7c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java index 3c4c7e5c1298..52966f820d35 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelEndpointnameDeployedmodelMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java index 48dbf6347771..6d7b0f0176a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/deploymodel/SyncDeployModelStringDeployedmodelMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/AsyncFetchPublisherModelConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/AsyncFetchPublisherModelConfig.java index d40dc20fa458..207479bc8256 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/AsyncFetchPublisherModelConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/AsyncFetchPublisherModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfig.java index 24bf5c51205a..3437051e3732 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigEndpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigEndpointname.java index 6bb4c84d21b0..ccb86f3b2fc1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigEndpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigEndpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigString.java index 79ed906e2d53..51cb4b7a9ea8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/fetchpublishermodelconfig/SyncFetchPublisherModelConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/AsyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/AsyncGetEndpoint.java index ac4e4e54e0f0..c30971c0a0a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/AsyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/AsyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpoint.java index 1925becef434..179b306720df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java index 3fddf7b97a92..36ba478b76a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointEndpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointString.java index 91096adeaaad..51630bd7cc67 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getendpoint/SyncGetEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/AsyncGetIamPolicy.java index b9a71fcb8fb7..cc63ece5f6ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/SyncGetIamPolicy.java index ce7cef351058..0718e982fa09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/AsyncGetLocation.java index afdde814762c..0d84ac510e0c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/SyncGetLocation.java index 81ef37f4b667..5c20bca5cf9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpoints.java index 82345c2b66d6..9209da75f6ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpointsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpointsPaged.java index bc47fb17b775..5bfab82edfbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpointsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/AsyncListEndpointsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpoints.java index df4326e6cb7c..2b8a04c57810 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsLocationname.java index 5e5b0badb83e..e02cf6e05531 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsString.java index 84ac13a7d033..15266f826b1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listendpoints/SyncListEndpointsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocations.java index 973e4a505cf0..d1243faf271c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocationsPaged.java index 6d08af82b28f..dc38eabbd3f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/SyncListLocations.java index b153eac27e21..16908d27dad6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java index 98b4b58278ca..9215e4f2bb5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java index 63b864ef61a3..68788bb5b679 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/AsyncMutateDeployedModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java index cd259e04a844..c6bd5a1270c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java index 4100dd9af4c3..38e05381b3d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelEndpointnameDeployedmodelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java index fa84a89d613d..cceb5447c022 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/mutatedeployedmodel/SyncMutateDeployedModelStringDeployedmodelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/AsyncSetIamPolicy.java index 94cf1288d732..55626eb1ded8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/SyncSetIamPolicy.java index 5e81760fc7e1..cda696cc4a21 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfig.java index afeb358eb80a..e3c73bef25d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfigLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfigLRO.java index c614b468f323..3e4b392077e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfigLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/AsyncSetPublisherModelConfigLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfig.java index eeedc630ae25..507213c77977 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigEndpointnamePublishermodelconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigEndpointnamePublishermodelconfig.java index 61be455c9396..60824866bb4b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigEndpointnamePublishermodelconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigEndpointnamePublishermodelconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigStringPublishermodelconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigStringPublishermodelconfig.java index 7a722e842286..ad54e1180ca0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigStringPublishermodelconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/setpublishermodelconfig/SyncSetPublisherModelConfigStringPublishermodelconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/AsyncTestIamPermissions.java index e16cc307fa32..43f3c037b92a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/SyncTestIamPermissions.java index 3d2659ab21c1..db14a847f2c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModel.java index 7dd68d8a1f5b..82211d24b7c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java index 1dfcdb3921e8..00a3eef08bbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/AsyncUndeployModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModel.java index 2bb860be5451..ec87c5cc7242 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java index 2a2a1329f2fd..a2019eb921af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelEndpointnameStringMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java index 0340ccc82257..4fae1158baa5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/undeploymodel/SyncUndeployModelStringStringMapstringinteger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java index 1dba7d425465..11f164ac5888 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/AsyncUpdateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpoint.java index 67a30c889df2..1aecb59723ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java index 6329c4f2f379..684545020c15 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpoint/SyncUpdateEndpointEndpointFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java index b30effe6705d..4fd6797d9327 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java index e134b6f37780..860bfc47c884 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/AsyncUpdateEndpointLongRunningLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java index 288ec34abd29..948476d53337 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java index d61aebc845f8..a094e6d0181d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservice/updateendpointlongrunning/SyncUpdateEndpointLongRunningEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java index cc558a2ffd5c..a00853f4a793 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/createendpoint/SyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/getendpoint/SyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/getendpoint/SyncGetEndpoint.java index 1d3db1453707..07f1c1b20be4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/getendpoint/SyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/endpointservicesettings/getendpoint/SyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetCredentialsProvider.java index a302630fc0a1..e33d294f9aae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetEndpoint.java index d5e25581a458..0c8ea14a4c23 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDataset.java index bcce8512b554..da496a31454c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDatasetLRO.java index 8b34c0d74a41..22996a55e565 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/AsyncEvaluateDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/SyncEvaluateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/SyncEvaluateDataset.java index 928675329b38..565d9a7bdfb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/SyncEvaluateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluatedataset/SyncEvaluateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java index 80c2bc4824c5..6d0cf9a93808 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/AsyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java index cbd07471ea34..80209ae00986 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/evaluateinstances/SyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java index 641b27ba7ef3..46f7d42b8d54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/SyncGetIamPolicy.java index d804c8527eeb..a8862ea04ce2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/AsyncGetLocation.java index 6f374b7d0069..55591683c512 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/SyncGetLocation.java index 9681740a84b4..8cee54f20b3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocations.java index 442638458a99..8e293bd608b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocationsPaged.java index 3e825dac7fa9..4a5513665fe4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/SyncListLocations.java index b7e9e2aee3a6..fb6a93ddd690 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java index c2e8cce7dadc..2b3e59ff71e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/SyncSetIamPolicy.java index c938031a8042..e0d8048703d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java index 9ee6bc778e0e..40d421a59602 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/SyncTestIamPermissions.java index 459d81855b44..10828f9c3ed7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluatedataset/SyncEvaluateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluatedataset/SyncEvaluateDataset.java index 679505f1a4db..995cf3fe5a9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluatedataset/SyncEvaluateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluatedataset/SyncEvaluateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java index 49c578e11b06..2dc2445f458a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/evaluationservicesettings/evaluateinstances/SyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetCredentialsProvider.java index 86d1da6fb360..225a7729b55a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetEndpoint.java index 4801cb2ae5dd..b21e41bbdbde 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStore.java index 2de00f3bc988..081f6bb2258a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStoreLRO.java index 357c325af52f..dfd5bf7b25a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/AsyncCreateExampleStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStore.java index 46466c702add..a2b8f6b20796 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreLocationnameExamplestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreLocationnameExamplestore.java index 277e64e5feda..a96f4211fc5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreLocationnameExamplestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreLocationnameExamplestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreStringExamplestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreStringExamplestore.java index 1636ea6998fb..264c697b0024 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreStringExamplestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/createexamplestore/SyncCreateExampleStoreStringExamplestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStore.java index 355cfa56b2ec..f391f1f4938e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStoreLRO.java index b7b8b4cd397c..42d461fa3b69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/AsyncDeleteExampleStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStore.java index 646cbd5242d6..3d64cdbbab88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreExamplestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreExamplestorename.java index 6651591fc9d2..b4e6479b3ff7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreExamplestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreExamplestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreString.java index 8b3aaa7980b5..ae7ec45c4983 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/deleteexamplestore/SyncDeleteExampleStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamples.java index ea97af63957e..6e34efec02c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamplesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamplesPaged.java index a67cc2be8a8f..c3b302816caa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamplesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/AsyncFetchExamplesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/SyncFetchExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/SyncFetchExamples.java index dfb547c15078..312dff194a2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/SyncFetchExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/fetchexamples/SyncFetchExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/AsyncGetExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/AsyncGetExampleStore.java index 4d9d04e9daf2..b02e720b226a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/AsyncGetExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/AsyncGetExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStore.java index b1a5317dc352..18d76a365dab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreExamplestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreExamplestorename.java index d8c52107eba6..d73dd9b2e11a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreExamplestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreExamplestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreString.java index c795e7fdbcab..4dd78f4b54a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getexamplestore/SyncGetExampleStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/AsyncGetIamPolicy.java index 28987611b765..4d43d34adf23 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/SyncGetIamPolicy.java index 77aef4394bf7..44f515c552f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/AsyncGetLocation.java index a623973aad85..a96a1fa57d26 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/SyncGetLocation.java index 27b033cb99a5..1c913b613c4d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStores.java index 1e561ad67f77..682ea2e42ac1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStoresPaged.java index dfad13db0d88..43288d363610 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/AsyncListExampleStoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStores.java index 9902e7d572ce..749d2ba52784 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresLocationname.java index 76e85ff01b31..b8c02d246aab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresString.java index cccc962b4fc1..20be47540a2a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listexamplestores/SyncListExampleStoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocations.java index 2be13d4584a9..df57f61f64bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocationsPaged.java index 0f7ca7e56510..45419955ec28 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/SyncListLocations.java index de07b62cf41d..e7bffd3a4996 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/AsyncRemoveExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/AsyncRemoveExamples.java index a39ac1db211a..0102efaabdb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/AsyncRemoveExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/AsyncRemoveExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/SyncRemoveExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/SyncRemoveExamples.java index 856c7e1bfb24..77c6ccfcca4a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/SyncRemoveExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/removeexamples/SyncRemoveExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/AsyncSearchExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/AsyncSearchExamples.java index 488f225e87a0..a009d6f1c391 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/AsyncSearchExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/AsyncSearchExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/SyncSearchExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/SyncSearchExamples.java index 4d20284dd85d..f74c9e3a2b87 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/SyncSearchExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/searchexamples/SyncSearchExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/AsyncSetIamPolicy.java index f72f8472b5f1..6053d0cd2854 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/SyncSetIamPolicy.java index 6382f61a39ad..4c87547619e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/AsyncTestIamPermissions.java index 048a27630b9e..a5e26ae2c6c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/SyncTestIamPermissions.java index 9e6feff68690..834a898901d9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStore.java index b28320035584..d1a1a30604b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStoreLRO.java index 26d24a9c6e60..25cc28fd1625 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/AsyncUpdateExampleStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStore.java index 1c086f60bca1..bc2351c2e7c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStoreExamplestoreFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStoreExamplestoreFieldmask.java index f89c2c9d2867..33a1b52ea882 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStoreExamplestoreFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/updateexamplestore/SyncUpdateExampleStoreExamplestoreFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/AsyncUpsertExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/AsyncUpsertExamples.java index 1ea1fd2a8f63..9c70e4ac3d86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/AsyncUpsertExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/AsyncUpsertExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/SyncUpsertExamples.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/SyncUpsertExamples.java index 7c8ad76524d8..955af725450d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/SyncUpsertExamples.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservice/upsertexamples/SyncUpsertExamples.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/createexamplestore/SyncCreateExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/createexamplestore/SyncCreateExampleStore.java index bbc4b115b568..7aea2a4113b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/createexamplestore/SyncCreateExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/createexamplestore/SyncCreateExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/getexamplestore/SyncGetExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/getexamplestore/SyncGetExampleStore.java index 0070507f44b4..c0f878f9fbf1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/getexamplestore/SyncGetExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/examplestoreservicesettings/getexamplestore/SyncGetExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetCredentialsProvider.java index 073772d60ff8..feebfc4ab942 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetEndpoint.java index f905c30f3c90..2452a725acfc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/AsyncExecuteExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/AsyncExecuteExtension.java index 8ff674360d47..897d2ae6eb87 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/AsyncExecuteExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/AsyncExecuteExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtension.java index 189da7f66c21..3d7e562abaec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionExtensionnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionExtensionnameString.java index c80e036a461c..e8a2f9e9882e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionExtensionnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionExtensionnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionStringString.java index a8408d4dcfb4..77a8f72ee4c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/executeextension/SyncExecuteExtensionStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/AsyncGetIamPolicy.java index aff367870376..b8c1cc780a7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/SyncGetIamPolicy.java index 73594cd0409b..ad739995816f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/AsyncGetLocation.java index fa6b1936b599..1413c9645e59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/SyncGetLocation.java index 314f39891dd5..b6ae39ceda60 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocations.java index d3b439b19795..d7b574d5b3fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocationsPaged.java index 5f20043aa0e4..7665ff9c4c7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/SyncListLocations.java index 09a77f7e0343..3e8aa157e12d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/AsyncQueryExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/AsyncQueryExtension.java index 8c37cce5dce0..9938809907bd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/AsyncQueryExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/AsyncQueryExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtension.java index a59db7e0a6a0..487eb4602557 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionExtensionnameListcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionExtensionnameListcontent.java index 35ff1341d870..7942b5be4b86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionExtensionnameListcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionExtensionnameListcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionStringListcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionStringListcontent.java index d7756fd0f35d..9f542489d862 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionStringListcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/queryextension/SyncQueryExtensionStringListcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/AsyncSetIamPolicy.java index cc422a5e25fc..01bbac3ba992 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/SyncSetIamPolicy.java index fb8a75e9a5ad..d97a52f66a40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/AsyncTestIamPermissions.java index fa0cbedd287f..787a0cbdb5c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/SyncTestIamPermissions.java index 7e793fa33983..905c74be087f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservicesettings/executeextension/SyncExecuteExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservicesettings/executeextension/SyncExecuteExtension.java index 9077897b2bbb..07e8f35f787d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservicesettings/executeextension/SyncExecuteExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionexecutionservicesettings/executeextension/SyncExecuteExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetCredentialsProvider.java index 853798b0c934..834db64f9431 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetEndpoint.java index c661fb9774d6..3ecc7c6c043c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtension.java index a2512253ce66..d74d6f8503e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtensionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtensionLRO.java index cf1d0059a406..f79eeb7a89f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtensionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/AsyncDeleteExtensionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtension.java index 58c27f72f34b..10c6700475e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionExtensionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionExtensionname.java index e2b877f5a65f..55160f3bb6b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionExtensionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionExtensionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionString.java index ce4f830afd66..6ebb8bab41eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/deleteextension/SyncDeleteExtensionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/AsyncGetExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/AsyncGetExtension.java index fe7424bd812f..e91bd90ea029 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/AsyncGetExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/AsyncGetExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtension.java index 2005b7bd3f1a..31a59ea5adb6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionExtensionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionExtensionname.java index 10f72691cbdb..fb1a5bb22365 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionExtensionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionExtensionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionString.java index f30c80baf15e..9c4046f37378 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getextension/SyncGetExtensionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/AsyncGetIamPolicy.java index 8e7de473a1d9..e38429ca9048 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/SyncGetIamPolicy.java index 6af4ed1f05d3..b9afb1ef2df3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/AsyncGetLocation.java index c9367f4f538c..09a787316bad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/SyncGetLocation.java index 20872997e386..8d7ff367a34c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtension.java index b9c2ec58e24d..394f5774ddd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtensionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtensionLRO.java index 52c2fd85aeb4..33b215ed45fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtensionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/AsyncImportExtensionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtension.java index 1c5dc44dfeb2..52c94ec76971 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionLocationnameExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionLocationnameExtension.java index 9f41d976e529..bfa7bd593604 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionLocationnameExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionLocationnameExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionStringExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionStringExtension.java index c5ff7f1eb843..b241a96f73db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionStringExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/importextension/SyncImportExtensionStringExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensions.java index 06c410ca9946..03036091c141 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensionsPaged.java index fe39032e437e..7b9b468e88f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/AsyncListExtensionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensions.java index 2a2ab42c3177..e1244c1635b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsLocationname.java index f3505b3f0c19..5db4e4ea7d8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsString.java index 4701e7859a87..ddfa0f5c6719 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listextensions/SyncListExtensionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocations.java index a4289e9719c2..097a85d313c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocationsPaged.java index 2863aa83cdb3..b0cc1b319409 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/SyncListLocations.java index e966607866a2..eb136c6dca2e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/AsyncSetIamPolicy.java index 43ca8ac0eacb..4ea92b44a810 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/SyncSetIamPolicy.java index e76b7cb6e364..0bf2d81c061a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/AsyncTestIamPermissions.java index d0c56c4c9ab4..b969d5449520 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/SyncTestIamPermissions.java index 1d40b46faed3..636282bf6c2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/AsyncUpdateExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/AsyncUpdateExtension.java index 3c29e477958d..342fc96409fc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/AsyncUpdateExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/AsyncUpdateExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtension.java index 9b02eaa0b67e..081163f3c48a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtensionExtensionFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtensionExtensionFieldmask.java index 650338a0d70f..f48df7395721 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtensionExtensionFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservice/updateextension/SyncUpdateExtensionExtensionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/getextension/SyncGetExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/getextension/SyncGetExtension.java index 4143c1141d8c..a018172cb27b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/getextension/SyncGetExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/getextension/SyncGetExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/importextension/SyncImportExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/importextension/SyncImportExtension.java index 5ee92b1ea05c..914d1d96b1ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/importextension/SyncImportExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/extensionregistryservicesettings/importextension/SyncImportExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java index 430d4c9f18b4..09f4c8ba138d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java index 89c65b794fd2..d9db8bddaa1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java index 50c535909557..1003bc1dcf53 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java index 9031b64ae740..fe30253fe4ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/AsyncCreateFeatureOnlineStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java index afd1915cdc0d..8129406dd159 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java index 8465fdd2df53..cf8037d85eaa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreLocationnameFeatureonlinestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java index e8d7d58bcbf0..f8f302fef3ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureonlinestore/SyncCreateFeatureOnlineStoreStringFeatureonlinestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java index 83142521d7e3..e4e837adb66f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java index e64c98b77136..8f7414c33869 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/AsyncCreateFeatureViewLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java index 87ca3a9bd72d..7fa01cc5fb34 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java index 3fbf51cef62e..03c6438bd70d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewFeatureonlinestorenameFeatureviewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java index b34834c5098c..005b7a1e76cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/createfeatureview/SyncCreateFeatureViewStringFeatureviewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java index 1535b434a19b..c03275faabc1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java index b41dca6c56ae..02957c0fd070 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/AsyncDeleteFeatureOnlineStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java index 87c2bacef71e..4f6faafbe2fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java index a4a4cb3a4aaa..91bb73b5462f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreFeatureonlinestorenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java index 631cc6b4c315..a46ac3781c0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureonlinestore/SyncDeleteFeatureOnlineStoreStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java index 000c375bf3bf..d612b2fc270e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java index 68c5626dc270..77bcd6d49b02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/AsyncDeleteFeatureViewLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java index 95ac448507a4..80b6431584d9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java index e678c2751901..9ea0671a6419 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java index c9eb31a2df22..a06b471b51dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/deletefeatureview/SyncDeleteFeatureViewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java index 0b5037d37faa..200b2657e193 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/AsyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java index e29d549dad78..05e06dae800c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java index 266b38174be2..57e734d70fbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreFeatureonlinestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java index a8a503e3fdb9..cbf54a2c3f95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureonlinestore/SyncGetFeatureOnlineStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java index f07d1447ad9e..25758decf3fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/AsyncGetFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java index 5881256e00aa..282c8124fe4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java index 5a064e8d26dc..e80fedff9e5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java index 8ebef51a7588..a605edd0e2e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureview/SyncGetFeatureViewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java index 005063c7fdfe..de152cd242c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/AsyncGetFeatureViewSync.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java index 50b4eb09c855..d39387afcf9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSync.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java index 68d8e8624c21..1359665c7919 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncFeatureviewsyncname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java index e890e2e479b6..d5afec1d8266 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getfeatureviewsync/SyncGetFeatureViewSyncString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java index b51181a7ac64..cb58ca2dc0f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java index 77517db0d75b..3f38f2951a47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java index 6e95a606609a..fe70082d77cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java index d5ef13b280d1..60f75e241fde 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java index 912b5b99dddd..0fd435e552ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java index dd04fbd63c5d..e6648613ea1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/AsyncListFeatureOnlineStoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java index dc8ab6221d3a..709af4de1495 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java index bc8941689436..7139e0eca4f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java index 737924290c86..e97b9c25340a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureonlinestores/SyncListFeatureOnlineStoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java index 485ca3d16bac..46a09ac20103 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViews.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java index 91c342d486a6..da63991593af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/AsyncListFeatureViewsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java index cba884e12e1a..3e568a7ecfb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViews.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java index 78df00e332dd..aba2b8226430 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsFeatureonlinestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java index 67a2258dcfc8..02cd5ddcbeab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviews/SyncListFeatureViewsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java index 125626f242de..2aa049d9528c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java index 100a4964fc31..03434030d79f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/AsyncListFeatureViewSyncsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java index 2e4462ec5bcd..ab0ede87c343 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java index 44ae88316920..088adecaadbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java index 9d9c576300d0..a447fbb208f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listfeatureviewsyncs/SyncListFeatureViewSyncsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java index 24e37872ffa4..adcf46abd651 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java index a0a4e8196c85..1d3ff03b2b61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/SyncListLocations.java index c2eb8f446491..de7fe8c568f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java index af8cacb7eb78..9d226369082d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java index 218f9dc43eae..5bb2e871988f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java index 065337b079d9..85ae57ec72e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/AsyncSyncFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java index 3795c4443188..4ab6c3d38f74 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java index 8f24311b9405..09aa266a6696 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewFeatureviewname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java index 51077dc906dd..80d329e7f042 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/syncfeatureview/SyncSyncFeatureViewString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java index 43d676506177..88254c19b81e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java index 5f95570c1dac..7bcff676b61f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java index 3e32fdcaa21c..f380a12d48d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java index 81e3f281fc63..621217fc7230 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/AsyncUpdateFeatureOnlineStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java index b984f3b4549e..a3ef8df52f95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java index 64a853f0e647..797de29fda47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureonlinestore/SyncUpdateFeatureOnlineStoreFeatureonlinestoreFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java index 13d471b9fd67..c11766bd20d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java index 6dffd6d4a80b..99e1bfe4f5a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/AsyncUpdateFeatureViewLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java index ccb6fadc028c..d1a7af1f712c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java index c1d05340e6c5..77d7a47b248f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservice/updatefeatureview/SyncUpdateFeatureViewFeatureviewFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java index 631019c6de36..82f3b9964e8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java index 315cf309a098..3470636c5d6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreadminservicesettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java index 5cd6817d4da5..dab8cb20081a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java index 171a22c6964b..026e969970d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java index aad7c348e146..a023b24b0a4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/featureviewdirectwrite/AsyncFeatureViewDirectWrite.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java index 681b8ba20fec..adc831b42b48 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/AsyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java index 7f03e1bf6ddf..6f3f95366354 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java index aedf044fcbea..5beb6a6f8dd1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesFeatureviewnameFeatureviewdatakey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java index bcaa36da5727..d753a7cc6e68 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/fetchfeaturevalues/SyncFetchFeatureValuesStringFeatureviewdatakey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java index 2fabb1f3104b..b20619d87f75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/AsyncGenerateFetchAccessToken.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java index 8d5de80adb49..08adf1c1dbe2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/generatefetchaccesstoken/SyncGenerateFetchAccessToken.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java index 16da1dbce93f..442a635c7864 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java index f246e46c678a..ce6f7d48e26a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/AsyncGetLocation.java index 36e2d021a74d..8ab6a76d43d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/SyncGetLocation.java index d0907502095d..026e2cf3382a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocations.java index 08979feebbcd..781390c3e383 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java index 22fa0ff10f9e..424c7dc6bc84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/SyncListLocations.java index b88251ecce30..afd9bca7a847 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java index 76de65d31d7f..16073ac8749d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/AsyncSearchNearestEntities.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java index 1b454d895207..af03ba1aea54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/searchnearestentities/SyncSearchNearestEntities.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java index 2b4eee7062ac..df7eb7e4af53 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java index 7deea0a29393..1867dc4425bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/streamingfetchfeaturevalues/AsyncStreamingFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/streamingfetchfeaturevalues/AsyncStreamingFetchFeatureValues.java index ea8c240406b0..5985a6523ebf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/streamingfetchfeaturevalues/AsyncStreamingFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/streamingfetchfeaturevalues/AsyncStreamingFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java index 1d3f84db8093..dda9573fd84f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java index 35dd268f3761..cc60784c0fc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java index 56e839507dca..aad7efab0658 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureonlinestoreservicesettings/fetchfeaturevalues/SyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java index 51eea8d77a8a..7154f0eb3f6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java index 546786483c76..519b2703dbe1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java index 7daa7fd87f44..ef640061d299 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java index 8e3fcc120edf..b2889e1c02e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java index d09eab78afb3..6cb65fc5d232 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java index 0f7c70e3691f..e2951859e402 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java index 9c581ea66030..ab7258ce8c8d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetEndpoint.java index 53f1bc656ccc..d79b52daddc0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeature.java index 519be644fddd..63617ab8901c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java index 4c35b082dbda..f5e6b751d4b0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/AsyncCreateFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeature.java index 6ca5ae05b664..00195765b8ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java index f114e757f063..1b3a4c1b6614 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java index ce7911a16bd6..b3b477852f91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java index 93dec411237b..f3b3f7fa98dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeature/SyncCreateFeatureStringFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java index 1f9f9dd212bb..102994ce6082 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java index 7669446caa17..2a7e59f34c05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/AsyncCreateFeatureGroupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java index 1b32561e7d4d..d026f93c50e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java index e0c486a28c77..aef8fbf39aad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupLocationnameFeaturegroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java index b4254ea51fc3..4c3572542ccc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturegroup/SyncCreateFeatureGroupStringFeaturegroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitor.java index 85b696e5e911..55a51ec67552 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitorLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitorLRO.java index 9883a348fedd..bef179580199 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitorLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/AsyncCreateFeatureMonitorLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitor.java index 9f150dd7a8ab..699cb6ceacec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorFeaturegroupnameFeaturemonitorString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorFeaturegroupnameFeaturemonitorString.java index eaa4e6ffb514..0ae1ed48b375 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorFeaturegroupnameFeaturemonitorString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorFeaturegroupnameFeaturemonitorString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorStringFeaturemonitorString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorStringFeaturemonitorString.java index 30477a82f1f7..e7c7a10192ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorStringFeaturemonitorString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitor/SyncCreateFeatureMonitorStringFeaturemonitorString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/AsyncCreateFeatureMonitorJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/AsyncCreateFeatureMonitorJob.java index dc1fa0342925..48f929364f6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/AsyncCreateFeatureMonitorJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/AsyncCreateFeatureMonitorJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJob.java index aa6f9a01f5be..f5e74a843a1c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobFeaturemonitornameFeaturemonitorjobLong.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobFeaturemonitornameFeaturemonitorjobLong.java index 2ba221cbb59b..97e6f07c676f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobFeaturemonitornameFeaturemonitorjobLong.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobFeaturemonitornameFeaturemonitorjobLong.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobStringFeaturemonitorjobLong.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobStringFeaturemonitorjobLong.java index 06438217b68f..69268dfa1818 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobStringFeaturemonitorjobLong.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/createfeaturemonitorjob/SyncCreateFeatureMonitorJobStringFeaturemonitorjobLong.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeature.java index 1642a959abc0..218d8ff7433c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java index 8596ff309253..63c46b251c1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/AsyncDeleteFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeature.java index f4fe211efb0f..40791b4dc064 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java index e900925bf079..fb9b277b8dae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java index 0dad3f8e1f3e..3b451c43cbee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeature/SyncDeleteFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java index a67505cc436b..28baf70fc0a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java index c6ebe2d95023..e04575e4fdd6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/AsyncDeleteFeatureGroupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java index 8b484dc6b5ad..c454dc8a1077 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java index 2ec4d646f46b..21a86b0b92c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupFeaturegroupnameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java index eafbe79efd84..da209769e672 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturegroup/SyncDeleteFeatureGroupStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitor.java index b83033c6d07b..ad70e87384b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitorLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitorLRO.java index f4149234c9e3..7c37737290d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitorLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/AsyncDeleteFeatureMonitorLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitor.java index 4e65c097a5f8..7b98aeb3d7b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorFeaturemonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorFeaturemonitorname.java index c055db9e232c..9436ce69fd6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorFeaturemonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorFeaturemonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorString.java index 1ef727bffe11..9032d9256a5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/deletefeaturemonitor/SyncDeleteFeatureMonitorString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/AsyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/AsyncGetFeature.java index b8b0e4e16572..27304c01a93b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/AsyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/AsyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeature.java index bf18cd620d33..b276562ece22 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java index cad58406c224..640e6a5317de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureString.java index ffbc67731314..38f43cc67d91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeature/SyncGetFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java index a955fbed96cd..8dc34c30fd82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/AsyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java index a961cb2db2ff..a7690ea40548 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java index dab25c030cc4..dbae747109e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java index b55a5df30bc1..17ca5f68584f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturegroup/SyncGetFeatureGroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/AsyncGetFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/AsyncGetFeatureMonitor.java index af8b4520f9a0..ccd796acf0a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/AsyncGetFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/AsyncGetFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitor.java index 01eb935cc462..8089736695ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorFeaturemonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorFeaturemonitorname.java index 5efa0ab67578..24433b33a1ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorFeaturemonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorFeaturemonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorString.java index 219e16423600..90d2549cdfd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitor/SyncGetFeatureMonitorString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/AsyncGetFeatureMonitorJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/AsyncGetFeatureMonitorJob.java index 1c83276d4916..72863c8af7be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/AsyncGetFeatureMonitorJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/AsyncGetFeatureMonitorJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJob.java index 74ccff9feb1d..cff69b37d3c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobFeaturemonitorjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobFeaturemonitorjobname.java index 8dc455f3bcae..e83349f49b9b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobFeaturemonitorjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobFeaturemonitorjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobString.java index c2f146e4795c..08783fcd239c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getfeaturemonitorjob/SyncGetFeatureMonitorJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java index 0e70e20dc00a..058f2d6b41d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java index 033dcf0e6e6e..ba10c7bdc616 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/AsyncGetLocation.java index f41385a07b68..9d6c3c878956 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/SyncGetLocation.java index 615c7434b739..a9acab99316e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java index 10fe85d4f62c..6385a02c889f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java index 29059712c7c2..114e9f4363e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/AsyncListFeatureGroupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java index 049aa2cca7f4..ee8dd862ef47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java index daef007224b6..0801c73b2920 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java index 1f5c42294d49..2681cab62a54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturegroups/SyncListFeatureGroupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobs.java index 14b8d2863bcb..ed79c8a5008f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobsPaged.java index 11973e9c2f87..a4f1ec9ca60a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/AsyncListFeatureMonitorJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobs.java index ffddf5639680..7725daa352df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsFeaturemonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsFeaturemonitorname.java index b9817b498cea..7145b56366e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsFeaturemonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsFeaturemonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsString.java index 2ab308ced512..ad87121e904f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitorjobs/SyncListFeatureMonitorJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitors.java index f1be5ec7af91..70b853a3a177 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitorsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitorsPaged.java index 010f9cdf2606..8a206d9c6760 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitorsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/AsyncListFeatureMonitorsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitors.java index f83364d7600f..8853a1a928f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsFeaturegroupname.java index ac6c11d625df..0d4158c95b0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsString.java index cabfcc19ae83..fe381cb3efce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeaturemonitors/SyncListFeatureMonitorsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeatures.java index e927ec912fed..446c70adfa8f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java index 72cfe58cfe02..f1493355bc62 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/AsyncListFeaturesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeatures.java index df8909e37192..8c7bc516c121 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java index 471b8e77b79a..fdc9b05ee0ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java index 91f3441b9e36..a7f195ad96b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesString.java index 9ba1e997b4e0..2ae37b268f6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listfeatures/SyncListFeaturesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocations.java index d0ebbfcc9654..6b7cf3eaa07e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocationsPaged.java index 4b24e88ca497..86004391e68f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/SyncListLocations.java index ef3aaa998b34..64f3291d02d9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java index 720d94fd03ab..a737c4408373 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java index 1f51d2400998..225db42e44c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java index 65056439b7de..ff1acde18a35 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java index 5b91f54de7a8..2c94fe1adc8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeature.java index b8bc511a07c4..160bf25d4003 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java index f18c23b5b3ac..5f98a08fce56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/AsyncUpdateFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeature.java index 965f2398ca3a..3e052fd6e636 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java index c904b107d2b3..503af5482c9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java index d8a5831398fa..fb7995796fb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java index fcb77208296f..d6254c4f4fbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/AsyncUpdateFeatureGroupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java index d95ac99c2811..6f9bba7e66b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java index 6a96d0c76d86..562e6bb5ca03 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturegroup/SyncUpdateFeatureGroupFeaturegroupFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitor.java index d1022c05e999..504ebb048e45 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitorLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitorLRO.java index caaade295b3a..7d3a82d54269 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitorLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/AsyncUpdateFeatureMonitorLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitor.java index f78e58632ce7..1b364d26a280 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitorFeaturemonitorFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitorFeaturemonitorFieldmask.java index 7708b08c40ba..e5ad56a32cfa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitorFeaturemonitorFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservice/updatefeaturemonitor/SyncUpdateFeatureMonitorFeaturemonitorFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java index a2e85fd85796..5a835d2ffea2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/createfeaturegroup/SyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java index b534e2e05369..0d55a1d3ee27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featureregistryservicesettings/getfeaturegroup/SyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java index 4dfa1bbf545c..a2edf4df9dca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java index 13ea99893b6a..ae963d3cba1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java index b6b5696dbcd1..acb0c95a9baa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java index b9a7f129422e..bb0f2884f883 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java index 7ae7642284e2..13d7314ceaf3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java index 5e900b8b1f4b..75baf4d49e3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java index 7df8f414b8b1..be9fb55129ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java index b30d66a593c8..066464fe0622 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/SyncListLocations.java index d527fc146d2a..0b8962902be6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java index fe57d2ae5a49..cc68a6848627 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/AsyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java index eff619b5137b..cb03b9fa368c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java index 8a20d27e418d..7db7fd6bfbc8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java index 46d7cb42ee9c..10352d0588c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/readfeaturevalues/SyncReadFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java index 86dbb284512a..c55f6399f2fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java index afbe103827b5..5488ec88cc2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java index e7818d29b309..2e3c7cefd626 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/streamingreadfeaturevalues/AsyncStreamingReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java index 45fcf0fc5a42..de3fe32e9e5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java index ec39b54c584f..1e545ac9358e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java index b0a0ba8937fe..aa1fd070ce15 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/AsyncWriteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java index d8c749d8ea4d..8a732093da2e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java index be4f8f40a649..c503c4e830df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesEntitytypenameListwritefeaturevaluespayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java index c02e17abdacc..6b37fb1f4d11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservice/writefeaturevalues/SyncWriteFeatureValuesStringListwritefeaturevaluespayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java index acee80bdd1c1..5605e4e8d417 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreonlineservingservicesettings/readfeaturevalues/SyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java index ce7b8d49b603..d071dece636d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java index 905c5a0f19b8..270b816539f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/AsyncBatchCreateFeaturesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java index 909e475d4b7e..fac92c087b77 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java index 747526249959..504d61ac6160 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesEntitytypenameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java index a3fe3dcfc1a6..68f8415d8ca5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesFeaturegroupnameListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java index c552127bf7a1..aeb02a6c7f69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchcreatefeatures/SyncBatchCreateFeaturesStringListcreatefeaturerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java index 450410365adf..846370ce41aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java index 9fd470ac9156..b801ebe9f011 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/AsyncBatchReadFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java index e21e3a16e7a4..299f46ffbc02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java index b880149c0689..1a269cb0b90a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java index e71121663289..d06269675554 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/batchreadfeaturevalues/SyncBatchReadFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java index be3d7776a19f..cbd879bf39ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetEndpoint.java index a314b14a4a88..86741c1e9cdf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityType.java index af8245df7386..bf0d55d46a3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java index 8ca799bee531..7aa825be8697 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/AsyncCreateEntityTypeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityType.java index 19187b4cdadf..24e5507f2d11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java index 523d1dbcf673..bbe227d611f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytype.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java index e7cf3160eacb..9ed48a4fff23 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeFeaturestorenameEntitytypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java index 8b144cd3bba8..b6a8d9ae1426 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytype.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java index abee3122f59e..831495f948f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createentitytype/SyncCreateEntityTypeStringEntitytypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeature.java index 5592588afa86..c5fbc9cc9f20 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java index e022fbd26175..dbe3a580bac2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/AsyncCreateFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeature.java index bd8f8023df20..b0cbe0070d80 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java index 36f5b6156c27..2df77c6b22a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java index 7b73bf2d2417..ee082017ceb7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureEntitytypenameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java index 7fcf268b51a9..5d0c8e62e159 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java index 15e4916c7d82..4ad87fd0d279 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureFeaturegroupnameFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java index a635007a92a3..f55dc8780f58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java index f4f64cb30948..8146f5572348 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeature/SyncCreateFeatureStringFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java index 17163ef7d596..fc8a2c8a9e20 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java index deda05bcd02f..5f78390100f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/AsyncCreateFeaturestoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java index 64ff2c3271e9..c70dc7ca33a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java index d2a8116b4de7..02eeb2766b82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java index cd39672b17cc..2f59da444033 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreLocationnameFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java index ef3e260f74df..2de7a650e075 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java index 2f8f9c854eba..0e42788a7dd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/createfeaturestore/SyncCreateFeaturestoreStringFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java index 70f4d45f9a26..2f2aa0186251 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java index e3f4ce2799f6..09c6a7897ca0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/AsyncDeleteEntityTypeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java index c6d28a7a10bf..8b9c0c99e671 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java index 9ad4e60f059f..857e7d005072 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java index 32343303db87..00c109d3daf2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeEntitytypenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java index 4eefc76f5af4..d5f77c66025d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java index f8069c23d9b3..e65a5bce1e51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deleteentitytype/SyncDeleteEntityTypeStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeature.java index 12d0ccb08794..8e3ff466b0f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java index 36cfa1dedb3b..8de6944a4d87 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/AsyncDeleteFeatureLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeature.java index 246c0a0edfd2..4407cad2d919 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java index e84f935697e3..6d4102fbd786 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java index bee6f10541ba..b083e7eb04b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeature/SyncDeleteFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java index 78b9641a896b..b568e1a58f2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java index 589f4a1ebcfc..a880ea867171 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/AsyncDeleteFeaturestoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java index 1458375eadea..0f21e3a0de30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java index f985b4c9f25a..32be291495a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java index 30f90d20855e..46ad6dc1d377 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreFeaturestorenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java index a0a0d2a83047..c752790e7abb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java index 2923247c7b70..a8d0012d0fed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturestore/SyncDeleteFeaturestoreStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java index f1a9bc76c0c1..0db19bbd928c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java index 835a618ea764..9870bc5d3bf4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/AsyncDeleteFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java index 1b9b70bdf7c1..7020f4c2be5d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java index 6520f948c4a8..37369a2a8439 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java index f4576539cc85..2015744de2c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/deletefeaturevalues/SyncDeleteFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java index 49c9cc43b498..23381871e090 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java index befa90079c0e..6e020aa0f10f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/AsyncExportFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java index 808177451371..3592cfe9e33f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java index 17f3224b64cb..48b5243aaf0d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java index eee54ecddd9c..8671c0c3c767 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/exportfeaturevalues/SyncExportFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/AsyncGetEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/AsyncGetEntityType.java index 48ea0a8c403a..aea7966490a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/AsyncGetEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/AsyncGetEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityType.java index 5a4385804410..4817dc22453f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java index 52fe68788b61..88e9d106b339 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java index f70ee317f713..142f8ef49afe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getentitytype/SyncGetEntityTypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/AsyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/AsyncGetFeature.java index b4fdefa986fb..ee566d9a19b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/AsyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/AsyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeature.java index 8457aceb1106..4f673bf4f855 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java index 45d3d4fe3b2c..bf7bf0712457 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureFeaturename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureString.java index d0682d5be02f..2d0493978594 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeature/SyncGetFeatureString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java index 7308255f6cb7..abeafd5d61d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/AsyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java index 445eb4dcf257..a41add0a786f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java index 659b34b1ac47..06570ded04ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java index 2fc66658b861..86812d752654 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getfeaturestore/SyncGetFeaturestoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java index 9b7f88dfb172..9f8dbb4fbe47 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java index ef884dc0209c..0e50d65a66f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/AsyncGetLocation.java index d332a3853351..e58c6864fe7c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/SyncGetLocation.java index 74e636b225ad..7a8e6873d7d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java index 91dc3c957e2f..abfbbeffb0e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java index 0dccab2a1c0e..92adedfbaa08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/AsyncImportFeatureValuesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java index 0eb9fc43c769..cf0a75d3c81a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java index 682bb5ae1cf6..6bc5b8c0e926 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java index fb43a8e40344..f1944c1280a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/importfeaturevalues/SyncImportFeatureValuesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java index 86981778884c..d11bd276b5bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java index 98396191d557..851514ebdf6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/AsyncListEntityTypesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypes.java index 34a2aa714ab5..e03b7ff8bd2e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java index 2c2b2ba26f3d..ed57afbc5ceb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesFeaturestorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java index c5b03a1d1243..d9a2128336f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listentitytypes/SyncListEntityTypesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeatures.java index 868e7aeabf3f..6c17c0f90b7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java index 7927ea9d585c..8df5bea1d5cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/AsyncListFeaturesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeatures.java index 49e08ebf656d..05723f8f75ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java index a3094541b280..6fe56b63746c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesEntitytypename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java index 1f33953033c4..a28c40c6d638 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesFeaturegroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesString.java index f340976bb4e0..1e49f6342e1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeatures/SyncListFeaturesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java index 0b1c2d489b29..007af1f94f2a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java index 1d8891c13c9a..94e2e7a9fec3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/AsyncListFeaturestoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java index 46fe6ffb9768..c1d4b73ed329 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java index 8980b354135a..be5850a5407f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java index f3727fda6f9a..b02d0c52d2c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listfeaturestores/SyncListFeaturestoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocations.java index c694d9c52294..89a51123116d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocationsPaged.java index 299b3535c8a2..add73de79d7a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/SyncListLocations.java index 9ed253926a33..02ff00a538bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java index 3e5aa4d2f6b3..7e51040307e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java index 36891155dd1b..b23d7f8ea28d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/AsyncSearchFeaturesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeatures.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeatures.java index 33eaf7300070..3da467ed89af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeatures.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java index a362f1cf026e..bcfff4284a44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java index d1dfdf665ba7..2531d643af31 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java index 30953d1050bc..5ca64e668482 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java index 31b783f9bd82..d76288eaa4a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/searchfeatures/SyncSearchFeaturesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java index b4332e5eb8d9..9b2ddefd6f02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java index dd0b702cfaee..9720424ecc61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java index b3ac195e9bac..2cdb684611c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java index a87ecfdefa00..ab2cf6638ee0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java index b154414cf24e..515aa0a02816 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/AsyncUpdateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java index 8115eaea3517..797a1bb3fbbe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java index ac663c27d0d8..19d7c2dd09c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updateentitytype/SyncUpdateEntityTypeEntitytypeFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/AsyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/AsyncUpdateFeature.java index dd7125eed3d7..c18e7bfc0a28 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/AsyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/AsyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeature.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeature.java index 8d74fe9efd3a..bcd07134f65b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeature.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeature.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java index f3e269d20928..7078918c17ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeature/SyncUpdateFeatureFeatureFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java index 578abf2f8440..79e759739a0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java index 7b6e37ab2cfa..8ab6032d0bd0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/AsyncUpdateFeaturestoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java index b78719b4b139..ba264daaedee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java index 507a0dd74342..36f876779186 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservice/updatefeaturestore/SyncUpdateFeaturestoreFeaturestoreFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java index bbff85e4ac37..2056ce8718d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/createfeaturestore/SyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java index cc545c872ca5..e835cdf13b5b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/featurestoreservicesettings/getfeaturestore/SyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java index 6a925d85e867..c695e5e7b87e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetEndpoint.java index bf5a1e559d57..2f0150580abb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java index cd8c20a27ded..aa37c44eff93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/AsyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java index f0596ed166b8..fda99e5dd140 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java index a5fb5a0224d1..3170a90432cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentLocationnameCachedcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java index c50e4492124e..f5274b1e9fc0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/createcachedcontent/SyncCreateCachedContentStringCachedcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java index 7ef5c058c2d0..2a350e3c81a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/AsyncDeleteCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java index f0820dedf9ad..d6c5a89ef90d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java index 17ff915a221b..00e7fa51a565 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentCachedcontentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java index 236aa5c27241..84cdea5ba3d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/deletecachedcontent/SyncDeleteCachedContentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java index 0a0cd412a480..67d2b4ee14a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/AsyncGetCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java index ca79ca56f31d..2d72f079c98b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java index fe6ba595b209..e87be8815103 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentCachedcontentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java index b8188ebc4a4a..2d63c0bcd9b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getcachedcontent/SyncGetCachedContentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java index 1fcfa12d2ca9..74a06f58412d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java index 4b7be2d0654d..d0969ba47bf4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/AsyncGetLocation.java index a699ac14b3c7..968b19103b40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/SyncGetLocation.java index 38d6eb150da8..da1d69482223 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java index 05a4dd4cfb3f..b5f580906e10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java index 3f8caeb804e8..60efa593e229 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/AsyncListCachedContentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContents.java index 952eb2632ad1..1d5aa142fff5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java index 29c5bfb9a2ae..14e8e76f3616 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java index f0471ff9912a..d49dac18af8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listcachedcontents/SyncListCachedContentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocations.java index 94bedc6f6cca..2160f76b17e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocationsPaged.java index 1edc4aea9808..a8c1aa9c9896 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/SyncListLocations.java index 4aa8e1196dc5..ae3e2353a2b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java index 3121ed154d41..4f9e8f3d2ebd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java index 76c234d4aa65..061ee1c930d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java index 1a573ad618f6..a74d20e1d661 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java index 2f3e7e69f2dc..006aade3c446 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java index 3c2a0435b809..24dd7112fda0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/AsyncUpdateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java index 322b4af834ec..67a359571484 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java index 31e78dbea466..1344c105277f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservice/updatecachedcontent/SyncUpdateCachedContentCachedcontentFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java index 0d1fb79daad1..302da8c95a59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaicacheservicesettings/createcachedcontent/SyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java index f36b426b8204..bf3681841d3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/AsyncCancelTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java index a3395009ed6c..f05b3d47d2b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java index ff61ce20231f..ed882a58b568 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java index 4ced06fb3be6..ccee5dd719c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/canceltuningjob/SyncCancelTuningJobTuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetCredentialsProvider.java index 0ba6dadfb679..71c4b40011f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetEndpoint.java index 6806560a7d02..61401cd557c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java index 3177caac6502..cfa77fe8441c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/AsyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJob.java index c8dd18ddc2e2..89223af4c74a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java index 025f70d26f84..b6e5e19116c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobLocationnameTuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java index 4095b419f516..4095e1fd2eaa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/createtuningjob/SyncCreateTuningJobStringTuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java index 239ef7234940..e08df0ceb9ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/SyncGetIamPolicy.java index 985cc9bdad94..37caeaec9185 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/AsyncGetLocation.java index e571eae13f26..a468eec77097 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/SyncGetLocation.java index 120fb09d1455..954e3466fc44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/AsyncGetTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/AsyncGetTuningJob.java index fff0a5bfc97a..e2ed61dcc32f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/AsyncGetTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/AsyncGetTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJob.java index 3b9db4b24c20..a460319830aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobString.java index 1c95deee9dba..09d107e50831 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java index f6243bed6d3f..c896ff006018 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/gettuningjob/SyncGetTuningJobTuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocations.java index 71ddc04cad33..2aba49149a49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocationsPaged.java index 784fcd78eee8..ade992c11a73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/SyncListLocations.java index da54f7e85c5f..7a84b6931d70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java index 9169419feedb..4551a9323ec6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java index 6b9e671c68a8..91bbe50a4422 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/AsyncListTuningJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobs.java index 80d4f9a3c564..a5b848b1a217 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java index 0cb5bd3ebd6f..26dd2b7e7758 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java index b9e85c99dac9..2107d93ac141 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/listtuningjobs/SyncListTuningJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java index 4de1eb3587b7..cd0286cf3369 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java index 5e928955aad1..ded0609ea295 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/AsyncRebaseTunedModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java index 53a4d0a1e3d4..dcb55e3114af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java index 292665b2ca0d..d5c2efe51854 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelLocationnameTunedmodelref.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java index 26bf57f57dbc..c9cdacf2e784 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/rebasetunedmodel/SyncRebaseTunedModelStringTunedmodelref.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java index 02fa11f4b01f..37b3ada110fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/SyncSetIamPolicy.java index 2d3865ce8a27..2008e8912dba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java index 79981814a25d..411f6528020c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/SyncTestIamPermissions.java index 7b48ac3b3a19..5d8f661b5d66 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java index 8c010ffdea09..076256e741f1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/createtuningjob/SyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java index e19662da1906..261761b0b903 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/genaituningservicesettings/rebasetunedmodel/SyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java index 9ae4a3a8ad34..c4939f105a8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetEndpoint.java index dfa2a6ea9942..2844064c0e72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java index 2ec9c0027176..d8bf100f3d91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java index df29bfdfe2a4..a0ebe7a2b649 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/AsyncCreateIndexEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java index 844ba35ff29a..7a4b88272687 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java index 227e7c7b8a88..0c3daa3eb19c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointLocationnameIndexendpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java index 4c4a50055be9..4364cbd43525 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/createindexendpoint/SyncCreateIndexEndpointStringIndexendpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java index f862d416f80e..4ec963e82191 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java index 8fdbf6eaf84e..43c39cb1909a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/AsyncDeleteIndexEndpointLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java index 4a43b45542c6..ad5f5ec2c6b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java index 2db933e1854b..a30f3639fc8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointIndexendpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java index 70c21ad5fad7..ae6e316b603b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deleteindexendpoint/SyncDeleteIndexEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndex.java index 187fdc2d00f3..f9bad4740c02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java index c481ba7034b6..40d6420a6505 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/AsyncDeployIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndex.java index a8de381cdaab..e27f5ff12443 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java index e6af8bb24376..eb19ff8cb152 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexIndexendpointnameDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java index ae83c1336e10..90813a50b8f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/deployindex/SyncDeployIndexStringDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java index 71a7ebb5e31a..efa4191e180f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java index e1c9c830e250..ed7b18f4a125 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java index 61dc7a4018e7..cf7e5a2d2532 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/AsyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java index 377fac20f641..f49cffab9121 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java index bc7f132d72ae..a3839a761b14 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointIndexendpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java index 82cd71591191..246daef2cbe1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getindexendpoint/SyncGetIndexEndpointString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/AsyncGetLocation.java index 69e99b8c64f6..5d193be802fd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/SyncGetLocation.java index 5d5f6a8335d1..c6375676a25c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java index 4e246725f371..e2a0c538b103 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java index dd9b3ffc28ef..e10585efc71d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/AsyncListIndexEndpointsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java index 308f61d019a1..2793702dd529 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java index 7fbeda124e04..845457dfc3f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java index 7de874a5762a..da6b275bfeef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listindexendpoints/SyncListIndexEndpointsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocations.java index 42d899d94b9a..eb037214d86b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocationsPaged.java index 314133685230..cb3b7d5b62e3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/SyncListLocations.java index 6b4d6141ac29..05627ce2cb65 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java index daa1d5c3ab55..3b600fc8f3a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java index 5dc205686c77..15c58025bcd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/AsyncMutateDeployedIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java index 78da2f605f92..4d3275ed2fb8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java index c636b9f27e17..128cd6696122 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexIndexendpointnameDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java index 0cf2395cea1b..ef169cfbfc86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/mutatedeployedindex/SyncMutateDeployedIndexStringDeployedindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java index 74cc3915364c..dfb70bbca583 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java index 7ac0f18b8979..72d7ad9604a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java index b19b81633765..5b4df3f1e782 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java index 359874ecf5ea..1e07423cf9ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndex.java index 7745c5dcbcda..9aecc5bc56b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java index ae7d1cfff8a0..926eca806823 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/AsyncUndeployIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndex.java index 682267e57f8c..52aaac8e8e2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java index 1306fd95412b..7d909aa80974 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexIndexendpointnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java index 951a0c2402bb..15635762a63e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/undeployindex/SyncUndeployIndexStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java index 6c839519b8b5..6848a2eabb11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/AsyncUpdateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java index 963e04045e84..6e18174ab222 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java index 85f10fa67862..9f0105e33177 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservice/updateindexendpoint/SyncUpdateIndexEndpointIndexendpointFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java index 1bf02cccf44b..28a09c0dcda3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/createindexendpoint/SyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java index d1afd89dc1bb..00adf9dc130d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexendpointservicesettings/getindexendpoint/SyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetCredentialsProvider.java index 8175232005e2..5d49a706d9a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetEndpoint.java index a8ab6d854eb9..fdcbc5da0853 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndex.java index fada8b92b2f1..54ddb3b080b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndexLRO.java index 7ee1c2055629..7f5d0dc6a5e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/AsyncCreateIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndex.java index ef69cb855052..a71200d0f606 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java index 486a1f2c0331..085717637455 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexLocationnameIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexStringIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexStringIndex.java index d3575d9cb864..7c78662dd3cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexStringIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/createindex/SyncCreateIndexStringIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndex.java index 814a7d6f787d..7d2573050bcc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndexLRO.java index 2de1c2ca6562..53ae1fe29bfe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/AsyncDeleteIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndex.java index 0bf066f37054..ad75c814e9b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexIndexname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexIndexname.java index 5da9c15ae2a3..bcc758f0a073 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexIndexname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexIndexname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexString.java index fbc44113c1af..c2620a3c0629 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/deleteindex/SyncDeleteIndexString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/AsyncGetIamPolicy.java index 08ba7652eac6..709e7977fa0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/SyncGetIamPolicy.java index 5b1153a34cca..701ed5c83e34 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/AsyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/AsyncGetIndex.java index 57fd952e23c0..4783e0827f83 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/AsyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/AsyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndex.java index 426632305015..189922fe5e7c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexIndexname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexIndexname.java index 04ab768cca99..414047ef86f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexIndexname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexIndexname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexString.java index 6be05af4c4c0..d6d8b4cbc851 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getindex/SyncGetIndexString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/AsyncGetLocation.java index 1597b7b70ff0..1bad51653ebf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/SyncGetLocation.java index 8d54ba66855d..e3d9331751cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndex.java index 3bc6e8a944e4..e87399220f83 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndexLRO.java index 5210905e56d3..b4c8aadc08c3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/AsyncImportIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/SyncImportIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/SyncImportIndex.java index c54a92128916..0492efe9c833 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/SyncImportIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/importindex/SyncImportIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexes.java index 169d641a1ea5..b0db3d6573fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexesPaged.java index ebfc590276d1..adcdcd39e881 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/AsyncListIndexesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexes.java index 808417a8d3ff..a8b5844cca54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesLocationname.java index a22fa6857f72..11339201f53e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesString.java index 6cfee8977233..03fabaac9c84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listindexes/SyncListIndexesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocations.java index 6a6d4de8ae92..2d1a4b23d661 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocationsPaged.java index 1a347702c5d4..833e1b50ff43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/SyncListLocations.java index 6249b82b3cd7..8731cb5b054a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/AsyncRemoveDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/AsyncRemoveDatapoints.java index cca0f65f309e..a144e62272e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/AsyncRemoveDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/AsyncRemoveDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/SyncRemoveDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/SyncRemoveDatapoints.java index a5eba13fe7b9..fe63a24024d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/SyncRemoveDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/removedatapoints/SyncRemoveDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/AsyncSetIamPolicy.java index bffbfcfa8a18..6d4c26cbcdc2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/SyncSetIamPolicy.java index df163085b6e7..fb730119116d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/AsyncTestIamPermissions.java index 0891880a5b44..864035c2cccd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/SyncTestIamPermissions.java index 668cb34730ca..00fa036a6f1e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndex.java index 99de04c73c93..05b068fa2487 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndexLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndexLRO.java index 5c12ac8d5d3d..a0f25dbbe82e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndexLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/AsyncUpdateIndexLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndex.java index d74274d10789..2b5dc4283d00 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java index 239328c85076..7c6f150d4cab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/updateindex/SyncUpdateIndexIndexFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java index 698a94f90648..e6828eff9d16 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/AsyncUpsertDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java index 26d7d2ecbf9a..2945f04907fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservice/upsertdatapoints/SyncUpsertDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/createindex/SyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/createindex/SyncCreateIndex.java index 8cfed3ef2791..27303af45586 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/createindex/SyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/createindex/SyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/getindex/SyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/getindex/SyncGetIndex.java index ac66f1b74dbf..d3a0325baee3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/getindex/SyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/indexservicesettings/getindex/SyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java index 028301aa749a..56ec25e934e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/AsyncCancelBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java index ab0f831d404c..ed986eaa7ef8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java index c8137a3dc8e5..79e071bfed9a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobBatchpredictionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java index b96af49b98c4..2268c0758721 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelbatchpredictionjob/SyncCancelBatchPredictionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java index 70479763cfc3..51c9b26310b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/AsyncCancelCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJob.java index 0312dbfa3f2b..620d73676615 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java index a7c8fb2d21cf..1dbfc6e21ce0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobCustomjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java index 199edcae8f07..84f8a410ccef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelcustomjob/SyncCancelCustomJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java index ad5f73f53e59..b092fddfec2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/AsyncCancelDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java index b7a066ddbebc..7683ec6367af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java index 472cc6fa2adc..627edfbdc29f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobDatalabelingjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java index 43030aba7a79..fd17514a4eb0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/canceldatalabelingjob/SyncCancelDataLabelingJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java index a77b0f1d502d..5a0dc0084422 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/AsyncCancelHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java index 73188ab0587d..812e9ee3a58d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java index 78bf3a768fa1..25512767451c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobHyperparametertuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java index 59e65508aa37..7580639c3a5b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelhyperparametertuningjob/SyncCancelHyperparameterTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/AsyncCancelNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/AsyncCancelNasJob.java index 688925c0b635..fa3f1717700a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/AsyncCancelNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/AsyncCancelNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJob.java index 2bf72145d6ba..ff27d63e4e33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java index 730d09bea43b..0cf8a46ed899 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobString.java index 3152255c4733..22d4e407c876 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/cancelnasjob/SyncCancelNasJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetCredentialsProvider.java index 9e7a833ed29e..42096e08b6d1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetEndpoint.java index 589ec4880420..011a8a133c7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java index b976766cb6f6..6b7e203e9baa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/AsyncCreateBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java index a43098032c51..a728ffda57fc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java index df6996b317d8..93de6567d94c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobLocationnameBatchpredictionjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java index 6b0924a7e76d..dc2a33d0552a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createbatchpredictionjob/SyncCreateBatchPredictionJobStringBatchpredictionjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/AsyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/AsyncCreateCustomJob.java index b9e8186a60b3..3538a9dcb314 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/AsyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/AsyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJob.java index 10b02f732d8e..40910ce86e6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java index 1af218a8becc..b67f3d460ed1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobLocationnameCustomjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java index 63a57b656338..8b7e3ddb376f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createcustomjob/SyncCreateCustomJobStringCustomjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java index af0f15979990..056f7962f9ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/AsyncCreateDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java index 3afb918328d9..b505c8d56652 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java index df8a9d5fe4b4..f00ab52fdbae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobLocationnameDatalabelingjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java index efb23eb62a24..b7aa0c43c0f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createdatalabelingjob/SyncCreateDataLabelingJobStringDatalabelingjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java index 3c4f33eb21ba..af99b36197a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/AsyncCreateHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java index 924eb3e67d3f..a5f4a2fea5cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java index 028a67a5b6cd..d6e4027d56b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobLocationnameHyperparametertuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java index 39fcb9e554da..4d38660e649b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createhyperparametertuningjob/SyncCreateHyperparameterTuningJobStringHyperparametertuningjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java index 125599c161e1..c2c9391fafb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/AsyncCreateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java index 7f47142bc410..838c607ffec9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java index 92c569154e3e..3318da71f7db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobLocationnameModeldeploymentmonitoringjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java index a739f859756d..33e7d46c53a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createmodeldeploymentmonitoringjob/SyncCreateModelDeploymentMonitoringJobStringModeldeploymentmonitoringjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/AsyncCreateNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/AsyncCreateNasJob.java index a49b4b08bed9..7c701838ef40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/AsyncCreateNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/AsyncCreateNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJob.java index 69e672c74c89..3a70780df7a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java index d9ac4ae07c00..7b28cec96c70 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobLocationnameNasjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java index daf150f3291c..f2206fe347b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/createnasjob/SyncCreateNasJobStringNasjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java index e5d7c50538cb..9cb79cf44f69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java index cd2019ab7628..ad221f0b037d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/AsyncDeleteBatchPredictionJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java index 0e728425d8f7..d8845638c669 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java index 6f8ca918068c..7e24a7ea78e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobBatchpredictionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java index 8e6a8a25c1b0..cae8bcf2df94 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletebatchpredictionjob/SyncDeleteBatchPredictionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java index f7700a6d5952..6fb42c523cbe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java index 44cef29994fd..b09098e45b3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/AsyncDeleteCustomJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJob.java index 8a107b8f50cc..26613938272b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java index 4243e10fa1af..505c45f76904 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobCustomjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java index 5250c33b26bb..2b1870ce0464 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletecustomjob/SyncDeleteCustomJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java index d5958d2d30b2..dd0eca3a579e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java index cfb9b7883e3c..41d5135f77a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/AsyncDeleteDataLabelingJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java index 3948090d8ed5..2b0ba29ab997 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java index 2b1ef33d962f..2a3e7f0197d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobDatalabelingjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java index 4d52b257e0c8..dbd8c46e6a21 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletedatalabelingjob/SyncDeleteDataLabelingJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java index 0dd36c97b361..a568cbea1146 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java index 56ca0e69b99c..f8fb79b9d129 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/AsyncDeleteHyperparameterTuningJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java index aa150a6a50c3..f5cff6413c71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java index 93b65857d516..22dd3719652d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobHyperparametertuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java index ac39b954338f..446683af679c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletehyperparametertuningjob/SyncDeleteHyperparameterTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java index c13d64ed8366..88a14b3b6100 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java index bfa46b89a65f..e62d99b46849 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/AsyncDeleteModelDeploymentMonitoringJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java index 55ee657469f1..7e2458ee5fd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index 2df519340e02..b88a4169f13c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java index d05c8ee1e68d..98ddee87f4e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletemodeldeploymentmonitoringjob/SyncDeleteModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJob.java index a7f904663dcb..7b46b624bec7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java index 7368f8f4a0ff..7fa64a77b1e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/AsyncDeleteNasJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJob.java index 54fbc0dab6e2..0ee5d6910b01 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java index 86f97276ccfa..87d895bfdbe7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobString.java index 67a8e2312436..a708f11c0329 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/deletenasjob/SyncDeleteNasJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java index 38a4f4aea1ab..b052c20d6923 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/AsyncGetBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java index 7866ca843ea2..1876d134a790 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java index 567c65de0000..a8a91b1631b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobBatchpredictionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java index c89df50a7e15..b1cc325f0168 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getbatchpredictionjob/SyncGetBatchPredictionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/AsyncGetCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/AsyncGetCustomJob.java index 35d3992261b6..c742b838aacb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/AsyncGetCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/AsyncGetCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJob.java index f30355ad2a73..244b7a2c51cf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java index d2b9a9c5c40f..e9dd97432999 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobCustomjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobString.java index 25aa2f60885c..f5a4f85b627f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getcustomjob/SyncGetCustomJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java index b8325dd8eea9..9b806a70545a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/AsyncGetDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java index cdd573d37aaa..5abe57bcafa3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java index 3dd64b84ad34..1959e82ea02d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobDatalabelingjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java index cb4c59111c07..d5bb6d8fe26c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getdatalabelingjob/SyncGetDataLabelingJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java index 64c5153a75cc..d80be163132d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/AsyncGetHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java index f1569fb0d74b..b7a0c8d5355b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java index 18a1ea093e01..77f643ead6d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobHyperparametertuningjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java index 216c469a9bdb..e499e9a101df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/gethyperparametertuningjob/SyncGetHyperparameterTuningJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/AsyncGetIamPolicy.java index f4e30b658eb6..df1b02e832e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/SyncGetIamPolicy.java index e361ec6bfade..9ea0277386fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/AsyncGetLocation.java index 140c326b4f03..d7d131dc0eb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/SyncGetLocation.java index 741a4460c4a8..ffac362b71a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java index 4d4daafe0362..23b4c5f606f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/AsyncGetModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java index 886ed4a8ebe0..ecd2e09a6089 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index 3e90f3b5332d..6c40f18468c9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java index a0d652025b19..4ab440b11f7a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getmodeldeploymentmonitoringjob/SyncGetModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/AsyncGetNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/AsyncGetNasJob.java index 6dbb47cc0a73..57d11d40b2b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/AsyncGetNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/AsyncGetNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJob.java index be0f1b585a8a..1fcc379eb7a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobNasjobname.java index 522d2e9ab038..353aa84eaaf8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobString.java index 38012ef2ba07..372826539ada 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnasjob/SyncGetNasJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java index 3113b6b9cf20..de6a91d309b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/AsyncGetNasTrialDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java index aa9671f40e50..797478c5865d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java index 79969dcbceb9..121e884d6b0c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailNastrialdetailname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java index 85acc3ed70be..caadd2538fe3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/getnastrialdetail/SyncGetNasTrialDetailString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java index d4fc83b94e4b..6fb22ab75a75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java index a7af30581ec1..0e0136fada6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/AsyncListBatchPredictionJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java index 284e8baa8b2c..508dd3909583 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java index 2e323914db90..724ebdae9f61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java index 7bce193122ae..98a90b2e15df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listbatchpredictionjobs/SyncListBatchPredictionJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobs.java index 53ecaba295da..81a73afc4b42 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java index cb3af252d88e..041ab78cd068 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/AsyncListCustomJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobs.java index ad58aed84ecf..ed618c1e8924 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java index 2f375872353b..d1d368b124d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsString.java index 1feb7a570c2c..78c5d01b1631 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listcustomjobs/SyncListCustomJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java index 0e3e5876e326..1d55e82f5395 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java index be99f71cff28..5d5889583eef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/AsyncListDataLabelingJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java index 4f38e6e236d0..504b35fcddfb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java index 7ac53b8e622e..bbd806213095 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java index e6951aa68352..d873a4bf8bf7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listdatalabelingjobs/SyncListDataLabelingJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java index 9b7537f99e39..3386cee65630 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java index 357916a9b288..db72b470acbb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/AsyncListHyperparameterTuningJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java index c71c14ec695e..8555d30c96e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java index 40297257fb34..c10277f91f90 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java index 57b937255089..12303f3c7081 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listhyperparametertuningjobs/SyncListHyperparameterTuningJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocations.java index cd53c4924269..941a74242699 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocationsPaged.java index 23452dde47ad..ba39e0da550a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/SyncListLocations.java index a8def6e365d0..324127290242 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java index 620951e6f0fd..2a39de581467 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java index ff17e10077f0..7b36b10d5e7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/AsyncListModelDeploymentMonitoringJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java index 47b49c931b80..154966410a7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java index fea7e37b7ad1..05ef995a3ba5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java index a93555c065b8..3be41f0b8c6b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listmodeldeploymentmonitoringjobs/SyncListModelDeploymentMonitoringJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobs.java index 84af6e3b2f4c..13b55093e153 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobsPaged.java index 3e726cf87a4e..a20053852c4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/AsyncListNasJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobs.java index 4e5b7c3d54bd..4cd5ff163148 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsLocationname.java index 412d0a917d86..3cc8c2bf1f6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsString.java index 2e3596824fdc..47fab5f141e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnasjobs/SyncListNasJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java index 5decb79bc7c0..5ffe4054913a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java index 50ec6bd51d35..fa5e40850a37 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/AsyncListNasTrialDetailsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java index bfb32ba317d3..725b81dd353e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java index 14d992452e23..3778b1318385 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsNasjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java index a13c7b52167e..a8a86708b19b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/listnastrialdetails/SyncListNasTrialDetailsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java index 2ea46fb7669e..48203a148903 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/AsyncPauseModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java index 51e1d53ada33..6e17938d3526 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index 942bcfaa7a80..5417cfe5bad2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java index e6c02d52e96b..6146d1328de3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/pausemodeldeploymentmonitoringjob/SyncPauseModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java index 6760e7b6c94e..ca9925372db7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/AsyncResumeModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java index 4aa13bbb0685..66cbd6d4852a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java index c38d766b86df..1556367f7c49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobModeldeploymentmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java index 0383fb149e32..2fe529b12c35 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/resumemodeldeploymentmonitoringjob/SyncResumeModelDeploymentMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java index ec0e0afb7281..fbc32657f302 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomalies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java index 60103d620a53..01398cf29274 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/AsyncSearchModelDeploymentMonitoringStatsAnomaliesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java index d3fe8700ff7f..05e45da2639d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomalies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java index b3a94953a271..781ea987fc60 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesModeldeploymentmonitoringjobnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java index 208742a4189a..90c044d61309 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/searchmodeldeploymentmonitoringstatsanomalies/SyncSearchModelDeploymentMonitoringStatsAnomaliesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/AsyncSetIamPolicy.java index 78346d74e684..dd772735a1c1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/SyncSetIamPolicy.java index 06fa2cb4460f..5a162c9ac0e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/AsyncTestIamPermissions.java index 2ffa7e38f3b6..6b58b8173db1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/SyncTestIamPermissions.java index fef138348815..113d6190bcbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java index 03a5167598c5..d18bf0375dee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java index f7127620af72..d7bec0ff3711 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/AsyncUpdateModelDeploymentMonitoringJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java index 8234a526b179..7cc86e9f90fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java index 6875c22b2411..7df4381e37b0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservice/updatemodeldeploymentmonitoringjob/SyncUpdateModelDeploymentMonitoringJobModeldeploymentmonitoringjobFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java index c65ee4c526c3..8d9562c6a425 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/createcustomjob/SyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java index 71b196aafb23..d7ac832d3a6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/jobservicesettings/deletecustomjob/SyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/AsyncComputeTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/AsyncComputeTokens.java index 761a99667599..d5d957193df1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/AsyncComputeTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/AsyncComputeTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokens.java index 40bc8e3e292e..3861eab6efeb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java index ddba35f8a262..7aa92da32be6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensEndpointnameListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java index 0e897c03b196..cade956eb1c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/computetokens/SyncComputeTokensStringListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java index c943afc52a48..14f695c9a380 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetEndpoint.java index 8221545b60c1..cc403657c331 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java index 641e98227ae9..36db071a1691 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java index 84e330af4fed..5aada2feebed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/AsyncGetLocation.java index 9a9f140f59c5..aafa40db775f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/SyncGetLocation.java index 95a756d8eb8c..bbcf331c0013 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocations.java index ad82b1375505..947ec2c2f511 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocationsPaged.java index 411b82e5c456..8fbba0936c9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/SyncListLocations.java index 77caef60efb9..0a9740f19563 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java index d965e5a6169c..9b66b36576d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java index a512e26d7de6..6bbda380101d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java index e69910978d6d..81198e850617 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java index 60f9e6b2751b..d8ca5c991b76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservicesettings/computetokens/SyncComputeTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservicesettings/computetokens/SyncComputeTokens.java index b0b5e880b1f4..55cad9fc9c6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservicesettings/computetokens/SyncComputeTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/llmutilityservicesettings/computetokens/SyncComputeTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetCredentialsProvider.java index bbb0a2ce59a1..71414740add7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetEndpoint.java index eec1b23f89dd..5ff4f695ad81 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/AsyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/AsyncFindNeighbors.java index b3b2ce725561..81244ddc6741 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/AsyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/AsyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/SyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/SyncFindNeighbors.java index c4805af1aa0c..8f7b74d25d0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/SyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/findneighbors/SyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/AsyncGetIamPolicy.java index 95cc11dd311a..67ff4c8b3caa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/SyncGetIamPolicy.java index dcba69566ad6..a2f427890b92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/AsyncGetLocation.java index 3a3a8a50eb94..703f91f50e12 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/SyncGetLocation.java index 7e3f25d069dc..6b2157b407d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocations.java index e462bf7c190e..c6b48513073e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocationsPaged.java index 07ff45fa9fd9..753b34d1f2de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/SyncListLocations.java index 11fdce733504..c80e2cb396b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java index 2cf15288dc4d..c489bf6d987a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/AsyncReadIndexDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java index 1a3c4f0271d9..da85a7a31ffd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/readindexdatapoints/SyncReadIndexDatapoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/AsyncSetIamPolicy.java index 4c66a9266e3d..0ad6dd9f247c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/SyncSetIamPolicy.java index 9041501898c2..ff7b200c5ec8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/AsyncTestIamPermissions.java index 7bfb3ccc355d..18d1a54a20a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/SyncTestIamPermissions.java index b62a3cb98619..fe12d01b5dfb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservicesettings/findneighbors/SyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservicesettings/findneighbors/SyncFindNeighbors.java index 49f9d8cfa147..a07767a8f92c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservicesettings/findneighbors/SyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/matchservicesettings/findneighbors/SyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetCredentialsProvider.java index 640c0b3f5bbd..002e0993c079 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetEndpoint.java index 2f5c38aa562c..16e77ba50b9f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemory.java index f9929070977e..05dd14405e6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemoryLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemoryLRO.java index ab3518896759..c5943eaef9fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemoryLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/AsyncCreateMemoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/SyncCreateMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/SyncCreateMemory.java index 012b5d5e3c86..6199f75fca67 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/SyncCreateMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/creatememory/SyncCreateMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemory.java index 385d170a0099..61d7a45602aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemoryLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemoryLRO.java index 04f1e62c6e8b..574619d633a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemoryLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/AsyncDeleteMemoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemory.java index 32443bb5ba35..f4c184963356 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryMemoryname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryMemoryname.java index 75ecdab87715..3f6c58dcfa9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryMemoryname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryMemoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryString.java index ba567575fd00..77d81f6f9702 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/deletememory/SyncDeleteMemoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemories.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemories.java index 28a7f917c8bf..1552fadf7bdc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemories.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemoriesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemoriesLRO.java index 7ff278f90d3a..f80442578bc7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemoriesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/AsyncGenerateMemoriesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemories.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemories.java index 0bc78f461c74..e5d64f8a34f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemories.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesReasoningenginename.java index 72cc685a5e18..88f916ec791d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesString.java index 0aa1296db4d5..86cb9783d796 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/generatememories/SyncGenerateMemoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/AsyncGetIamPolicy.java index a540a0eaf573..49eeee7c374c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/SyncGetIamPolicy.java index 331e2ac40ec8..e32292bc0ed9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/AsyncGetLocation.java index 84975be5978a..d5f82c237c04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/SyncGetLocation.java index 9793e7c0229c..91282facd938 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/AsyncGetMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/AsyncGetMemory.java index 9ee926806c5a..303894da7304 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/AsyncGetMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/AsyncGetMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemory.java index 75fc08fc7a0b..aef2626c6e4a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryMemoryname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryMemoryname.java index 38cdfd43e569..9384829323ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryMemoryname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryMemoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryString.java index 62a5e266e343..da2ddf448b5d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/getmemory/SyncGetMemoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocations.java index e965b1c4045f..2e193adabd2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocationsPaged.java index 7ae3b980c533..c4cedb19ee4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/SyncListLocations.java index d91ab1525189..3428ff828bfd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemories.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemories.java index 2d00a8ea7712..0573bd0005f0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemories.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemoriesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemoriesPaged.java index 6797ab487af2..2d768bf1143c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemoriesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/AsyncListMemoriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemories.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemories.java index 42b2ca1e3afe..8bce595640ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemories.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesReasoningenginename.java index 85b34289122b..5655b15946b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesString.java index 5baca0d8602e..1945728e1519 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/listmemories/SyncListMemoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/AsyncRetrieveMemories.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/AsyncRetrieveMemories.java index 55c76a6ccbff..10c528445313 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/AsyncRetrieveMemories.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/AsyncRetrieveMemories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemories.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemories.java index 5e7eabbd604b..2972c49897db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemories.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesReasoningenginename.java index 6313940c117f..2e40776e9ada 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesString.java index 6a7e96fd3900..2a4451d4c91e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/retrievememories/SyncRetrieveMemoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/AsyncSetIamPolicy.java index 4f2706581cbb..48de02b94656 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/SyncSetIamPolicy.java index 72f3d2c55706..7e56b8621def 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/AsyncTestIamPermissions.java index 6ed4cf20e82d..697c66825a66 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/SyncTestIamPermissions.java index 99e625f237e2..122452be863e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemory.java index 40845a79cecb..b5ff11f29752 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemoryLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemoryLRO.java index 6cb0d162f981..c04004fae5aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemoryLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/AsyncUpdateMemoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemory.java index ff3350ffc45a..b837b9c4c997 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemoryMemoryFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemoryMemoryFieldmask.java index f0020ad2abab..b0705a490602 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemoryMemoryFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservice/updatememory/SyncUpdateMemoryMemoryFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/creatememory/SyncCreateMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/creatememory/SyncCreateMemory.java index 4b639049cfb7..21eaefc8578f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/creatememory/SyncCreateMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/creatememory/SyncCreateMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/getmemory/SyncGetMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/getmemory/SyncGetMemory.java index 4a8c4bc12257..18d05be13ebd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/getmemory/SyncGetMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/memorybankservicesettings/getmemory/SyncGetMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java index 7fcdd29fcb26..79b78f39b909 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/AsyncAddContextArtifactsAndExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java index c069c0c9508c..e8b8932d612c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java index c76be1b92b35..e26a0bb3aa63 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsContextnameListstringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java index 335ebdb06f4e..8ca7ffaab8e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextartifactsandexecutions/SyncAddContextArtifactsAndExecutionsStringListstringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/AsyncAddContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/AsyncAddContextChildren.java index 41d98d7539e6..bb6857a25c69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/AsyncAddContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/AsyncAddContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildren.java index ed7497526857..410bfff5d31f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java index 29fc1057b2ca..af7ecc1ae9a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenContextnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java index 41177d849ded..2f48f8682cda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addcontextchildren/SyncAddContextChildrenStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java index b98dbf38dd6b..8a1c3b86429f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/AsyncAddExecutionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java index 7837f512ca5f..d585ec601b14 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java index cc6e06980b1e..0512c2473b9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsExecutionnameListevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java index b41b3f77c0a0..ff2323c9bc27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/addexecutionevents/SyncAddExecutionEventsStringListevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetCredentialsProvider.java index 84056f0368a0..25a04504c364 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetEndpoint.java index 9a6db08cdb68..17ac7532578a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/AsyncCreateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/AsyncCreateArtifact.java index 113fd014fc6c..73415617ffb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/AsyncCreateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/AsyncCreateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifact.java index 2ce340c798e9..ff8b57fa953f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java index 70aa53de8b94..361669973f31 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactMetadatastorenameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java index 742d2f2f06ce..0274d1f8d509 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createartifact/SyncCreateArtifactStringArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/AsyncCreateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/AsyncCreateContext.java index 24cb01f2da8f..6d539754c43d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/AsyncCreateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/AsyncCreateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContext.java index b8278b514b58..3d845d7578e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java index 73a1636c826c..d0f36b83e0e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextMetadatastorenameContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextStringContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextStringContextString.java index 8ce3b7da9c98..92cca3dd6f37 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextStringContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createcontext/SyncCreateContextStringContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/AsyncCreateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/AsyncCreateExecution.java index 1f15d0d0723d..da1c161ab095 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/AsyncCreateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/AsyncCreateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecution.java index 24a06bbe373c..766a024c27e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java index 2b73193487cd..d9025ecbcd91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionMetadatastorenameExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java index 7dd8bccc3adc..d7ec15d9c018 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createexecution/SyncCreateExecutionStringExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java index ff1bc52e9240..3e2e37014a0e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/AsyncCreateMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java index a31933e8ca5f..39ca9a46293d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java index 43a2bf8954fd..e72590406a3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaMetadatastorenameMetadataschemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java index a96f9ccb3287..feddd024b1ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadataschema/SyncCreateMetadataSchemaStringMetadataschemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java index 5bbdb43816ba..6448ceb249a5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java index 1461cf8585cd..004968ecce58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/AsyncCreateMetadataStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java index fccf08f353f5..34997e98e534 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java index 50577bee161e..ef485b49fcee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreLocationnameMetadatastoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java index 7513aaa3b6ec..5f7dc92ace71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/createmetadatastore/SyncCreateMetadataStoreStringMetadatastoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifact.java index ccfb5c628c86..b52b0196c0ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java index 9c4c7c6b817f..87b931e85af3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/AsyncDeleteArtifactLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifact.java index d12e00d2f2d2..21a64e7d7ea2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java index a19bbaf90e1a..da6feae5c96b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactString.java index 4a316ca331b5..5f60a249c823 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteartifact/SyncDeleteArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContext.java index 269f59414f31..f4ef1ffa652a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContextLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContextLRO.java index 945bcef10ce9..52d1fbcb541f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContextLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/AsyncDeleteContextLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContext.java index ffab1761baa9..6f028f1b3bbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextContextname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextContextname.java index cbeba6ee4b14..a767f8ff361a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextContextname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextContextname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextString.java index 444d047eb074..36f0672dcf9f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletecontext/SyncDeleteContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecution.java index 11a8787c4b06..a025222fd11b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java index 30db51042ed8..8900bef6a65a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/AsyncDeleteExecutionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecution.java index 9fbbf3c5e1bf..21f1bd6b452d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java index bc481df27e43..fe3d3f14486e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionExecutionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionString.java index ad84c33f5c1f..a1bc80301a54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deleteexecution/SyncDeleteExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java index 3c2fc1994bda..ddb7ed5ef9d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java index b26521c6bcff..eac9880b9b1a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/AsyncDeleteMetadataStoreLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java index bb02570f70af..30c655fe5329 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java index 5acb1dd387be..3ff782b46ff7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java index f407ca8f5116..f930953c2822 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/deletemetadatastore/SyncDeleteMetadataStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/AsyncGetArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/AsyncGetArtifact.java index dfabb97df377..61aaa61b65e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/AsyncGetArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/AsyncGetArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifact.java index 847ee6806d79..2872520edfda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactArtifactname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactArtifactname.java index 502424432d1a..cd1a0e239195 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactArtifactname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactString.java index 691ed693dff7..6ff712abd882 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getartifact/SyncGetArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/AsyncGetContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/AsyncGetContext.java index 5ac99478b495..239952361e75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/AsyncGetContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/AsyncGetContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContext.java index ad96502dc8aa..b46544450fa1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextContextname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextContextname.java index 0ba652bfb516..79866444d805 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextContextname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextContextname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextString.java index 61ae56468c4f..2339a2661c58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getcontext/SyncGetContextString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/AsyncGetExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/AsyncGetExecution.java index ee4cf35e8989..6b703ca1097a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/AsyncGetExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/AsyncGetExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecution.java index fcc7e37ab36b..35629b2d82dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionExecutionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionExecutionname.java index 4b64dc785faf..f4f2c55233f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionExecutionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionExecutionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionString.java index d0f7f19f714e..f82ed576db11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getexecution/SyncGetExecutionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/AsyncGetIamPolicy.java index 430b1223d8f8..679ca18f36b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/SyncGetIamPolicy.java index 8032202495e7..c253941d8c76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/AsyncGetLocation.java index 14164c0ba415..8080c49f4005 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/SyncGetLocation.java index 0b18f36e8be5..fde0eff3bf90 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java index d9bc4be3295b..cf855325daa0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/AsyncGetMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java index a10a570b400c..3f40fe5f58dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java index 9664095246c4..976bfd1847ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaMetadataschemaname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java index 535dce250ba8..25f3582115a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadataschema/SyncGetMetadataSchemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java index 379762130e48..4f4082556604 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/AsyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStore.java index e54b6879535a..2aaf90ef645c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java index 6171b18298cb..32d0a83c2210 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java index 5563bfcacd57..1d12fb45c26d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/getmetadatastore/SyncGetMetadataStoreString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifacts.java index 84ba7ff1ae5c..f0c567ddcef8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifactsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifactsPaged.java index 55f94b0a0214..a414904d7511 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifactsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/AsyncListArtifactsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifacts.java index eb906bb9671b..22a5ef47a987 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java index 6d3609887245..be0c87b63990 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsString.java index df5fb7a8f55d..b66055c0944b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listartifacts/SyncListArtifactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContexts.java index 15a6ea92a5b4..45e5a77c5b9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContextsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContextsPaged.java index f0dd61f8ffea..cc7d3178607c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContextsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/AsyncListContextsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContexts.java index 01876d9a892f..7460d03337ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java index a677149308d8..30246d7cc3aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsString.java index 90cd879caa9d..0ba15bf1a7ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listcontexts/SyncListContextsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutions.java index cb556c75408f..4c1ffeb2a69f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutionsPaged.java index f00c125c38e9..b7754c59a191 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/AsyncListExecutionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutions.java index 88a74fdc1f9c..ae6445ac67e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java index 754d037e98c5..113e3df34245 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsString.java index 1f9856edd148..9b1a56fe23e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listexecutions/SyncListExecutionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocations.java index 3df88eae50b4..b68bd3570a61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocationsPaged.java index 7b76a38a7261..15523ab83a7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/SyncListLocations.java index 63ad3ddcb3d5..82f76a6f06a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java index 0f1f66f3fa84..cb4763c67ff3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java index 2db797830f24..248be55ac9f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/AsyncListMetadataSchemasPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java index c13cc15564f5..63a3021116a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java index 7c80101b64d9..3081da61fdb1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java index e7ce43bf0042..f7649cca933c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadataschemas/SyncListMetadataSchemasString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStores.java index 39a098511d35..6f514bb4f536 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java index 124fed44cc8c..9b38373b6ff3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/AsyncListMetadataStoresPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStores.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStores.java index e22a387d9640..035eb6204052 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStores.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStores.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java index 3a74d0ccd664..b46809d3fbe5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java index 625a6931d47f..154c81c5b23d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/listmetadatastores/SyncListMetadataStoresString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java index 9ef662e5c834..fdc51204f89c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java index d7106a70f64d..caac6da5881f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/AsyncPurgeArtifactsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java index c0d4d6554f2e..b860e0c06d33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java index d37cd78f9f04..2d2cf1dfca7a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java index 32ea4516fd14..5602ebf1f361 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeartifacts/SyncPurgeArtifactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContexts.java index ca484c875dca..62e7207ec393 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java index 149e5ca01014..f6c108a66b36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/AsyncPurgeContextsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContexts.java index 01554c7070ae..b58418a5a7ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java index f13d0ec22826..71289b2450f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsString.java index f34c0bbb7d6c..ef630e608b6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgecontexts/SyncPurgeContextsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java index 9e22e616bbf3..1156e1a5dd05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java index 4813df6dde29..2c437c600f95 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/AsyncPurgeExecutionsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutions.java index 3825e4dd82c6..af14d3333975 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java index e4b2a99d998f..849c0cda06ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsMetadatastorename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java index 72cc8a38c708..fd23c7d37df6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/purgeexecutions/SyncPurgeExecutionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java index 0ce1d9976f82..31899f32683c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/AsyncQueryArtifactLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java index f9e5e02ee471..d35679559af7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java index ecdafae77a05..4d77beca1df2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java index bb0be8b492cb..4318cebae279 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryartifactlineagesubgraph/SyncQueryArtifactLineageSubgraphString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java index 68fc08f91cdd..4b11db4cd09c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/AsyncQueryContextLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java index 4d0dd9dbcbf1..1fc64d1de085 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraph.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java index ccc31e1d5368..76ff50901ff2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphContextname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java index 26ce5ec0f2ab..48890f9e81dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/querycontextlineagesubgraph/SyncQueryContextLineageSubgraphString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java index 649d05356606..bdf1a0f84864 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/AsyncQueryExecutionInputsAndOutputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java index 16f2adf1f78c..e3cec9af02db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java index fe9ddf5a2cf5..a868ed8bb306 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsExecutionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java index 9a7ff0a5e67b..b1b3c4921f91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/queryexecutioninputsandoutputs/SyncQueryExecutionInputsAndOutputsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java index f90f44a72743..f1956a4fdc98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/AsyncRemoveContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java index e46b0ce6b35f..f53d36c92301 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildren.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java index dd0f2c5b0c0d..a999c2aa19e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenContextnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java index cfcab8e48fbc..42ba44130ec6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/removecontextchildren/SyncRemoveContextChildrenStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/AsyncSetIamPolicy.java index 06055ddb6860..6a519d1c11ff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/SyncSetIamPolicy.java index 0c6052af3fad..0fd26ddf474b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/AsyncTestIamPermissions.java index 4d6f15a6c098..93f92ac62002 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/SyncTestIamPermissions.java index 929a7a8d9638..2bd26a1e0f9a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/AsyncUpdateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/AsyncUpdateArtifact.java index 246585de3421..f0b4a3c6a265 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/AsyncUpdateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/AsyncUpdateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifact.java index 3ab2eb324ac6..c3a3c3afec0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java index d3731d4550db..171ce87d3090 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateartifact/SyncUpdateArtifactArtifactFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/AsyncUpdateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/AsyncUpdateContext.java index eda657f506c5..e01543cd070d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/AsyncUpdateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/AsyncUpdateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContext.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContext.java index 47271c59b6d4..3660ed4b0d8f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContext.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java index 5230714e6699..95d5d3395569 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updatecontext/SyncUpdateContextContextFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/AsyncUpdateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/AsyncUpdateExecution.java index ae2f6d474667..6d9700a423bc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/AsyncUpdateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/AsyncUpdateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecution.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecution.java index da3059347c4c..509bb65574af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecution.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecution.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java index a56e85ab4fa0..bbad429f59dd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservice/updateexecution/SyncUpdateExecutionExecutionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java index aca31eaee0bd..8e87aa001cc8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/createmetadatastore/SyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java index bfdad8d30a26..636bae97fa2a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/metadataservicesettings/getmetadatastore/SyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java index 017d8b8985f3..1af28805151d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java index bf6a5c9de4fb..a5bff03d2f26 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/AsyncBatchMigrateResourcesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java index 6bbc886647b7..e6e969dbea4b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java index f153f8822f2b..c74cca0f0327 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesLocationnameListmigrateresourcerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java index 2c41268b70fc..9c4e38d332f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/batchmigrateresources/SyncBatchMigrateResourcesStringListmigrateresourcerequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetCredentialsProvider.java index ea5e3fd18718..03317fbba16a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetEndpoint.java index f7022ab04997..28cbeb10da02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/AsyncGetIamPolicy.java index 2948328de5d0..600f405edbf5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/SyncGetIamPolicy.java index 5342b9637150..fbb57c1f9d59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/AsyncGetLocation.java index ad8d5caa9f21..d8aa3d968a6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/SyncGetLocation.java index 764b1f26aba5..7959561e0f72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocations.java index 718e160a182c..67ca3971cd2c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocationsPaged.java index 4f06cda91b91..3ea70bf299b1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/SyncListLocations.java index 66205c0e3b27..df448cfc636f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java index 65db3015603f..bad2324e4dad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java index f5bc536a513b..0453f1e8cd20 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/AsyncSearchMigratableResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java index caa7bb618c9f..36d792bcb5c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java index 5b78920b0707..496fe44430b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java index 47881c2e919e..2395299c70d8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/searchmigratableresources/SyncSearchMigratableResourcesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/AsyncSetIamPolicy.java index 8b60a2cb0492..15c9d9bcaf7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/SyncSetIamPolicy.java index d87a0643ad15..a6a52f3cde45 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/AsyncTestIamPermissions.java index 836fdc0e77d7..b4875a6cc768 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/SyncTestIamPermissions.java index 32a5623d04e1..175c1bb79793 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java index 9f3a7f1c09b6..7f3eccf32872 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/batchmigrateresources/SyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/getlocation/SyncGetLocation.java index 2cf916e59c44..ecf55847df86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/migrationservicesettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/AsyncAcceptPublisherModelEula.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/AsyncAcceptPublisherModelEula.java index 3525519d5de6..83f1826cdb6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/AsyncAcceptPublisherModelEula.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/AsyncAcceptPublisherModelEula.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEula.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEula.java index 63f04c10d548..933cf4e4ebc2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEula.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEula.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnamePublishermodelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnamePublishermodelname.java index d74be4cf1082..cba5b78366a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnamePublishermodelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnamePublishermodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnameString.java index d71ad3598d47..5e289607f038 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaProjectnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringPublishermodelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringPublishermodelname.java index 34cf7d49f2d4..acb075aaa8a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringPublishermodelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringPublishermodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringString.java index 0e423ef36949..b800ce5be357 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/acceptpublishermodeleula/SyncAcceptPublisherModelEulaStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/AsyncCheckPublisherModelEulaAcceptance.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/AsyncCheckPublisherModelEulaAcceptance.java index eaa53252e064..feb9746420ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/AsyncCheckPublisherModelEulaAcceptance.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/AsyncCheckPublisherModelEulaAcceptance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptance.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptance.java index 3ac3a755f9bd..36aaef1c7273 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptance.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnamePublishermodelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnamePublishermodelname.java index b73dc3bfccca..76aad2f87150 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnamePublishermodelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnamePublishermodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnameString.java index 4e557a94af5a..8ca9c3ff3d57 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceProjectnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringPublishermodelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringPublishermodelname.java index 23ab6ccbd69d..6497a68f536c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringPublishermodelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringPublishermodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringString.java index caf1e0c72369..532fb0687c11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/checkpublishermodeleulaacceptance/SyncCheckPublisherModelEulaAcceptanceStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java index 804579225239..f1941daf1aaf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetEndpoint.java index f5862617a67d..c65e4ae8e985 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeploy.java index d4fd63b90a07..d421e4614e19 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeployLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeployLRO.java index abfd7aac3529..db7e022ffff0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeployLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/AsyncDeployLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/SyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/SyncDeploy.java index 692e48c9a097..b53c9f06a2a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/SyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploy/SyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModel.java index 24f008064c1e..f36ad9960ea7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModelLRO.java index 1401a024998b..652484363a84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/AsyncDeployPublisherModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/SyncDeployPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/SyncDeployPublisherModel.java index 4762079c8d51..667e2c5948bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/SyncDeployPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/deploypublishermodel/SyncDeployPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModel.java index e994c59d1de1..7a1685aaa447 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModelLRO.java index c6eedb7b45bc..c43a2056d47c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/AsyncExportPublisherModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/SyncExportPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/SyncExportPublisherModel.java index 9a92ee4b7bfb..10d44d94a4fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/SyncExportPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/exportpublishermodel/SyncExportPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java index 6c6747645ad9..b6771dc85b52 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java index 030a71fcbfee..1ca068b2fbe6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/AsyncGetLocation.java index 66d5cc320bfa..3a887dca16ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/SyncGetLocation.java index a349630ed728..e3b938f05923 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java index 9df78d21a679..d8c691112f69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/AsyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java index 1b6a892683f4..eaa802c5fd6e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java index ee5b10e64cf8..d1afae88923e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelPublishermodelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java index 4af9a7fed16b..4ff7f219055a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/getpublishermodel/SyncGetPublisherModelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocations.java index beeab8a0304f..e778f570ad5b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocationsPaged.java index 023ad6706a53..8003bfa63362 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/SyncListLocations.java index 0583efd93012..da4e64c364fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModels.java index 98a040c19030..16654d4a8820 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModelsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModelsPaged.java index f3e542864351..a525e5921cf7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModelsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/AsyncListPublisherModelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModels.java index 2f9a4a2f4f9e..8deb9d021cdb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModelsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModelsString.java index a2cd0742fb64..552b300a932d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModelsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/listpublishermodels/SyncListPublisherModelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java index 07a089d34389..e5d5412bff98 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java index bfe90d742e16..4096f02a5a2c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java index 930f82ce6238..b72884d99cd5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java index a12440867c01..663b1c5a0dbc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/deploy/SyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/deploy/SyncDeploy.java index 7d4492643d8f..64d017618914 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/deploy/SyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/deploy/SyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java index 9581108603db..699f2eeb77a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelgardenservicesettings/getpublishermodel/SyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetCredentialsProvider.java index c8fc24b19a9e..8856d574c0e6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetEndpoint.java index 265b479fa603..7f872793e254 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitor.java index e09d345ac3b4..f6dbd26b691c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitorLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitorLRO.java index a3004a081009..af188fdbbf66 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitorLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/AsyncCreateModelMonitorLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitor.java index eda42260f19d..64536445fef4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorLocationnameModelmonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorLocationnameModelmonitor.java index 43761b200bd7..38130e1d433c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorLocationnameModelmonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorLocationnameModelmonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorStringModelmonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorStringModelmonitor.java index eba125af8722..9e7ff7fb3c36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorStringModelmonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitor/SyncCreateModelMonitorStringModelmonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/AsyncCreateModelMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/AsyncCreateModelMonitoringJob.java index bb76c9199d2a..e87f0133c192 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/AsyncCreateModelMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/AsyncCreateModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJob.java index 54150f91b67d..b1f9682f9060 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobModelmonitornameModelmonitoringjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobModelmonitornameModelmonitoringjob.java index 9fb84aeb6921..80f96f896e67 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobModelmonitornameModelmonitoringjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobModelmonitornameModelmonitoringjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobStringModelmonitoringjob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobStringModelmonitoringjob.java index 94427b0c7b36..8b0d31688cbb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobStringModelmonitoringjob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/createmodelmonitoringjob/SyncCreateModelMonitoringJobStringModelmonitoringjob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitor.java index 06a44987b313..7349066fb455 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitorLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitorLRO.java index 96e41d2195d6..90964d73cf51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitorLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/AsyncDeleteModelMonitorLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitor.java index 25491632ddae..c59f92ecfafd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorModelmonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorModelmonitorname.java index 59fec51f57b8..278c8cd2f920 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorModelmonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorModelmonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorString.java index 22fc36dd1b8d..35b7ab9e699a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitor/SyncDeleteModelMonitorString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJob.java index 0da386c521a1..05e36457f44c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJobLRO.java index 12f7f029fa7f..be7cc4145f48 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/AsyncDeleteModelMonitoringJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJob.java index 0a027fad05bc..4176dd1ddc9f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobModelmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobModelmonitoringjobname.java index 5fefa8ccdeb0..1a77b43501ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobModelmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobModelmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobString.java index 1d06da2641c7..026a3b549583 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/deletemodelmonitoringjob/SyncDeleteModelMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/AsyncGetIamPolicy.java index 0bdcabcb0582..a7f8a7fae768 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/SyncGetIamPolicy.java index 6b12004a5f12..95cabb0e797f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/AsyncGetLocation.java index 540050fc79ca..c6a488b3d412 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/SyncGetLocation.java index 00b8ff0c7b3c..a1cecc24ce6c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/AsyncGetModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/AsyncGetModelMonitor.java index 1abfabc8cbad..5498455053e0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/AsyncGetModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/AsyncGetModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitor.java index 319813c4ccc1..3e7ea7872538 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorModelmonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorModelmonitorname.java index b62bc48dffa4..b47552b2e512 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorModelmonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorModelmonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorString.java index eec4e6b91f7f..7c1cab4f9bfe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitor/SyncGetModelMonitorString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/AsyncGetModelMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/AsyncGetModelMonitoringJob.java index cd8f927d5b48..1d2f56922294 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/AsyncGetModelMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/AsyncGetModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJob.java index d2aa7a9db2a3..fe384a54df34 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobModelmonitoringjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobModelmonitoringjobname.java index 3721e304b03b..a0211ab7f615 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobModelmonitoringjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobModelmonitoringjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobString.java index 5f8da47b198a..ae55bbb2f8d9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/getmodelmonitoringjob/SyncGetModelMonitoringJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocations.java index 6e9a1f8434b5..f3a0e0858b37 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocationsPaged.java index 7a14b88923ba..1bada90d980d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/SyncListLocations.java index 6c6a53519333..b1158ee514b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobs.java index 98e2d510c6d3..c227fdb730f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobsPaged.java index 164a8291550b..18b0688babec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/AsyncListModelMonitoringJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobs.java index 2c1d22efda57..5ef1ac428a39 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsModelmonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsModelmonitorname.java index ef748d75b2a1..dcd3c643a2a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsModelmonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsModelmonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsString.java index 783721a5ebdb..5833dd32ca83 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitoringjobs/SyncListModelMonitoringJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitors.java index 3b68831dd529..c4cf795ce769 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitorsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitorsPaged.java index 381c66d167a4..afee50b1844e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitorsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/AsyncListModelMonitorsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitors.java index f6566c60ded9..5b71fcbac931 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsLocationname.java index ea7d3edc6e52..919b01114345 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsString.java index 803892385228..fd268fba6327 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/listmodelmonitors/SyncListModelMonitorsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlerts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlerts.java index bf3ccc068ff1..cfb73cf626ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlerts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlerts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlertsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlertsPaged.java index 13f5aeb3ed85..1065f088fa0b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlertsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/AsyncSearchModelMonitoringAlertsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlerts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlerts.java index c67481b1f93d..a48115b68e5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlerts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlerts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsModelmonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsModelmonitorname.java index 032d9ceb9798..049b2561edca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsModelmonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsModelmonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsString.java index ff3294278a3c..602ac7e08142 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringalerts/SyncSearchModelMonitoringAlertsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStats.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStats.java index 8d16d638c0ea..366b50c86d49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStats.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStatsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStatsPaged.java index bf1c5c9a5a11..bf5e914b80b0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStatsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/AsyncSearchModelMonitoringStatsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStats.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStats.java index 4e3d6bd23dfa..d1a331d10408 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStats.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsModelmonitorname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsModelmonitorname.java index 8b2a2d4e4234..cd8410498b2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsModelmonitorname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsModelmonitorname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsString.java index eaaef9030e5c..f3d1a991d5a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/searchmodelmonitoringstats/SyncSearchModelMonitoringStatsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/AsyncSetIamPolicy.java index 7bcd92e05efd..6a13092cea18 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/SyncSetIamPolicy.java index 02197c6bc522..039db6dbcd75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/AsyncTestIamPermissions.java index 69a638485e3f..b3fbe29c0413 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/SyncTestIamPermissions.java index 4a3ec64bbd81..6f1387f74c58 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitor.java index 69f9bc694d09..e3e053bf37c1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitorLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitorLRO.java index d19173433f15..9e3a1bef9b6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitorLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/AsyncUpdateModelMonitorLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitor.java index db0f473b83f0..976cd94e819c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitorModelmonitorFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitorModelmonitorFieldmask.java index ebad0f21d82f..53cff09f432f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitorModelmonitorFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservice/updatemodelmonitor/SyncUpdateModelMonitorModelmonitorFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/createmodelmonitor/SyncCreateModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/createmodelmonitor/SyncCreateModelMonitor.java index 5f365a2d7dcf..c8f8303cf175 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/createmodelmonitor/SyncCreateModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/createmodelmonitor/SyncCreateModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/getmodelmonitor/SyncGetModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/getmodelmonitor/SyncGetModelMonitor.java index 0853977b25fd..aa200b39754f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/getmodelmonitor/SyncGetModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelmonitoringservicesettings/getmodelmonitor/SyncGetModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java index fb0cd436166a..0591fb1a2d2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/AsyncBatchImportEvaluatedAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java index 99fb1d184931..98475096081d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java index 6d00e3c8e16e..6675b05844f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsModelevaluationslicenameListevaluatedannotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java index dc30ce0bb676..926b7fa032a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportevaluatedannotations/SyncBatchImportEvaluatedAnnotationsStringListevaluatedannotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java index 4ff8b013be0e..990a620dc1e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/AsyncBatchImportModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java index e886e62462ad..4e18bb8472d2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java index b2482a171328..3d9994a67461 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesModelevaluationnameListmodelevaluationslice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java index 70904e86afb2..78c72c1e9fd7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/batchimportmodelevaluationslices/SyncBatchImportModelEvaluationSlicesStringListmodelevaluationslice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModel.java index 34abae3524ec..c6a0d221db50 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModelLRO.java index 052817e63792..c72fc5922e5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/AsyncCopyModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModel.java index b82a19e92a68..f7d7164fbadf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java index affcc9ff73dc..20cab5b76001 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameString.java index 272d8aeecf33..ee3d3fa22015 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringModelname.java index e29edb89fdd0..cfc50d7ccbf4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringString.java index 7b30af9b91a8..99cdfeda0047 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/copymodel/SyncCopyModelStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetCredentialsProvider.java index 84874746d16b..3d00b2a53724 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetEndpoint.java index e66d26f71291..3c94386ee3c1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModel.java index 91f01b008690..8c76c701c6e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModelLRO.java index 73ce24955f8e..4f13911e5b3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/AsyncDeleteModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModel.java index ac9bb115d39c..775d5d9133f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelModelname.java index f4122fc81066..ca5a78583105 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelString.java index 49c30d46364e..b75d5ddd24bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodel/SyncDeleteModelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java index 9ff53afc6f75..1268cfd60486 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java index eb837fbaf401..7a9690520f9b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/AsyncDeleteModelVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersion.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersion.java index 877f4d62e8db..105faac76106 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersion.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java index 87c649e7ba76..e6ed50d0a1a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java index fc34f8ef95f0..93e3a82d36f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/deletemodelversion/SyncDeleteModelVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModel.java index 2cce41421bad..d422519b210c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModelLRO.java index ed2b5cdbc29a..62698eb2b9c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/AsyncExportModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModel.java index a2710afbaf14..6b0eab212674 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java index 837cdadd41da..03cef497e6db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelModelnameExportmodelrequestoutputconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java index e70d9baf0114..180cbc5e4a71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/exportmodel/SyncExportModelStringExportmodelrequestoutputconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/AsyncGetIamPolicy.java index 08b25fcf0cce..ba0af8a44099 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/SyncGetIamPolicy.java index 6bb59d6123b9..20dbaceecf32 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/AsyncGetLocation.java index 6f5d4617ab3c..4cf6ad30c726 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/SyncGetLocation.java index 9896f6e6c0d1..7001758f59a9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/AsyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/AsyncGetModel.java index 8a2b33321425..f43db617cbfd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/AsyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/AsyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModel.java index 8f36d2830991..b597d9339072 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelModelname.java index 499043bea943..70898bccb970 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelString.java index a48a9ee961b1..1e01da19e502 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodel/SyncGetModelString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java index 4165f0902b02..846e362dee0f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/AsyncGetModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java index 84931f50ee87..0f249ccd7c9c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java index a9be104ab61a..d312bcb026d0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationModelevaluationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java index 3d05d3bf0587..4ec06a3b9c44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluation/SyncGetModelEvaluationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java index d6c0bbbfb511..030a71b29934 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/AsyncGetModelEvaluationSlice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java index cd48c7d71706..b4090541f659 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSlice.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java index 560017e330af..7292d644e301 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceModelevaluationslicename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java index 60ed7aa600bd..128dbb9ed486 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/getmodelevaluationslice/SyncGetModelEvaluationSliceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java index 29ecea7d7364..139675580efa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/AsyncImportModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java index 1737ed21678d..58fd934b08e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java index 6400846285ea..66227928a9a3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationModelnameModelevaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java index a7595e873546..2c2804768733 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/importmodelevaluation/SyncImportModelEvaluationStringModelevaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocations.java index b2cb99391ee9..1627ccebedd4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocationsPaged.java index c9f5a1da48ca..1e8f11173391 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/SyncListLocations.java index 254d2d95051d..10c82b555699 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java index 5e7232e85809..8576195ab77c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java index f6c22afd6652..e75b3dcd5210 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/AsyncListModelEvaluationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluations.java index 7ec5b33ef05a..765908378406 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java index 003ffe12d97a..97fcf03f2dfe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java index c8329d55bed4..af764fffea61 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluations/SyncListModelEvaluationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java index 17a52598e1d1..f124527ae990 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java index cfc5dec04b00..adf453d9adc6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/AsyncListModelEvaluationSlicesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java index 8c6f6ae8c302..38b43573db08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java index 9b58c1789390..aa6555bfc2f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesModelevaluationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java index 4369c871d1bd..2b020e530473 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelevaluationslices/SyncListModelEvaluationSlicesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModels.java index bdf73ab329ae..aa1e0adb3817 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModelsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModelsPaged.java index 75738d8e58ef..2815e2f11ff8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModelsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/AsyncListModelsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModels.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModels.java index 702f60b25bcb..47fdaa24420d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModels.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModels.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsLocationname.java index e97cd4fa5a78..caab4b0069cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsString.java index 1907f788aee1..d4f710391dac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodels/SyncListModelsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java index 8c15fb6885a5..9abbd184da8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java index 9656d77cd40e..a90e5728a982 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/AsyncListModelVersionCheckpointsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java index 445aaede4664..6667a2f968de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpoints.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java index d783223a587e..c040be942430 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java index feb4bb63af7e..b9af8bd84d82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversioncheckpoints/SyncListModelVersionCheckpointsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersions.java index 28de729e172a..bc680fcc6da4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java index a48f738577f3..298863e56591 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/AsyncListModelVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersions.java index 2e5f733bd04f..4dbfb56e1af6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsModelname.java index 76fee0ddd560..fe1db992e3fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsString.java index 45893dafd992..9ee8859d2229 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/listmodelversions/SyncListModelVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java index eb3733b710fb..f3a69411f297 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/AsyncMergeVersionAliases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java index 9599a4080116..c8e02d589473 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java index 5cee8b4f6512..2c6f6a979e80 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesModelnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java index e6f79fdee606..53b80f3450ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/mergeversionaliases/SyncMergeVersionAliasesStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/AsyncRecommendSpec.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/AsyncRecommendSpec.java index 988b17002e4d..2108001bcf1f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/AsyncRecommendSpec.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/AsyncRecommendSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/SyncRecommendSpec.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/SyncRecommendSpec.java index dcb3cb0918af..b24bb2483f9b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/SyncRecommendSpec.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/recommendspec/SyncRecommendSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/AsyncSetIamPolicy.java index 21d6a34d001a..8078c082006d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/SyncSetIamPolicy.java index d857c3a3f973..49922d865046 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/AsyncTestIamPermissions.java index 6adf6ee0b898..e483e4f7417a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/SyncTestIamPermissions.java index 45b15cbaa125..af31a50fbeaf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java index 50afa38ed6d1..7bbf6134b679 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java index 15a7c96a6d6f..bdbd38c35847 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/AsyncUpdateExplanationDatasetLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java index 2f7b8c149fe8..1abec5e6148c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java index 5c296541ecd7..77634ac1abf3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetModelname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java index 71bae82bcfaf..d5d511db8bbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updateexplanationdataset/SyncUpdateExplanationDatasetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/AsyncUpdateModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/AsyncUpdateModel.java index 4a8fff9b4ead..044a640de343 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/AsyncUpdateModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/AsyncUpdateModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModel.java index 0b3214e843de..58ed50fb8976 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java index 2c2a3d5875b2..56c49ffe8bab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/updatemodel/SyncUpdateModelModelFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModel.java index 00129ef75636..ac8c3e761d9f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModelLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModelLRO.java index e5d40c091c2f..21ecdd06c31a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModelLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/AsyncUploadModelLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModel.java index 0bbd001461ad..689fb7f454d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java index b20ede0f03df..ee2ee93a7c76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelLocationnameModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelStringModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelStringModel.java index ee022455a0dd..d822dff66cd6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelStringModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservice/uploadmodel/SyncUploadModelStringModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/getmodel/SyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/getmodel/SyncGetModel.java index 24a735c9f55b..9529a146b3df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/getmodel/SyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/getmodel/SyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/uploadmodel/SyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/uploadmodel/SyncUploadModel.java index d1e3ed3b314d..23569247b90b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/uploadmodel/SyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/modelservicesettings/uploadmodel/SyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java index f5344772b562..a49cb9fdd5eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java index 572307a33a54..8d955a04c56b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/AsyncAssignNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java index 17c1e311826e..0ce7d7734cb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java index 62d4c882d308..0d3ca7be90e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameNotebookruntimetemplatenameNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java index 1be142906adc..17e45c6562a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeLocationnameStringNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java index a17943fd4179..e0cf9315ff62 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringNotebookruntimetemplatenameNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java index 5d82aefd93f3..9cfa4fed024d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/assignnotebookruntime/SyncAssignNotebookRuntimeStringStringNotebookruntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetCredentialsProvider.java index f97e8b7cf8b7..dadc105ff604 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetEndpoint.java index bb7d0db62a39..e40cd5323939 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java index 413d534364b8..d978874bded5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java index f7a8653210d0..620a469c3178 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/AsyncCreateNotebookExecutionJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java index 84a8c28cd0a1..4e39061e07ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java index 31472bf257cf..775ef470b533 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobLocationnameNotebookexecutionjobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java index 09fca390eb1e..8a687647b9cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookexecutionjob/SyncCreateNotebookExecutionJobStringNotebookexecutionjobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java index 35a4aae76c8a..5c875bc08354 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java index ae4159577f97..8cf0ff51ee25 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/AsyncCreateNotebookRuntimeTemplateLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java index f87f1cfb4a3a..fc7d3047bfd8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java index df59b92e103b..d6b815019379 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateLocationnameNotebookruntimetemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java index 290341f2e07c..4e61203eaf55 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplateStringNotebookruntimetemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java index 2afbbd81a7ad..b144b5f3bf3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java index 4b8150c252e0..8937d0a02db9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/AsyncDeleteNotebookExecutionJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java index 4deadd1ea8bb..9a3ece95a9e2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java index 8d4bc5112182..11449e7ed621 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobNotebookexecutionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java index 803c251d8005..a17028edd52b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookexecutionjob/SyncDeleteNotebookExecutionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java index f624b171c36a..c57557bb2f5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java index 18fb4e77babc..c734871894bc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/AsyncDeleteNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java index 3e4344a4bcb3..364fb6e784da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java index d0905694686c..5369fcee7af5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java index 84432e6dbd4e..ee8f4a95c832 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntime/SyncDeleteNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java index 5338a6f62608..dfa70916119f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java index 08f94134e690..b3064028e6bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/AsyncDeleteNotebookRuntimeTemplateLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java index be6438b1bb89..37e83c7fd514 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java index 816539835db9..0e68986dfa11 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateNotebookruntimetemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java index 4375dbbc8835..0dc584876641 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/deletenotebookruntimetemplate/SyncDeleteNotebookRuntimeTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/AsyncGetIamPolicy.java index e650535a2cda..4331e92b6583 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/SyncGetIamPolicy.java index b89897978581..7da98576f07d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/AsyncGetLocation.java index 3ed891e0caec..d374c8cab25f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/SyncGetLocation.java index 212f2fa5ff15..1ae2810da52b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java index 6f089e1a9a60..833344dde83c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/AsyncGetNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java index 0acf112ee3d8..e3495096cbaa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java index 91c5c41bb37c..5fe1c8f23a65 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobNotebookexecutionjobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java index 34b7aaa74c4b..804279b4e816 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookexecutionjob/SyncGetNotebookExecutionJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java index 5271271d9415..5667ea04d5bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/AsyncGetNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java index b1e5c5df36dd..cc7933f2bf4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java index 0f6dcc2ebb08..65b6239a6e71 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java index 70a6a3801106..a92096dec0e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntime/SyncGetNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java index 035f7782ee3c..946fdef3c082 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/AsyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java index 963aa4418e46..b9bf1e4d2f80 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java index 4fe4b9694d9b..1f82f8dc23d1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateNotebookruntimetemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java index 07a6d07ae439..fc5892936447 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocations.java index 18a523b63800..86f659d6d71b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocationsPaged.java index b413d71c1b41..9f1be8b4d326 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/SyncListLocations.java index a8b89aa8b5d5..96efd9b21d6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java index 0e5a13621f01..cb0d0e2b4830 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java index 41ba0aeaa6b2..801f7dc2b312 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/AsyncListNotebookExecutionJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java index 8f182b82eea7..99e2125812a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java index 156cf7d50a7a..9522e572c039 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java index 08f4b173ca40..41332c8ca46c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookexecutionjobs/SyncListNotebookExecutionJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java index d2ba84ca6321..d08a1f8c2be4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java index 6bf0cc80d4a2..bd53718dcec5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/AsyncListNotebookRuntimesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java index 0321da4262fc..07980c19b03d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java index e7ec0b142749..afd0eb4258b0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java index 506ea8bce594..f22c4666e94f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimes/SyncListNotebookRuntimesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java index 6977ec68b68d..09906a1e0a65 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java index 9a72d3950f36..41772b1b042c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/AsyncListNotebookRuntimeTemplatesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java index bc4b326813c2..a42958c3ed79 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java index d7b41501d311..4f5faa54019a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java index a463693a9b52..d12b74ecea07 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/listnotebookruntimetemplates/SyncListNotebookRuntimeTemplatesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/AsyncSetIamPolicy.java index 8d06ec989afb..f8b75a4af55c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/SyncSetIamPolicy.java index b1ec7ecc6d9e..f8f69e850410 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java index a4f8b9763cc7..4ddc67c22299 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java index 63967a5a965f..6db99c90e357 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/AsyncStartNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java index cab64f19c0e0..f3ca5a2b0da6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java index 50d4723d299d..cebfbbfaf121 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java index a3100c60d257..db15542c848b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/startnotebookruntime/SyncStartNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java index bf974dd1ad48..ec754d22e84c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java index 97b1076b6555..7c7af921b75b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/AsyncStopNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java index da989a36d08d..14cc9e39be09 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java index b584ee7788ef..089dfc7f1b87 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java index d4cec7748aff..41f810c037fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/stopnotebookruntime/SyncStopNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/AsyncTestIamPermissions.java index fd4e2e2421de..90e68210826b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/SyncTestIamPermissions.java index f8d9b81059e4..439ec81a4f68 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java index 684c3b6b4bb8..d1181a7883a8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/AsyncUpdateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java index 83b87aa1b4ae..b393db3ae5a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java index 39e46a423c74..cfb57473d91c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/updatenotebookruntimetemplate/SyncUpdateNotebookRuntimeTemplateNotebookruntimetemplateFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java index b8552d1738cb..d3fc8506ae39 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java index 35f756261c0f..0a809c115049 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/AsyncUpgradeNotebookRuntimeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java index 93607a9c1a4e..b7cce32e1e28 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java index 250cf5c585c8..cef0480d95e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeNotebookruntimename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java index 1cd97e238c44..64660fa2c87d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservice/upgradenotebookruntime/SyncUpgradeNotebookRuntimeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java index 863358f81d24..0840f86b23ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java index f52d39f4d52c..152e9378e77c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/notebookservicesettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java index 39362bd32477..3a7c7584d3b2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetEndpoint.java index 2d9d412367a5..c7471ca4449a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java index 3e610323b990..01962d629fc6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java index f865994d0cd9..981d65590e2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/AsyncCreatePersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java index d7b9242a9af2..634ea6fc1fd4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java index 9cb92d726afa..5a182809071f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceLocationnamePersistentresourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java index 10f4219b0c93..36c0fd3cbd3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/createpersistentresource/SyncCreatePersistentResourceStringPersistentresourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java index 0d8b8a0ce191..5300c142420b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java index a49e1a301043..ffd58760686c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/AsyncDeletePersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java index b711e6cb5c29..3816942291fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java index 3fded66ef164..f03146ff09e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourcePersistentresourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java index f77e3c711de2..e276ca924da7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/deletepersistentresource/SyncDeletePersistentResourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java index 6f6720c940e1..1501164ebfda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java index 18c2d0b64551..1ea54265b118 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/AsyncGetLocation.java index ab0ebdb4c463..95ab41c685ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/SyncGetLocation.java index 3aed9410c2ee..5abf1ad0d571 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java index 5af37fcc4c47..a2f69fe5eafa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/AsyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java index 42225983498a..465fbe3c236a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java index bf148c18073c..154a3f9bd73f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourcePersistentresourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java index 2a91e3a295b1..60f5bb6fd6ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/getpersistentresource/SyncGetPersistentResourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocations.java index e4c7a0efc14f..fb4a54554c04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java index d287be848b68..4a9dba575e3c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/SyncListLocations.java index 2750b7a89492..722435e17a21 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java index 44dbf2b2a790..ede0e9b99414 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java index f1b0439c3eb8..d6bc7b352e1e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/AsyncListPersistentResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java index 3640ab4716ed..889ae094ee32 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java index 8d29feef1cbf..541355b0b54b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java index 583231cc5f61..b4b6d63edf2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/listpersistentresources/SyncListPersistentResourcesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java index 9d48f0e257d8..12eb869417a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java index e689362887cb..1fb3dee9810d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/AsyncRebootPersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java index b6f6dbd9cf42..9f5dcd395725 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java index 8866e4093cdc..0d97d400bcff 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourcePersistentresourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java index 1f390c2d541b..844070e184f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/rebootpersistentresource/SyncRebootPersistentResourceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java index f8e81690d524..6f8f0a7c6163 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java index 766fd00144a4..82b4626af32a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java index a01305c1d0da..5a812a0d82c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java index db0e18f4e0ba..791a22cac6b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java index 48e24c1c7980..6e9c339a9bd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java index edb1251b3fa4..328d663bbb44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/AsyncUpdatePersistentResourceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java index fbb916cf4955..72fe1541b200 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java index ef6e68a7b66f..8dbefe4ea8ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservice/updatepersistentresource/SyncUpdatePersistentResourcePersistentresourceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java index bd0291fe1d5f..d86558f517c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/createpersistentresource/SyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java index f0a59e75c7e8..1d4fadbfc6b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/persistentresourceservicesettings/getpersistentresource/SyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java index 32e26e9ed467..6d137ba31909 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java index 81dca224041b..b14e1c9bcecf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/AsyncBatchCancelPipelineJobsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java index f3f36dcd9b5b..eaddf75b90ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java index 0e347d7009de..4aaa0fe7504d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsLocationnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java index 26ee50af7b90..1e12d05c66c0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchcancelpipelinejobs/SyncBatchCancelPipelineJobsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java index cea3a6af6c68..adc4c9705d30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java index 02a9302303af..0aeaea97554b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/AsyncBatchDeletePipelineJobsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java index ee78b24c3a5c..376f8c70f0d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java index cf231e16727f..4c8bfa190f54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsLocationnameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java index 218808cfbe48..001ae8607ab2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/batchdeletepipelinejobs/SyncBatchDeletePipelineJobsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java index 8dca9bea1f0b..eff09e1dcd91 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/AsyncCancelPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java index c49a9cd5a989..d5a8ddc35d82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java index a68f4198c470..b57920545b59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobPipelinejobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java index acf09a50b101..34ae2aac7aba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/cancelpipelinejob/SyncCancelPipelineJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java index 130ac04aa065..3aacff7ecf0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/AsyncCancelTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java index c588c59752a1..cc70c03bc006 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java index c78b9f517207..812cc93b5b6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java index a9bcc4a822c5..82108a48ba99 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/canceltrainingpipeline/SyncCancelTrainingPipelineTrainingpipelinename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetCredentialsProvider.java index ec90fa7aea10..2cf1bfa1865c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetEndpoint.java index 2ff80b17c07b..b0bca0545969 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java index 0fd1e488662a..2d2f609297fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/AsyncCreatePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java index 2e105d2c96af..4497b7e10457 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java index 48647aefb6cd..96cb39c6b3ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobLocationnamePipelinejobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java index 745b5cd741e6..e74cf7003b5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createpipelinejob/SyncCreatePipelineJobStringPipelinejobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java index 56a9ebbe3635..3d7450f72ea9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/AsyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java index 1248517d4f5e..f56527d0d47d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java index 2b6cc8797694..22ba1370a594 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineLocationnameTrainingpipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java index 830d79e95226..76c5bc7b31f4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/createtrainingpipeline/SyncCreateTrainingPipelineStringTrainingpipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java index 720a44918488..7f61daa96fa6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java index ef3b8b8a8cab..3f325270f541 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/AsyncDeletePipelineJobLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java index 4df5be79ebbf..d529a03d0258 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java index 3865e8a98f6b..aee802737698 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobPipelinejobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java index 20dc1eafce54..ac6f8dd48444 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletepipelinejob/SyncDeletePipelineJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java index f71dbc237d78..683efbe558c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java index 2d02fa20751e..ea1cf8b9c02c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/AsyncDeleteTrainingPipelineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java index 59d487fe7da4..d4fae73c1439 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java index 084bd2e24a6a..c47f88e1c59b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java index 06abab517c82..d3b382b53aad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/deletetrainingpipeline/SyncDeleteTrainingPipelineTrainingpipelinename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java index 434ecb82aa17..0f71d0660326 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/SyncGetIamPolicy.java index bb74d44da5df..871e0cc0fa24 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/AsyncGetLocation.java index 8a5f7d9d2a42..00768f5ce601 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/SyncGetLocation.java index 56eb4317c9e7..ed49bf120228 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java index 6d72cb20cd23..20181bb2c33c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/AsyncGetPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java index 8c6bdb7e1c06..3b64879fa5b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java index 7616a02da0ec..58ed13d93f44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobPipelinejobname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java index 0bad3864f8bb..6a81b61a18dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/getpipelinejob/SyncGetPipelineJobString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java index c8e09ba291f2..ce47c748c4ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/AsyncGetTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java index 906d88eba2ad..064070953a57 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java index 77a6aa3e5a21..f5b40bb29329 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java index b63fb2c5ec41..8a5cf421a0c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/gettrainingpipeline/SyncGetTrainingPipelineTrainingpipelinename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocations.java index cacb4a8b6881..92551c3de9e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocationsPaged.java index e456bf08c09b..8de28215d88e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/SyncListLocations.java index 084b70454e3f..b11e36c275d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java index 09d82ca37620..f29224f39142 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java index c9bb3246f323..9a97b80be471 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/AsyncListPipelineJobsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java index e2203b57fd25..e5d49f709afb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java index 42682c4f8854..24f974e27e30 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java index 295b1365b173..4517ad98e252 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listpipelinejobs/SyncListPipelineJobsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java index 38c186dd3f98..20c48b76187e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java index 199d6d9256ed..4a0658c9e0d6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/AsyncListTrainingPipelinesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java index fc6c83c3c1cf..3c05be6cd908 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java index d4c16586db1a..3419d6db8a82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java index 3dbfcd5176c3..4e0fa7366d3b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/listtrainingpipelines/SyncListTrainingPipelinesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java index da2f5b356909..ab9aa42313aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/SyncSetIamPolicy.java index 436b144c7444..0df13d0dfcb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java index 2ba59140ca51..f1c5b2b8d50b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/SyncTestIamPermissions.java index daa28adce7b8..df36daf6599a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java index 0c1918bae517..94cdee962faa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/createtrainingpipeline/SyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java index 33fa5c8158e1..6e7603237359 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/pipelineservicesettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/chatcompletions/AsyncChatCompletions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/chatcompletions/AsyncChatCompletions.java index 2cba2e7056f0..18dda5f1dc9f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/chatcompletions/AsyncChatCompletions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/chatcompletions/AsyncChatCompletions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/AsyncCountTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/AsyncCountTokens.java index af1bbe9a7d1f..4d92aa01aa84 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/AsyncCountTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/AsyncCountTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokens.java index c1b39772da10..c496b227f61a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensEndpointnameListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensEndpointnameListvalue.java index eb02ec2d3ff8..011cca206202 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensEndpointnameListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensEndpointnameListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensStringListvalue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensStringListvalue.java index f451e26dae86..48fbe50d2a4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensStringListvalue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/counttokens/SyncCountTokensStringListvalue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetCredentialsProvider.java index e0645d014132..936c6e55bdbe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetEndpoint.java index 512fd89cddf9..76a3abfe52db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/AsyncDirectPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/AsyncDirectPredict.java index c74201481bb0..46d5f25ea83b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/AsyncDirectPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/AsyncDirectPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/SyncDirectPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/SyncDirectPredict.java index c395a049d75d..f0231bd08eeb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/SyncDirectPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directpredict/SyncDirectPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/AsyncDirectRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/AsyncDirectRawPredict.java index 99ebcba67df3..96440e26a410 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/AsyncDirectRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/AsyncDirectRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/SyncDirectRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/SyncDirectRawPredict.java index a7f60ed634a6..aa32a496c1a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/SyncDirectRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/directrawpredict/SyncDirectRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/AsyncEmbedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/AsyncEmbedContent.java index 18b97df584f8..0125ee05c30c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/AsyncEmbedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/AsyncEmbedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContent.java index a6642bbc1e83..c81dab86f39e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java index f69f567400d0..509786ceea41 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentEndpointnameContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentStringContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentStringContent.java index da56797b8638..1ef72acabb9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentStringContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/embedcontent/SyncEmbedContentStringContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/AsyncExplain.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/AsyncExplain.java index fd048b5a46d3..61fe59dc6392 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/AsyncExplain.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/AsyncExplain.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplain.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplain.java index 1b257657f4ef..ccf536146eee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplain.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplain.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java index 346585468f5b..5d56af7e776b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainEndpointnameListvalueValueString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainStringListvalueValueString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainStringListvalueValueString.java index 9cc5f29e24f8..de9938ad9046 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainStringListvalueValueString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/explain/SyncExplainStringListvalueValueString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/AsyncGenerateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/AsyncGenerateContent.java index d82bdf5e3d50..6ced86ee0fc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/AsyncGenerateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/AsyncGenerateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContent.java index d84f11c985dc..99af9c809ed6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java index 50d284dcf73d..cbb6ade11c96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/generatecontent/SyncGenerateContentStringListcontent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/AsyncGetIamPolicy.java index 048ec1a0eb90..06472bf8d1d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/SyncGetIamPolicy.java index 733f261e4c68..0bacea92d1cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/AsyncGetLocation.java index 615ad951efb3..fee16baf3429 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/SyncGetLocation.java index 6de6bbef9109..dfb5b9669f04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocations.java index 3ec91980df5e..32e2d7d00b40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocationsPaged.java index f5bb3439f0de..17b8df1d2abc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/SyncListLocations.java index 8ca101255c85..be379ee49dd9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/AsyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/AsyncPredict.java index 1dfec101f903..40160c9d9c5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/AsyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/AsyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredict.java index bee5058b03ea..6c386ac8fa69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java index 73703fd07a7f..b7b2bf84b7eb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictEndpointnameListvalueValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictStringListvalueValue.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictStringListvalueValue.java index c312a8ff442a..e61b80140ede 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictStringListvalueValue.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/predict/SyncPredictStringListvalueValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/AsyncRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/AsyncRawPredict.java index ccbe420d6a57..f6f29dbe3b43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/AsyncRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/AsyncRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredict.java index 0f2c4ac650ac..616c5fa7ed74 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java index f5e1ec402230..3218d9b648de 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictEndpointnameHttpbody.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java index 5f79a1f9929b..a5aae7bdd92f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/rawpredict/SyncRawPredictStringHttpbody.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java index 25d2dc72989c..251c700f38a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/serverstreamingpredict/AsyncServerStreamingPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/AsyncSetIamPolicy.java index 36fa89c794c8..567022ef8129 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/SyncSetIamPolicy.java index 501e9689cca5..bbd9cf5fa04b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java index 8acabce0c8ec..fdd64f5e0fc4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectpredict/AsyncStreamDirectPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java index 3268ab2c50b1..f68f9dd9606e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamdirectrawpredict/AsyncStreamDirectRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java index 133067d766aa..72f9c45af1d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamgeneratecontent/AsyncStreamGenerateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingpredict/AsyncStreamingPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingpredict/AsyncStreamingPredict.java index 5466928d54da..693c1a9dfbd9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingpredict/AsyncStreamingPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingpredict/AsyncStreamingPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java index 6291d7c4fc07..ebbd8650328c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamingrawpredict/AsyncStreamingRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java index c8356bab1a15..c3c22e6a56ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/streamrawpredict/AsyncStreamRawPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/AsyncTestIamPermissions.java index 7f0a0bf9e787..6a6f035b82d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/SyncTestIamPermissions.java index 32d335a40390..fb5551b76bb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservicesettings/predict/SyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservicesettings/predict/SyncPredict.java index 76eca84f247d..fa5bf4f02556 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservicesettings/predict/SyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/predictionservicesettings/predict/SyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java index ed776da5f88f..481945f471f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java index 9b1d00dfe572..ed8eeb4e9b3a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java index a7dae8d0a5bd..40a11afb2ae4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java index f96d4059b6cc..8688672e3877 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java index a6d31889e180..4a0d34cac27e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java index b85c5ce58a95..1de072bdea7f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java index eb3abd36b74a..f7c10c66fb38 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java index 7b6d5c30aed5..f4d8e7d94a9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/SyncListLocations.java index 457da5cd60cd..63eabb41ad40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java index 261d975b401f..1a5e5407f5a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/AsyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java index 5dbdf0cebbd1..ab32b680aaaa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/queryreasoningengine/SyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java index 8caaf29da451..d4c2f57d9db4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java index 6bc54c82d30b..22bdd2b2958e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java index b2c4e26135f4..f60d43f61530 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/streamqueryreasoningengine/AsyncStreamQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java index 0adad4c5cf07..1946eab115d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java index e147b9a06c82..35d8f01e5485 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java index a3dacad524e2..dc246dba6a8f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineexecutionservicesettings/queryreasoningengine/SyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java index c29368d21ea2..9f7c68b255e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetEndpoint.java index c5df4d1b2033..49733f7f96a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java index 48088f16bbe3..708c42a924d4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java index f2aebb123213..5b75f1bd7e8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/AsyncCreateReasoningEngineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java index 4f387d984bd0..28b514c6e026 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java index 84c6878c6e83..f2aeea05e598 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineLocationnameReasoningengine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java index adff4be4e52c..de45f4e190b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/createreasoningengine/SyncCreateReasoningEngineStringReasoningengine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java index 2c4788a26d73..65a888a7700a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java index 9ea7a8dd6a8c..1fe94914b97d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/AsyncDeleteReasoningEngineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java index 7fe69402a585..16c12e2b4ed5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java index 0dc02fae6ba1..78b874a43201 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java index f23f17051d63..6c00006ea04f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/deletereasoningengine/SyncDeleteReasoningEngineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java index 20d762db96f1..cfe4c9691464 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java index 7e8fa8047a7e..22593c204faa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/AsyncGetLocation.java index f311fd4a3ab1..af985fe65465 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/SyncGetLocation.java index 767231e1a1f6..2cda64a1e603 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java index d880fc38544e..cf590b850195 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/AsyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java index 69933e8c23ea..2c36c8af18da 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java index 7efeb432d59d..e235e7df3a66 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java index 83f179f67c0c..9abae2d2b52f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/getreasoningengine/SyncGetReasoningEngineString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocations.java index 74be2535b9a8..b815ab32fd26 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java index 710d1a3f1331..1d7362d08685 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/SyncListLocations.java index 7b75a2e3d392..6c8e4488781b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java index b7260bdba997..ad7a4664a1a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEngines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java index dacf76d68c54..301533ddff05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/AsyncListReasoningEnginesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java index c3099cb01d6f..a49652fe9c10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEngines.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java index 5612edc0e43b..9f9c5630d9bf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java index ba5fa16bfe83..14bc7b5ffb73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/listreasoningengines/SyncListReasoningEnginesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java index 461aaf37a31b..58c6bbc2226b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java index 933c721b83ec..bf01ec95ec7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java index 7771cac1dfc6..932455021215 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java index 7b6ed465c312..e72bd5eace5e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java index 66200995e32c..8762482abc04 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java index 48ade7fb591f..3dd97c8fb44d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/AsyncUpdateReasoningEngineLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java index 30c497d47997..d75444e23ea6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java index b85c6055b430..f37d16cfdc3d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservice/updatereasoningengine/SyncUpdateReasoningEngineReasoningengineFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java index 46340fefbdde..e9f33759500f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/createreasoningengine/SyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java index fd21f592f630..51ad9697dec9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/reasoningengineservicesettings/getreasoningengine/SyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetCredentialsProvider.java index 6e6851d6c6c9..e6c5b276f50d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetEndpoint.java index 2b3a3d8edb29..452630d7959a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/AsyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/AsyncCreateSchedule.java index e422acdcbe70..dfc3fd6545c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/AsyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/AsyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateSchedule.java index df8abce8d33e..3303eaa3ce29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java index 95ef9b3c9592..0ba2a1b7163a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleLocationnameSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java index 94f9558a4d25..0e07a88d3535 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/createschedule/SyncCreateScheduleStringSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java index c6334548ebd2..1765d8ed7665 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java index e4a524d66c91..e7ada0d2c853 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/AsyncDeleteScheduleLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteSchedule.java index 9eca3c85fc76..97eaf7f981b4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java index 708d96a7c42a..0dd2df02456f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java index aa0972ba2352..1fcd5d0f677c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/deleteschedule/SyncDeleteScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java index 7c39fe70e848..7e9ac1b9205f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/SyncGetIamPolicy.java index 9e2020b0b131..dd6aa931aa9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/AsyncGetLocation.java index 86bac9328081..ef0a7944b29b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/SyncGetLocation.java index aa692009ac02..58061e3502a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/AsyncGetSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/AsyncGetSchedule.java index 22afcd8cf043..dcef77746efc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/AsyncGetSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/AsyncGetSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetSchedule.java index 98b558175051..c6b64a1abe62 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java index 0de5c150b539..df1bb8c9e3a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleString.java index ec23bc9f73fa..9c5c90c7c3ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/getschedule/SyncGetScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocations.java index f8ed213efab7..3b1fa78f00a6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocationsPaged.java index cbfb2f1fbf51..bde0229d4687 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/SyncListLocations.java index 414a615ad16a..a62de564809e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedules.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedules.java index fda4c94f0e00..2675b7386522 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedules.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedulesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedulesPaged.java index 513ce25e5a77..76035b1a325c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedulesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/AsyncListSchedulesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedules.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedules.java index 8d875cce0d13..c0cde5d1eb4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedules.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesLocationname.java index 385988e7530b..69e2cb8feeb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesString.java index 4401d3a9bd13..3c391a375e38 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/listschedules/SyncListSchedulesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/AsyncPauseSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/AsyncPauseSchedule.java index 45dd614eec0f..91a3fdff9d02 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/AsyncPauseSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/AsyncPauseSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseSchedule.java index 2ec004991193..777fed824a73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java index 874be5eaaa01..b65d02c6825a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleString.java index fc128afaa271..4af1e9b95b5d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/pauseschedule/SyncPauseScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/AsyncResumeSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/AsyncResumeSchedule.java index 5ee9fc7b9448..95e57e2c01f6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/AsyncResumeSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/AsyncResumeSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeSchedule.java index 14eea7836508..08fec4214650 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java index 950e016a6ffc..00c9bc0a1c10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java index bff5d0be3501..770bddbd4bad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleSchedulenameBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleString.java index 13d74e5aaf50..2c61c588acd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java index e0bbe4f290af..066c0089a90a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/resumeschedule/SyncResumeScheduleStringBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java index 49834bb91377..945e94442f8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/SyncSetIamPolicy.java index c7648a7f3a47..cc3ac17e7a23 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java index b87c7e528f62..7d4fc45b01e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/SyncTestIamPermissions.java index 93cd1b7393f6..3314472c503f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/AsyncUpdateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/AsyncUpdateSchedule.java index b781780f7b62..d79b9b219404 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/AsyncUpdateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/AsyncUpdateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateSchedule.java index ecd65f8cc1db..6061e9ca2956 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java index 37986202859e..5ede19688e5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservice/updateschedule/SyncUpdateScheduleScheduleFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/createschedule/SyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/createschedule/SyncCreateSchedule.java index 57b8419bd37f..02829b980695 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/createschedule/SyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/createschedule/SyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java index 8453dee17e75..fc1690545506 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/scheduleservicesettings/deleteschedule/SyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/AsyncAppendEvent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/AsyncAppendEvent.java index ae88f94f49fd..07b7cdf54fc1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/AsyncAppendEvent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/AsyncAppendEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEvent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEvent.java index d4b33b5186c6..02a890f6b50f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEvent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventSessionnameSessionevent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventSessionnameSessionevent.java index 1ddb590f34d9..cd7cb3eaeda9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventSessionnameSessionevent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventSessionnameSessionevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventStringSessionevent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventStringSessionevent.java index bb9a9da77035..33631527d5db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventStringSessionevent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/appendevent/SyncAppendEventStringSessionevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetCredentialsProvider.java index c2da9a400a9c..64d394505baa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetEndpoint.java index 84cff01066d4..269092e3b32f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSession.java index 98f10f2a2898..7bdb1ca846f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSessionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSessionLRO.java index 0cc08b93085d..a0a8e572aa74 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSessionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/AsyncCreateSessionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSession.java index 63fbd3d4fdc0..94b7a6d8bd36 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionReasoningenginenameSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionReasoningenginenameSession.java index 493118151f9a..11d3b53f2097 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionReasoningenginenameSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionReasoningenginenameSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionStringSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionStringSession.java index 8ec862c0ffe9..cd139bd43209 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionStringSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/createsession/SyncCreateSessionStringSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSession.java index 44fc2798dbd7..8080ddd9724f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSessionLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSessionLRO.java index 1a82ddfa8e40..2a3adde7329d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSessionLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/AsyncDeleteSessionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSession.java index 91e27407f062..307c289b1993 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionSessionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionSessionname.java index d207ae945307..0f6164dcbf33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionSessionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionSessionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionString.java index 4c441b2ecd0d..3ea5348177d5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/deletesession/SyncDeleteSessionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/AsyncGetIamPolicy.java index 69e6110bc1ce..5c1ed0603c44 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/SyncGetIamPolicy.java index 439d8ae60bc2..619477d082cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/AsyncGetLocation.java index b7008e732446..9a3b490c227d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/SyncGetLocation.java index c0096bfd68cd..c6a38a6dcd05 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/AsyncGetSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/AsyncGetSession.java index 58232cda00cf..84b4df338903 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/AsyncGetSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/AsyncGetSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSession.java index 1e0bb3785ddf..92a59b132a9e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionSessionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionSessionname.java index 774d98cb3c91..ca26f2854bc5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionSessionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionSessionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionString.java index cee6ab44d8e0..a3c349ba9b7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/getsession/SyncGetSessionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEvents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEvents.java index dc81735f15c8..f7afae88361f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEvents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEventsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEventsPaged.java index cc4bd54413c9..e64376c33a79 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEventsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/AsyncListEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEvents.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEvents.java index 54af1c36e3c2..7fcbd63f721e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEvents.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsSessionname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsSessionname.java index deb45fda2891..167e78030541 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsSessionname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsSessionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsString.java index 56ace722914a..a4499f6f48a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listevents/SyncListEventsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocations.java index 19aff9fbfb94..443f13466ef2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocationsPaged.java index c7357434c21b..dfe1001b1d4a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/SyncListLocations.java index 98edec7ee095..e718db415c26 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessions.java index 5a363e6feffd..de53cee65d17 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessionsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessionsPaged.java index 789980662f64..5e8a70c4e380 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessionsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/AsyncListSessionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessions.java index 3b7b1ec1258f..da64d5580333 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsReasoningenginename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsReasoningenginename.java index a7c29a2ca22c..02e9ecd5b8c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsReasoningenginename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsReasoningenginename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsString.java index 362f3f1e89c6..621eac69fe73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/listsessions/SyncListSessionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/AsyncSetIamPolicy.java index 5174f58cc7ca..12c4c06098b2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/SyncSetIamPolicy.java index 83647b40d667..fa2b73179138 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/AsyncTestIamPermissions.java index 0f72103c9307..34728f1ceaf4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/SyncTestIamPermissions.java index 5c2d59ccc591..45fc9ef3846b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/AsyncUpdateSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/AsyncUpdateSession.java index 46397c85ea51..e66d31df3510 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/AsyncUpdateSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/AsyncUpdateSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSession.java index 1c9617a40d95..1e321e55b51b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSessionSessionFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSessionSessionFieldmask.java index edb46bef05eb..ab963a75eca5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSessionSessionFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservice/updatesession/SyncUpdateSessionSessionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/createsession/SyncCreateSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/createsession/SyncCreateSession.java index d9ee4c8026ef..ffd76b61bab5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/createsession/SyncCreateSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/createsession/SyncCreateSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/getsession/SyncGetSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/getsession/SyncGetSession.java index 43e42b42cc90..0c362b6811d3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/getsession/SyncGetSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/sessionservicesettings/getsession/SyncGetSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java index 6ce411a928a5..3e697909b61b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetEndpoint.java index b187fc60568c..c8e29816f238 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java index e0458564c3a4..fef82618a1ae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java index 97246c6e3421..78bfdeaea625 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/AsyncCreateSpecialistPoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java index 7359d416ba4f..5c8b32329946 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java index 7acf8a42e09a..e1a4768423db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolLocationnameSpecialistpool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java index 21a99809a8cd..842b899623e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/createspecialistpool/SyncCreateSpecialistPoolStringSpecialistpool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java index fe4ec3c2730d..512b0c28945d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java index 9be108be35bb..58aec15e56ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/AsyncDeleteSpecialistPoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java index 3ce27fc2c7d3..cd871daa64d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java index fc1ea2a5a88f..d7d33e058936 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolSpecialistpoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java index 7dcf9285c8a3..9caa0d642e5c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/deletespecialistpool/SyncDeleteSpecialistPoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java index 1fc05f585a1d..0f9ace1b68e7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java index 0235f2193eff..a801705ac604 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/AsyncGetLocation.java index 680029ebbe14..907c4ee71190 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/SyncGetLocation.java index a5afcc0d6921..bcd2d2e6565d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java index aa90affbfba3..95d1a3a9fcc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/AsyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java index dd24d11688c7..363b2367e33f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java index b0befaa39dc8..b52b745af606 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolSpecialistpoolname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java index 06731720fd6b..f39361c0ccca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/getspecialistpool/SyncGetSpecialistPoolString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocations.java index 06a8f2a8a533..3b71fbaa78fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java index c4b78fa87992..f34c107e75c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/SyncListLocations.java index 97379ff245c0..ef53de8755f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java index b091469b1177..5b8faa39fa69 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java index 7833572f8e15..0c19f15c470e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/AsyncListSpecialistPoolsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java index ddfb7aa05256..3b9601b8b919 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPools.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java index 29c64fcaae8b..b673adb5c566 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java index fe1ef8073992..439c77499bba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/listspecialistpools/SyncListSpecialistPoolsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java index 72ffe938f5a6..3384ce766ec6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java index bec71ce3787d..123753814528 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java index fbb50bf3d8de..e7f4ca8a4d12 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java index 8895e49bca78..3c9f6be088b8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java index a1404997dd5f..cafd00d9a5e4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java index e1107dea15b0..cda75211cc54 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/AsyncUpdateSpecialistPoolLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java index d51d422d6e73..7a2b445ee33f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java index d68da4d5b5d9..acb4fc0fe87b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservice/updatespecialistpool/SyncUpdateSpecialistPoolSpecialistpoolFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java index 87353327f702..bd024ba546fa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/createspecialistpool/SyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java index d065cb36a242..120c8433e0ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/specialistpoolservicesettings/getspecialistpool/SyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java index 124515054490..dc5047b7a68b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/createdataset/SyncCreateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java index f77aa65d0fbf..4e726969f557 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/datasetservicestubsettings/getdataset/SyncGetDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java index 652a620c0110..82235162a5d1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/createdeploymentresourcepool/SyncCreateDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java index 12de76c7484f..4501b3843e08 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/deploymentresourcepoolservicestubsettings/getdeploymentresourcepool/SyncGetDeploymentResourcePool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java index 3eeb0da012bb..6e511511fe2b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/createendpoint/SyncCreateEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java index 6a1fa1e57c06..8441a5eea5cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/endpointservicestubsettings/getendpoint/SyncGetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluatedataset/SyncEvaluateDataset.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluatedataset/SyncEvaluateDataset.java index 43f3f5b0ed9b..8b8acb1198df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluatedataset/SyncEvaluateDataset.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluatedataset/SyncEvaluateDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java index 9c58b660b928..b91fcf8910f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/evaluationservicestubsettings/evaluateinstances/SyncEvaluateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/createexamplestore/SyncCreateExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/createexamplestore/SyncCreateExampleStore.java index 0fdd50071987..4d8c92437d20 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/createexamplestore/SyncCreateExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/createexamplestore/SyncCreateExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/getexamplestore/SyncGetExampleStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/getexamplestore/SyncGetExampleStore.java index ae032bead3cd..0ab573ec538c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/getexamplestore/SyncGetExampleStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/examplestoreservicestubsettings/getexamplestore/SyncGetExampleStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionexecutionservicestubsettings/executeextension/SyncExecuteExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionexecutionservicestubsettings/executeextension/SyncExecuteExtension.java index 8dca595d2e91..7a50687525b2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionexecutionservicestubsettings/executeextension/SyncExecuteExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionexecutionservicestubsettings/executeextension/SyncExecuteExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/getextension/SyncGetExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/getextension/SyncGetExtension.java index bc93922b069e..3582e51721e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/getextension/SyncGetExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/getextension/SyncGetExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/importextension/SyncImportExtension.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/importextension/SyncImportExtension.java index 0ec2780781e2..0c4d6e53f042 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/importextension/SyncImportExtension.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/extensionregistryservicestubsettings/importextension/SyncImportExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java index c2dc1d156587..6d64bee0f6ad 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/createfeatureonlinestore/SyncCreateFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java index 48606f3998dc..3189f4234a49 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreadminservicestubsettings/getfeatureonlinestore/SyncGetFeatureOnlineStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java index 35e03e5627c5..94c9f100025a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureonlinestoreservicestubsettings/fetchfeaturevalues/SyncFetchFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java index 566debcb6b8e..3f6c02236323 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/createfeaturegroup/SyncCreateFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java index 284303fb1828..128efda810b3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featureregistryservicestubsettings/getfeaturegroup/SyncGetFeatureGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java index f2fb3d267c0b..5c6cc51ab53f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreonlineservingservicestubsettings/readfeaturevalues/SyncReadFeatureValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java index abce8950055c..b086afa1f83f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/createfeaturestore/SyncCreateFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java index f8619f372030..42dd4175d767 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/featurestoreservicestubsettings/getfeaturestore/SyncGetFeaturestore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java index c446e55e5c55..e2b0dc096ef9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaicacheservicestubsettings/createcachedcontent/SyncCreateCachedContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java index e6ac975cb673..30466d6406bd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/createtuningjob/SyncCreateTuningJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java index 4fed0f174245..22c7e2d5ac96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/genaituningservicestubsettings/rebasetunedmodel/SyncRebaseTunedModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java index e4c890d5c63c..aa2c90b2d864 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/createindexendpoint/SyncCreateIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java index e46f39b27791..96fe7416d3e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexendpointservicestubsettings/getindexendpoint/SyncGetIndexEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java index 965806e558d2..9380c8419990 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/createindex/SyncCreateIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/getindex/SyncGetIndex.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/getindex/SyncGetIndex.java index 1de43a89f0a8..5e490fb870f7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/getindex/SyncGetIndex.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/indexservicestubsettings/getindex/SyncGetIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java index 8e2af2437121..74aea26aeafa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/createcustomjob/SyncCreateCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java index cd68cb0f701c..347361099c7b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/jobservicestubsettings/deletecustomjob/SyncDeleteCustomJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/llmutilityservicestubsettings/computetokens/SyncComputeTokens.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/llmutilityservicestubsettings/computetokens/SyncComputeTokens.java index 6db17ad6fa28..ccf93d38ca86 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/llmutilityservicestubsettings/computetokens/SyncComputeTokens.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/llmutilityservicestubsettings/computetokens/SyncComputeTokens.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java index 308f74537319..b6d70b94a061 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/matchservicestubsettings/findneighbors/SyncFindNeighbors.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/creatememory/SyncCreateMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/creatememory/SyncCreateMemory.java index b79baedefe27..aafb610ac134 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/creatememory/SyncCreateMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/creatememory/SyncCreateMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/getmemory/SyncGetMemory.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/getmemory/SyncGetMemory.java index e3fca7f2e0e4..96656fe91409 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/getmemory/SyncGetMemory.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/memorybankservicestubsettings/getmemory/SyncGetMemory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java index ed82fe516c90..932fe19a2a59 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/createmetadatastore/SyncCreateMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java index 88a0ff7082cc..ad35745467df 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/metadataservicestubsettings/getmetadatastore/SyncGetMetadataStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java index d2bcf7b153d7..401ccd4f082b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/batchmigrateresources/SyncBatchMigrateResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java index 7af07c00f6be..03beca7e8570 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/migrationservicestubsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java index 3569f574a464..66329c34e563 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/deploy/SyncDeploy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java index 533b0bb8b330..1039e74db9b7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelgardenservicestubsettings/getpublishermodel/SyncGetPublisherModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/createmodelmonitor/SyncCreateModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/createmodelmonitor/SyncCreateModelMonitor.java index d0eedd871a31..06db42b3c757 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/createmodelmonitor/SyncCreateModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/createmodelmonitor/SyncCreateModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/getmodelmonitor/SyncGetModelMonitor.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/getmodelmonitor/SyncGetModelMonitor.java index 9187b00af37d..051975109072 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/getmodelmonitor/SyncGetModelMonitor.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelmonitoringservicestubsettings/getmodelmonitor/SyncGetModelMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/getmodel/SyncGetModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/getmodel/SyncGetModel.java index b6ddd142bea9..c1b7d20ae9a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/getmodel/SyncGetModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/getmodel/SyncGetModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java index cc0913f13daa..c5b4b74cf4bd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/modelservicestubsettings/uploadmodel/SyncUploadModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java index ecc60f2d12f3..124aebf4d645 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/createnotebookruntimetemplate/SyncCreateNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java index bdfb593a9d0a..0a8e33b81968 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/notebookservicestubsettings/getnotebookruntimetemplate/SyncGetNotebookRuntimeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java index 901ffb069fdf..a5d99cb31f56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/createpersistentresource/SyncCreatePersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java index 38a10d1590ec..61c0e669c337 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/persistentresourceservicestubsettings/getpersistentresource/SyncGetPersistentResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java index 87c0184c1e3e..3f5eb8c8ba66 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/createtrainingpipeline/SyncCreateTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java index f2cad50f6292..8d852fdb381c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/pipelineservicestubsettings/deletetrainingpipeline/SyncDeleteTrainingPipeline.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/predictionservicestubsettings/predict/SyncPredict.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/predictionservicestubsettings/predict/SyncPredict.java index 07beeb4388d1..3cec03f6be25 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/predictionservicestubsettings/predict/SyncPredict.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/predictionservicestubsettings/predict/SyncPredict.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java index 515aece50495..955aa1f274ae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineexecutionservicestubsettings/queryreasoningengine/SyncQueryReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java index a76ee23ab52c..61252b841594 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/createreasoningengine/SyncCreateReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java index aa968e593512..e8cb7175ed8e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/reasoningengineservicestubsettings/getreasoningengine/SyncGetReasoningEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java index da74c9ecd956..feeb06aaabb5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/createschedule/SyncCreateSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java index c9cde59abdaa..8f8eddc4080d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/scheduleservicestubsettings/deleteschedule/SyncDeleteSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/createsession/SyncCreateSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/createsession/SyncCreateSession.java index 1c1d356382cf..d5054d45bc6d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/createsession/SyncCreateSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/createsession/SyncCreateSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/getsession/SyncGetSession.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/getsession/SyncGetSession.java index 8a238bfcbf90..49fad5bfa9c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/getsession/SyncGetSession.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/sessionservicestubsettings/getsession/SyncGetSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java index 6799b7b9d954..92a732910efb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/createspecialistpool/SyncCreateSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java index 11aa1848bd55..5deef9d8af46 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/specialistpoolservicestubsettings/getspecialistpool/SyncGetSpecialistPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java index 367e38605ee2..84c39d612994 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/createtensorboard/SyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java index 1116a5421668..7cb6ab7cfcfb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/tensorboardservicestubsettings/gettensorboard/SyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java index 363436f3cdd8..3040853db843 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/createragcorpus/SyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java index 29f1795b2229..b94a24ad478e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragdataservicestubsettings/getragcorpus/SyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java index b8f4925288e2..c6da55ffa250 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vertexragservicestubsettings/retrievecontexts/SyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java index a806e44018b4..24dd91d99d96 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/createstudy/SyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java index dfda1b5eb859..a68b00861ea6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/stub/vizierservicestubsettings/suggesttrials/SyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java index e2443e50d41c..0eaffe6d5821 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/AsyncBatchCreateTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java index 829f82d4458d..439a2cca7b4d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java index ee768ce067ba..8ae8cf8d0b56 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsStringListcreatetensorboardrunrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java index 773fddf4c5f1..30f53cc7dad2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardruns/SyncBatchCreateTensorboardRunsTensorboardexperimentnameListcreatetensorboardrunrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java index 6a2a182e8e6d..86f0524559ba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/AsyncBatchCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java index 11b7372d7cb7..287956cc5c45 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java index f9efc57876ec..14c01e77a202 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesStringListcreatetensorboardtimeseriesrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java index 9cafb2976d74..432c4a15b725 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchcreatetensorboardtimeseries/SyncBatchCreateTensorboardTimeSeriesTensorboardexperimentnameListcreatetensorboardtimeseriesrequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java index d2b98b9fb596..bfdee95ee2fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/AsyncBatchReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java index 35c3710f4667..068f2af66eb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java index 98b285464ed3..1b221c40c917 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java index 6da319d93a32..e11310c2e704 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/batchreadtensorboardtimeseriesdata/SyncBatchReadTensorboardTimeSeriesDataTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java index 9c3f8e02a581..ea7d41bdbad6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetEndpoint.java index 5fa66d639f0b..95a09b80f5c8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java index 36b54e03a302..3febdcdddcc3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java index 128f0dbb7f91..9ee017f0434c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/AsyncCreateTensorboardLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java index 4ad9aefc436d..fefd162ebe9a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java index 9a63b7e9cdf9..f18e35bc47af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardStringTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java index bb7532eff257..979eab91a6ca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboard/SyncCreateTensorboardTensorboardnameTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java index bdcf275eadb3..16ddb29b2b6a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/AsyncCreateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java index 5074faddaf0b..69f20fc61001 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java index fb487f526afb..c95041f488f5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentStringTensorboardexperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java index ceac975d2f77..672b77d2f4a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardexperiment/SyncCreateTensorboardExperimentTensorboardexperimentnameTensorboardexperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java index 75bbaa2c95df..41e9deaf5b75 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/AsyncCreateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java index a2d295e14ca8..d10cddbbe2ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java index 560767cc0355..fc74d29b3044 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunStringTensorboardrunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java index 32077f74e95a..e51117024f51 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardrun/SyncCreateTensorboardRunTensorboardrunnameTensorboardrunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java index 6cfbe050ce1b..2ddaceaf60ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/AsyncCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java index fb27c410fd89..28216d84d588 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java index 4e5280867e72..7e002717672e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesStringTensorboardtimeseries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java index 9d86beccd7a7..9c4ad5ad220b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/createtensorboardtimeseries/SyncCreateTensorboardTimeSeriesTensorboardtimeseriesnameTensorboardtimeseries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java index 3de7c2057361..e2af9294664c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java index 171ebd6e3532..e631fc8385c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/AsyncDeleteTensorboardLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java index bd55c053e573..049a903b3cfd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java index b675d6abf15b..d056c904ff2e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java index 139e63ebcc62..9ff8b0c72cd7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboard/SyncDeleteTensorboardTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java index 244d52bdcaca..1857f94053fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java index ea3f067f65d3..c644aa804dd4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/AsyncDeleteTensorboardExperimentLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java index bfce5d330381..ed234d89c5bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java index f59ba35953ac..70bfb0e215a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java index 146c786f7af2..425de1ca6d4c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardexperiment/SyncDeleteTensorboardExperimentTensorboardexperimentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java index 5bec1b9b27d4..77271fdc9cbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java index 61d73a1122fd..c36b5c65ac52 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/AsyncDeleteTensorboardRunLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java index e52d4cf73c59..aef07f0dba39 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java index 5cc587ca8b3b..65fa49e9cbeb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java index da73929c5b98..9aa12b35a64e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardrun/SyncDeleteTensorboardRunTensorboardrunname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java index 9e5fc0c4845c..635246f4a0dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java index 6ee9c4f63e32..beeea7998944 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/AsyncDeleteTensorboardTimeSeriesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java index 60457383a20a..5b02ef1aa10f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java index 03a381553a24..d5181d09acb3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java index 5e2d1a871f36..0720ff850a17 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/deletetensorboardtimeseries/SyncDeleteTensorboardTimeSeriesTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java index 0c48974db845..0b4afbc97dce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java index 3244a6e10df0..ab96c79e4635 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/AsyncExportTensorboardTimeSeriesDataPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java index 679299b09abd..c552fe390612 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java index 1fb4a8b988b6..78978c0c19c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java index def56214fba7..f2ef565a8d5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/exporttensorboardtimeseriesdata/SyncExportTensorboardTimeSeriesDataTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java index c047f5e9b3fc..911b907d1861 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java index b13ca8e0d49e..05493b1a620d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/AsyncGetLocation.java index 549d70fc9991..bd56c29b313d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/SyncGetLocation.java index eac70a63b506..1ef50078455c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java index b85efc071185..bcfa7a07c887 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/AsyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboard.java index 637feb10fb5c..d26320ff8ddd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java index 5fc6290aae82..03ea1964cc92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java index b8a9ef7e49be..58db4d4ad0f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboard/SyncGetTensorboardTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java index 86dacdc964c1..23896953b3f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/AsyncGetTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java index 8f8638547059..893801ed58ec 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java index 37834e95f3d4..efaaac6f117c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java index c5f77310f987..60e8a1b72769 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardexperiment/SyncGetTensorboardExperimentTensorboardexperimentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java index f6210f071e24..dd6d3bf75d4a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/AsyncGetTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java index f1cb9506cc13..3b3afaea75ac 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java index 985f46a25952..1c2cfaa552af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java index 5e5b91d9c981..43d936d53d0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardrun/SyncGetTensorboardRunTensorboardrunname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java index 566606bd682d..c533271d4f3f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/AsyncGetTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java index b8db4b9e6aaa..8ed5a0ac39cd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java index e21f13482261..99d0f185aeb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java index f0d1d20f9dec..2721b0fa88e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/gettensorboardtimeseries/SyncGetTensorboardTimeSeriesTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocations.java index ad77294ae045..038cbd36edc2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocationsPaged.java index a411a6285de9..98f1f1300add 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/SyncListLocations.java index 10e9571eb918..43bf89ee5ad3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java index 4adfc1daafbb..548569f3089f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperiments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java index 6bfd7db282cb..5356ececce8c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/AsyncListTensorboardExperimentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java index 7c49f4aaaf8d..1afed7ed2cc1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperiments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java index a44ba2d9528c..1ba57dc638c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java index aa72f7713b80..77e90bd1ab52 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardexperiments/SyncListTensorboardExperimentsTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java index cc37bfbb968f..bd41f22e992d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java index 4436a1284a9a..3cb3fd77d3fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/AsyncListTensorboardRunsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java index 6ce6089865ea..19fbfd4ac8a1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRuns.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java index 52621cd834e5..9549752471cb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java index 5adeb08d4fa7..5fa20b1cc113 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardruns/SyncListTensorboardRunsTensorboardexperimentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboards.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboards.java index 18c159819f52..89db9515f450 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboards.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboards.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java index a100c41adc0a..12fe33f143cc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/AsyncListTensorboardsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboards.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboards.java index 9ea5c3a82939..0a55b71d2061 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboards.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboards.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java index deb17062a40c..f380ab1aa891 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java index b53d7003dff1..6a375cef825d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboards/SyncListTensorboardsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java index 5fe391d72f28..04b4c2b160b9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java index 0736e2a1ee9f..b735853b6a93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/AsyncListTensorboardTimeSeriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java index 93658332972b..6fff96265ff1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java index 9646037aeed4..8a6da4d33052 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java index 7af53d7d021e..2bb1f1f7211b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/listtensorboardtimeseries/SyncListTensorboardTimeSeriesTensorboardrunname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java index 33270d294afd..6451b33f3ed7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardblobdata/AsyncReadTensorboardBlobData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java index 9d918d8cfff1..7c4004864caa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/AsyncReadTensorboardSize.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java index 866ed1c9aca3..270d05d922a7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSize.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java index cd474874d66a..6873658d9ca4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java index 56b71af26da6..f4d41f7f54c2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardsize/SyncReadTensorboardSizeTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java index a9ed0590e1a4..5a7377284c4a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/AsyncReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java index 71093a2e98b0..66cb83d42000 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java index 2c1481363d4a..50759ff0031e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java index 284e9ee88861..c2d645beb23f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardtimeseriesdata/SyncReadTensorboardTimeSeriesDataTensorboardtimeseriesname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java index 1f833e59c178..c9d0811657db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/AsyncReadTensorboardUsage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java index 717d5c83a964..fdde6b05bd2d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java index ae30ea3673ce..5376b5f8283c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java index 48f444d1ea92..2207bc71bdb2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/readtensorboardusage/SyncReadTensorboardUsageTensorboardname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java index 5dc75a135d3a..ad2136a4f38b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java index 269ac70d62ed..092ccbdf6882 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java index 60286a5bfe5d..2ffc972578ee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java index 621e50232298..75fd04c1d911 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java index c49849db109c..76ab20c93bd3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java index f5b50a3162dd..d7e62ec7d228 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/AsyncUpdateTensorboardLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java index dddc05870c78..2410bc08132a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java index f7352e816af6..f3487755f407 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboard/SyncUpdateTensorboardTensorboardFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java index 1a3a9e1cc355..26c0dfd87b73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/AsyncUpdateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java index ca720be96692..53c96415138f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperiment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java index a2228b7c7743..7f446df5f7e9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardexperiment/SyncUpdateTensorboardExperimentTensorboardexperimentFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java index bd88bb552e4f..ad70b6f014c5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/AsyncUpdateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java index 76b15f17c569..68ec497f5e7a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRun.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java index 78e7ac36fee6..a761f97a6da2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardrun/SyncUpdateTensorboardRunTensorboardrunFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java index 230a36ce77ed..9c9824aa34bb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/AsyncUpdateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java index 262eab55b0ba..78670aab5698 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java index 2e5c46c1ad12..c180a5694ea5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/updatetensorboardtimeseries/SyncUpdateTensorboardTimeSeriesTensorboardtimeseriesFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java index 81c2211ebca9..ba6c6ce2bb2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/AsyncWriteTensorboardExperimentData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java index e94a3ca5ae10..1b224d030ab0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java index 5cee8570e3e5..9cb6a3c53d3e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataStringListwritetensorboardrundatarequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java index da43ab706e0f..b0f6e266808b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardexperimentdata/SyncWriteTensorboardExperimentDataTensorboardexperimentnameListwritetensorboardrundatarequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java index 24906100aeb3..b0150c4980e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/AsyncWriteTensorboardRunData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java index 8743602d02a6..239e3fdcfcc9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java index e6e3b0a59049..3ad242dacd37 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataStringListtimeseriesdata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java index 0bd989da25cc..d4e822ce034d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservice/writetensorboardrundata/SyncWriteTensorboardRunDataTensorboardrunnameListtimeseriesdata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java index 41a61e6873ad..b8f4b8387955 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/createtensorboard/SyncCreateTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java index d3bc09634528..846dbcf9f200 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/tensorboardservicesettings/gettensorboard/SyncGetTensorboard.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java index 615e8acf3077..66db8eeb2355 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetEndpoint.java index 1869cdfb4ebc..d0a11c858c2f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java index 2a48a9fdef14..d3b976f9da72 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java index 75ff7c4b9a12..6140811c5d46 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/AsyncCreateRagCorpusLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java index 0288f2d6a79b..b623ec1d6293 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java index 5f54c53fe81b..de17df5273f2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusLocationnameRagcorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java index 7e9536d8f262..836362e64c67 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/createragcorpus/SyncCreateRagCorpusStringRagcorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java index d58eee86eff4..4ddc19d9b7e5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java index 74fec62ff1b6..e05b816eab8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/AsyncDeleteRagCorpusLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java index 0aa0737057f2..f482f6eec897 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java index 431a51738bd8..dda120704348 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusRagcorpusname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java index 24b7d56c2bad..6760d811ea25 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragcorpus/SyncDeleteRagCorpusString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java index 0b4292b3a53e..5f8da1a5181c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java index 3031a9f64d60..b95760a5d675 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/AsyncDeleteRagFileLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java index 3b70ddfc84c2..20a77146c762 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java index 5b3ec3c881c7..5d0ec0260cbf 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileRagfilename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java index 6731b7e5cdb9..9ae79bd559dc 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/deleteragfile/SyncDeleteRagFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java index f6993d46847b..81457f05b352 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java index 116aa237dc13..214d3dd32f5a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/AsyncGetLocation.java index a2c520d856cf..9214cef788a0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/SyncGetLocation.java index 066d66de2a93..d0d39b92c223 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java index 0ef996805d42..10b962e25f8a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/AsyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java index 6b4b617c4ebf..b45f573ffe1d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java index 99409d7d0e05..297e486b99fe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusRagcorpusname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java index e528376b4ea1..b7d0983f001e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragcorpus/SyncGetRagCorpusString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java index 221abb1712e9..2cf8b420b278 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/AsyncGetRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java index 268c20b52b19..ba443562958d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java index cf94370d7ad6..5dc8b850d39c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigRagengineconfigname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java index a0eb6eb9bc1c..f726aeb985ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragengineconfig/SyncGetRagEngineConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/AsyncGetRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/AsyncGetRagFile.java index e0b72b756709..c135a4d981bd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/AsyncGetRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/AsyncGetRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFile.java index cd3e6a924db4..47d12c5aeeb7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java index fd2f2d49d1bb..d83a160e234b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileRagfilename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileString.java index 2558b10f6df0..b28178fb8527 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/getragfile/SyncGetRagFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java index e1bc1339b4af..b8061374dcb4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java index f59c46336681..0981d59019ab 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/AsyncImportRagFilesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFiles.java index db3b2cdb206f..0375be18eb10 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java index eadc604646bc..ecaa5f0b04ef 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesRagcorpusnameImportragfilesconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java index 686f844855da..9026a145889a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/importragfiles/SyncImportRagFilesStringImportragfilesconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocations.java index bb43c89cc9fc..fd4d717257ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java index d951e51aff4a..92becbc51006 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/SyncListLocations.java index 936be12ab6e8..98436bb4302d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java index 14801a7b7e75..86c1410c5032 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorpora.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java index c5dcca4b4d6d..ccfa265eff6f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/AsyncListRagCorporaPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java index 5bd636d1b4b5..bf3a1dc32a27 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorpora.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java index a487555e473b..d321788e1085 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java index dd1a63570d5a..376a2d4eba43 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragcorpora/SyncListRagCorporaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFiles.java index 590265464032..a685a00d7f4a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java index 99d5697159a4..361a6e41df40 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/AsyncListRagFilesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFiles.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFiles.java index 9b9594b028ea..dd392a3f828e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFiles.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java index fbe25b4441be..4f18c90d6319 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesRagcorpusname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesString.java index c23deefe99f5..54eb22349696 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/listragfiles/SyncListRagFilesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java index 0c83d65be810..679ac720f461 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java index 29ec0ebaf139..66dcbbd072db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java index b35a1be4c937..342d8a34c2af 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java index d50ce18e49b4..b2e2340146db 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java index 059181050e64..244f3ef22cd7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java index 00886ffe8c9e..0e1a68255fca 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/AsyncUpdateRagCorpusLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java index 74399d3b681b..f577448e626e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java index 4687ee86cd3a..cdf0daca5882 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragcorpus/SyncUpdateRagCorpusRagcorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java index 0facd4b1c4ad..6c3b409616b0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java index 796b8cf233ef..b6b7ca349e5d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/AsyncUpdateRagEngineConfigLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java index eb117af1a93e..25b25f15067d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java index f6eb4ae7c8fb..79fd00ebb6f8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/updateragengineconfig/SyncUpdateRagEngineConfigRagengineconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java index 9434fe58f38c..701d0de2c407 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/AsyncUploadRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java index 2506a598ff0f..e78d407c909b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java index af737ae4b759..81f452edc9f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileRagcorpusnameRagfileUploadragfileconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java index f98c5482c83d..2cc13c44ab93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservice/uploadragfile/SyncUploadRagFileStringRagfileUploadragfileconfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java index 4a1715fa0b3c..fe1ade396c45 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/createragcorpus/SyncCreateRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java index 467ccca1600a..14fd595e0901 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragdataservicesettings/getragcorpus/SyncGetRagCorpus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java index 87ece9282e10..416436bc7410 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/AsyncAugmentPrompt.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPrompt.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPrompt.java index 7b90b5abf089..829403ee0985 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPrompt.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPrompt.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java index 1dbab21ef73f..ea4848cd3552 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptLocationnameAugmentpromptrequestmodelVertexragstore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java index 240b7cdfdd8c..97b794fe80ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/augmentprompt/SyncAugmentPromptStringAugmentpromptrequestmodelVertexragstore.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java index fb8d06d69fb7..7ca5b145b76b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/AsyncCorroborateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContent.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContent.java index 88377b81c536..441f9c2d4c81 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContent.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java index e74870d8dfbe..1d25fa734876 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentLocationnameContentListfact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java index f1dbda325788..11155ee1a0ed 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/corroboratecontent/SyncCorroborateContentStringContentListfact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetCredentialsProvider.java index fa2ae1174688..c736b806d4b5 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetEndpoint.java index 7d4385b11edc..8f919f72e31f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java index f6ee64de96dd..d5906ca52056 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/SyncGetIamPolicy.java index a565eecd0218..1182dca4b62f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/AsyncGetLocation.java index 192003622714..a9767aef121c 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/SyncGetLocation.java index 593187c310ea..7628e3f30f7d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocations.java index c73a020cd972..d0210ffda18e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocationsPaged.java index a240bc9a9506..9b2dfed25efe 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/SyncListLocations.java index 4332b69c5d12..c9ed7ce8ecc3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java index 41e3a380d220..c983434b4003 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/AsyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java index 9d172a79b3da..f1a674cdd102 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java index 233d02728ade..a110d9ca5fe2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsLocationnameRagquery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java index c445b0dc4d0d..7a0d95f49bee 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/retrievecontexts/SyncRetrieveContextsStringRagquery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java index 2751f2700aa1..66002846f192 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/SyncSetIamPolicy.java index 5df4c1e0bc14..132f07375dc6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java index 1ff62d53a438..b487cd2343ce 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/SyncTestIamPermissions.java index 401dc7e75be3..3f030508d3d7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java index 72ec74bf9caf..f76752fe0fa6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vertexragservicesettings/retrievecontexts/SyncRetrieveContexts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java index 32d5eada9af5..6ece5f0050f3 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/AsyncAddTrialMeasurement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java index 56f5447668fa..314ac0fa914f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/addtrialmeasurement/SyncAddTrialMeasurement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java index 49c74699e409..bd398b5210c4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java index 50157793d117..fbfc73b64c76 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/AsyncCheckTrialEarlyStoppingStateLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java index 8757798b2b68..c521fa9a3bda 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/checktrialearlystoppingstate/SyncCheckTrialEarlyStoppingState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/AsyncCompleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/AsyncCompleteTrial.java index d7fe590c2504..c5247c04c336 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/AsyncCompleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/AsyncCompleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/SyncCompleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/SyncCompleteTrial.java index 74df42640a40..3dbd54710e93 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/SyncCompleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/completetrial/SyncCompleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetCredentialsProvider.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetCredentialsProvider.java index 76ff4fc0792d..05f548db7fbd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetEndpoint.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetEndpoint.java index 663719c6dbba..5a0edeffb876 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetEndpoint.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/AsyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/AsyncCreateStudy.java index cdeb296fe81e..768036c52e82 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/AsyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/AsyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudy.java index fdff96aa5064..cbdb4e31ddb9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java index ff068afa3057..bd9f5bdd2e73 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyLocationnameStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyStringStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyStringStudy.java index 9192b2eaa62b..833e160a7971 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyStringStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createstudy/SyncCreateStudyStringStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/AsyncCreateTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/AsyncCreateTrial.java index b164c423891a..0520dc0c5f9d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/AsyncCreateTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/AsyncCreateTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrial.java index 3e5a99e9d7b4..3f395e11b162 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStringTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStringTrial.java index 3ed31e1e7589..dfeaae3820a4 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStringTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStringTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java index b4d5dd0c8797..4f583122684d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/createtrial/SyncCreateTrialStudynameTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/AsyncDeleteStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/AsyncDeleteStudy.java index 7299a8dcd52d..53e05b5cb91b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/AsyncDeleteStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/AsyncDeleteStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudy.java index 1d1f3dd5b6d2..004beea8a738 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyString.java index d804ba8a726d..3bcc1ff094a2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java index f0a77cd46149..d59914f6894b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletestudy/SyncDeleteStudyStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/AsyncDeleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/AsyncDeleteTrial.java index 9bef278b73ce..d2da189fd049 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/AsyncDeleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/AsyncDeleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrial.java index 24d53efabd03..a7d1a155922f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialString.java index ee6c0a16d45b..04f017a9f507 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java index e7a879c70d29..296b523d56b6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/deletetrial/SyncDeleteTrialTrialname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/AsyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/AsyncGetIamPolicy.java index 1fce1058eb9d..55d6b1fec41e 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/SyncGetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/SyncGetIamPolicy.java index 2cde380f246a..4b146e28f328 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/AsyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/AsyncGetLocation.java index d524bdaed994..ca966cf68075 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/AsyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/SyncGetLocation.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/SyncGetLocation.java index 8bd7582900a7..683025736464 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/SyncGetLocation.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/AsyncGetStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/AsyncGetStudy.java index 814cdbc9ba0b..fff59e20c6be 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/AsyncGetStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/AsyncGetStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudy.java index d930614c4fcd..06535d937e92 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyString.java index 00794c9445d5..37a632f3856b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyStudyname.java index 538a75fda3e0..dca683a4ca88 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/getstudy/SyncGetStudyStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/AsyncGetTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/AsyncGetTrial.java index a1b136f37fda..8bb7fab2b068 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/AsyncGetTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/AsyncGetTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrial.java index b05e5ec5d02e..1ed418dfd3c7 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialString.java index 0a3bbd59063e..9ea93785bc60 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialTrialname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialTrialname.java index 8adc3f17dd4f..34bd530cd95d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialTrialname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/gettrial/SyncGetTrialTrialname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocations.java index 7ee97557bcac..0610ab661c4f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocationsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocationsPaged.java index c6cab24ef998..9166233fb7e8 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocationsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/SyncListLocations.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/SyncListLocations.java index d255a709a5f6..7f5f5fa84cd0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/SyncListLocations.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java index b1d6fca01c2b..3a84144ac508 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/AsyncListOptimalTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java index a9d9bc5fe260..98b944b5f25d 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java index 0eef9c16464b..7db40d619ca0 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java index 787a650234a0..172a44d1d20a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listoptimaltrials/SyncListOptimalTrialsStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudies.java index 9384a79ad300..9eb80e6259aa 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudiesPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudiesPaged.java index d39a28b17cec..f773e5ac9b16 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudiesPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/AsyncListStudiesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudies.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudies.java index afd8f6ac6f61..568becf083fb 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudies.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesLocationname.java index 3ad47a6f12ef..63283f4755c6 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesString.java index c5fc13332b4b..46c445b1ce33 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/liststudies/SyncListStudiesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrials.java index 04a8c640209a..77a86187643f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrialsPaged.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrialsPaged.java index aecc2a6c7971..c39334265964 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrialsPaged.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/AsyncListTrialsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrials.java index 57e799bacb5e..1fcbc393a376 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsString.java index bfae28b92fa3..5322dc3347e1 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsStudyname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsStudyname.java index 14290997bc75..82718b194647 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsStudyname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/listtrials/SyncListTrialsStudyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/AsyncLookupStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/AsyncLookupStudy.java index 64576818030e..fdf01cabe453 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/AsyncLookupStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/AsyncLookupStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudy.java index 4369ddb0ff8b..85fcb7816fba 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java index 809ec6e6d535..ca8506d6d77a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyString.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyString.java index 5aaf6030ae9e..c8febed2d825 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyString.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/lookupstudy/SyncLookupStudyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/AsyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/AsyncSetIamPolicy.java index 65c94a0ad014..20365a3431f9 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/SyncSetIamPolicy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/SyncSetIamPolicy.java index 6e3e9615dbf6..c588fc79733b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/AsyncStopTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/AsyncStopTrial.java index 57b8f9c578d8..e74cb7724d0a 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/AsyncStopTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/AsyncStopTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/SyncStopTrial.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/SyncStopTrial.java index 82cd591063df..681bcf5d20ea 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/SyncStopTrial.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/stoptrial/SyncStopTrial.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrials.java index 7cd95c317228..619bb46baa29 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java index 252389349d27..c8f456b1053b 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/AsyncSuggestTrialsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/SyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/SyncSuggestTrials.java index a994746668a3..f191c0017f5f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/SyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/suggesttrials/SyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/AsyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/AsyncTestIamPermissions.java index 4ba2306e67c6..e968e25a2fd2 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/SyncTestIamPermissions.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/SyncTestIamPermissions.java index 6c7cf5d62098..d212fd76fabd 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/createstudy/SyncCreateStudy.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/createstudy/SyncCreateStudy.java index b0723bde7d37..f0f77120a5ae 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/createstudy/SyncCreateStudy.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/createstudy/SyncCreateStudy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java index 6d3abeeb2a4c..77bf2196547f 100644 --- a/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java +++ b/java-aiplatform/samples/snippets/generated/com/google/cloud/aiplatform/v1beta1/vizierservicesettings/suggesttrials/SyncSuggestTrials.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/CHANGELOG.md b/java-alloydb-connectors/CHANGELOG.md index 7341bf9c4ec4..cb90f579ac2b 100644 --- a/java-alloydb-connectors/CHANGELOG.md +++ b/java-alloydb-connectors/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 0.60.0 (2026-01-15) + +### Features + +* add POSTGRES_18 to DatabaseVersion ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* add POSTGRES_18 to DatabaseVersion ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.59.0 (2025-12-16) + +### Bug Fixes + +* Clarify that [initial_user](http://_vscodecontentref_/3) is not required in Cluster ([2f0f298](https://github.com/googleapis/google-cloud-java/commit/2f0f2982905cbbdccd4bce9bf5fb801512ee42c2)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.56.0 (2025-10-21) ### Dependencies diff --git a/java-alloydb-connectors/README.md b/java-alloydb-connectors/README.md index 6ce24f28158b..6b93b85eb9c7 100644 --- a/java-alloydb-connectors/README.md +++ b/java-alloydb-connectors/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-alloydb-connectors - 0.56.0 + 0.59.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-alloydb-connectors:0.56.0' +implementation 'com.google.cloud:google-cloud-alloydb-connectors:0.59.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-alloydb-connectors" % "0.56.0" +libraryDependencies += "com.google.cloud" % "google-cloud-alloydb-connectors" % "0.59.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/alloydb/docs [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-alloydb-connectors/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-alloydb-connectors.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-alloydb-connectors/0.56.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-alloydb-connectors/0.59.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-alloydb-connectors/google-cloud-alloydb-connectors-bom/pom.xml b/java-alloydb-connectors/google-cloud-alloydb-connectors-bom/pom.xml index 2c6859f28db6..5d524de7ea77 100644 --- a/java-alloydb-connectors/google-cloud-alloydb-connectors-bom/pom.xml +++ b/java-alloydb-connectors/google-cloud-alloydb-connectors-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-alloydb-connectors-bom - 0.59.0-SNAPSHOT + 0.60.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,22 +27,22 @@ com.google.cloud google-cloud-alloydb-connectors - 0.59.0-SNAPSHOT + 0.60.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1alpha - 0.59.0-SNAPSHOT + 0.60.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1beta - 0.59.0-SNAPSHOT + 0.60.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1 - 0.59.0-SNAPSHOT + 0.60.0
diff --git a/java-alloydb-connectors/google-cloud-alloydb-connectors/pom.xml b/java-alloydb-connectors/google-cloud-alloydb-connectors/pom.xml index bfbddb3d11a6..16661918c356 100644 --- a/java-alloydb-connectors/google-cloud-alloydb-connectors/pom.xml +++ b/java-alloydb-connectors/google-cloud-alloydb-connectors/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-alloydb-connectors - 0.59.0-SNAPSHOT + 0.60.0 jar Google AlloyDB connectors AlloyDB connectors AlloyDB is a fully-managed, PostgreSQL-compatible database for demanding transactional workloads. It provides enterprise-grade performance and availability while maintaining 100% compatibility with open-source PostgreSQL. com.google.cloud google-cloud-alloydb-connectors-parent - 0.59.0-SNAPSHOT + 0.60.0 google-cloud-alloydb-connectors diff --git a/java-alloydb-connectors/pom.xml b/java-alloydb-connectors/pom.xml index ae764d86b844..6e31aae931ab 100644 --- a/java-alloydb-connectors/pom.xml +++ b/java-alloydb-connectors/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-alloydb-connectors-parent pom - 0.59.0-SNAPSHOT + 0.60.0 Google AlloyDB connectors Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,22 +29,22 @@ com.google.cloud google-cloud-alloydb-connectors - 0.59.0-SNAPSHOT + 0.60.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1 - 0.59.0-SNAPSHOT + 0.60.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1beta - 0.59.0-SNAPSHOT + 0.60.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1alpha - 0.59.0-SNAPSHOT + 0.60.0
diff --git a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/pom.xml b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/pom.xml index 320798ef0b71..7aed8f53ef8e 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/pom.xml +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1 - 0.59.0-SNAPSHOT + 0.60.0 proto-google-cloud-alloydb-connectors-v1 Proto library for google-cloud-alloydb-connectors com.google.cloud google-cloud-alloydb-connectors-parent - 0.59.0-SNAPSHOT + 0.60.0 diff --git a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequest.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequest.java index 08e7b0d9e3f6..c5359f3128f5 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequest.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequestOrBuilder.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequestOrBuilder.java index 97f8c7382da1..e805ce8685f6 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequestOrBuilder.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponse.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponse.java index 65908d4aa007..a863849637d7 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponse.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponseOrBuilder.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponseOrBuilder.java index c06ff954c1af..98823910f45c 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponseOrBuilder.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/MetadataExchangeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/ResourcesProto.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/ResourcesProto.java index 837fc489175e..8fd943133649 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/ResourcesProto.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1/src/main/java/com/google/cloud/alloydb/connectors/v1/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/pom.xml b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/pom.xml index 571c111c5b39..5cfd096a2f0c 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/pom.xml +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1alpha - 0.59.0-SNAPSHOT + 0.60.0 proto-google-cloud-alloydb-connectors-v1alpha Proto library for google-cloud-alloydb-connectors com.google.cloud google-cloud-alloydb-connectors-parent - 0.59.0-SNAPSHOT + 0.60.0 diff --git a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequest.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequest.java index a2223513c204..597bc9a3faa6 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequest.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequestOrBuilder.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequestOrBuilder.java index d649d17243db..b23b52b01d98 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequestOrBuilder.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponse.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponse.java index 1abcf7e7dca8..380cf8081528 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponse.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponseOrBuilder.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponseOrBuilder.java index 05049d1bfa42..a3f6a54e7c17 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponseOrBuilder.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/MetadataExchangeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/ResourcesProto.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/ResourcesProto.java index 4cf39f18278a..0b9fcec8ade5 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/ResourcesProto.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1alpha/src/main/java/com/google/cloud/alloydb/connectors/v1alpha/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/pom.xml b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/pom.xml index 5fb624a0516a..dc34be264d9c 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/pom.xml +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-alloydb-connectors-v1beta - 0.59.0-SNAPSHOT + 0.60.0 proto-google-cloud-alloydb-connectors-v1beta Proto library for google-cloud-alloydb-connectors com.google.cloud google-cloud-alloydb-connectors-parent - 0.59.0-SNAPSHOT + 0.60.0 diff --git a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequest.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequest.java index 5fa00da9b82c..0cb9c5faf0f8 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequest.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequestOrBuilder.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequestOrBuilder.java index 3df077895e9e..9b379e3afcd3 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequestOrBuilder.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponse.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponse.java index a684126689d0..86553a3b279c 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponse.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponseOrBuilder.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponseOrBuilder.java index 26ce0011c792..f638cf3c3c58 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponseOrBuilder.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/MetadataExchangeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/ResourcesProto.java b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/ResourcesProto.java index e2540342c3b9..c0edcf1b1827 100644 --- a/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/ResourcesProto.java +++ b/java-alloydb-connectors/proto-google-cloud-alloydb-connectors-v1beta/src/main/java/com/google/cloud/alloydb/connectors/v1beta/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/CHANGELOG.md b/java-alloydb/CHANGELOG.md index dfb26db0f2e1..d94adddfbc3a 100644 --- a/java-alloydb/CHANGELOG.md +++ b/java-alloydb/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 0.71.0 (2026-01-15) + +### Features + +* add POSTGRES_18 to DatabaseVersion ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) +* add POSTGRES_18 to DatabaseVersion ([59c954c](https://github.com/googleapis/google-cloud-java/commit/59c954c089f0379e716236aaa279207820a7dfe4)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.70.0 (2025-12-16) + +### Bug Fixes + +* Clarify that [initial_user](http://_vscodecontentref_/3) is not required in Cluster ([2f0f298](https://github.com/googleapis/google-cloud-java/commit/2f0f2982905cbbdccd4bce9bf5fb801512ee42c2)) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.67.0 (2025-10-21) ### Dependencies diff --git a/java-alloydb/README.md b/java-alloydb/README.md index a989795b8e78..e1b2161142a8 100644 --- a/java-alloydb/README.md +++ b/java-alloydb/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-alloydb - 0.67.0 + 0.70.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-alloydb:0.67.0' +implementation 'com.google.cloud:google-cloud-alloydb:0.70.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-alloydb" % "0.67.0" +libraryDependencies += "com.google.cloud" % "google-cloud-alloydb" % "0.70.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/alloydb/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-alloydb/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-alloydb.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-alloydb/0.67.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-alloydb/0.70.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-alloydb/google-cloud-alloydb-bom/pom.xml b/java-alloydb/google-cloud-alloydb-bom/pom.xml index 0192c4d6af7f..488dc9fb57da 100644 --- a/java-alloydb/google-cloud-alloydb-bom/pom.xml +++ b/java-alloydb/google-cloud-alloydb-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-alloydb-bom - 0.70.0-SNAPSHOT + 0.71.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,37 +27,37 @@ com.google.cloud google-cloud-alloydb - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-alloydb-v1beta - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-alloydb-v1 - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-alloydb-v1alpha - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-alloydb-v1 - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-alloydb-v1beta - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-alloydb-v1alpha - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/google-cloud-alloydb/pom.xml b/java-alloydb/google-cloud-alloydb/pom.xml index 44a0b7fdf184..9a840e511168 100644 --- a/java-alloydb/google-cloud-alloydb/pom.xml +++ b/java-alloydb/google-cloud-alloydb/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-alloydb - 0.70.0-SNAPSHOT + 0.71.0 jar Google AlloyDB AlloyDB AlloyDB is a fully managed, PostgreSQL-compatible database service with industry-leading performance, availability, and scale. com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 google-cloud-alloydb diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminClient.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminClient.java index 070a12e7ee93..879e43a76ebe 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminClient.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminSettings.java index 06ba80a169a7..6ab1d70005be 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClient.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClient.java index b79cad96443a..9bcf15b3ac99 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClient.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminSettings.java index f3e1d7103428..29230bd9cb39 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/package-info.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/package-info.java index 38f9aa96438a..73c8d91586c0 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/package-info.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStub.java index 3af12e923ff1..d0c58ae21372 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStubSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStubSettings.java index 904fc7c94b24..aca69115a287 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStubSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -173,8 +173,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStub.java index 7bdd829fae75..bf51be5b32f2 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStubSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStubSettings.java index 6e6654b1c582..00c3b6b13ab7 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStubSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/AlloyDBCSQLAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminCallableFactory.java index 482fa38ac912..a8826646c3bf 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminStub.java index 2ee4c7a8aeda..76df12c00b7f 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminCallableFactory.java index e450f46633c6..ec157f85224b 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminStub.java index 7198e5e0d07f..97f89f030976 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/GrpcAlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminCallableFactory.java index f0e83a784bb2..bb821c0af249 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminStub.java index c2b39039930f..cef8213092b8 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java index fd11490012b2..b2174355c3e1 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminStub.java index 163ce381e1e1..24a011c2575e 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/stub/HttpJsonAlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClient.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClient.java index eb7cedfe8865..a9880d8b1a2d 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClient.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminSettings.java index 7fb58c8fb633..23b985cd83c7 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClient.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClient.java index d64d61d0b10b..ab185bd25a95 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClient.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminSettings.java index 4a43885d3beb..cd15ab08d1f5 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/package-info.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/package-info.java index 835009327da1..68c9a4800d1b 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/package-info.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStub.java index 2aed89896920..4b60dc0fd648 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStubSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStubSettings.java index 7d74e8d5ce59..f56d2f7413f1 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStubSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -174,8 +174,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStub.java index 2fb2ba009bf5..9209353dbdc8 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStubSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStubSettings.java index 56f0cb9ebbc2..7195e78af90a 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStubSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/AlloyDBCSQLAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminCallableFactory.java index 7e6db28c60c8..de7d74a77ce6 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminStub.java index 0b59025730ed..cdb033743ba2 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminCallableFactory.java index 45b4e3fb941c..366900f30a25 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminStub.java index 181e39251738..8cf08a910d2f 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/GrpcAlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminCallableFactory.java index 6e2a3f637b29..eb41bc204b65 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminStub.java index 4a4c1aa8897e..a2b37cbebe00 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java index c3ae13ec6290..6b079f0f67f8 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminStub.java index 161a183ae208..5e3883d89cc4 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1alpha/stub/HttpJsonAlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClient.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClient.java index f3c4379bc8ab..7036408e65ac 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClient.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminSettings.java index 5e02794df8d2..71271172bb7c 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClient.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClient.java index 0fca4c21fef5..1d45f6cb0865 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClient.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminSettings.java index 8dd243a06af1..668a6e386f26 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/package-info.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/package-info.java index 3bf6d0ff8b6c..dd0d65bbd728 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/package-info.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStub.java index 66eba62ed45e..d603685311e7 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStubSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStubSettings.java index d2a190e2d6c8..daf64e990fe4 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStubSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -174,8 +174,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStub.java index 5b5e1f07d0e7..b6d528d295ea 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStubSettings.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStubSettings.java index bd5ea072233c..0c3907c40788 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStubSettings.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/AlloyDBCSQLAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminCallableFactory.java index 316ee64ddd3c..7be58c1ef0b4 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminStub.java index 7dc978f634f5..afbb53a092c7 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminCallableFactory.java index af14c9331d51..60d634ec96f7 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminStub.java index af4ba0991653..f5dbec353770 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/GrpcAlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminCallableFactory.java index ce7179ef50ed..56adf843ce5f 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminStub.java index edf7247cee95..b99cdccaa1f2 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java index cc01feaaa35e..25f920bfbd45 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminStub.java b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminStub.java index da955cb30ed3..a6569c3dbad8 100644 --- a/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminStub.java +++ b/java-alloydb/google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1beta/stub/HttpJsonAlloyDBCSQLAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientHttpJsonTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientHttpJsonTest.java index cb983798bb6f..48e60fb7aaaa 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientHttpJsonTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientTest.java index 1a0c2051674c..a5effafdc855 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientHttpJsonTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientHttpJsonTest.java index a6365dfc12d6..79539b54d0f9 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientHttpJsonTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientTest.java index d2a35715e045..421cd61cdfdd 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdmin.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdmin.java index 194250f50170..b324f7093b17 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdmin.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdminImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdminImpl.java index 62ea8a212f07..1a3f301e27ed 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdminImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdmin.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdmin.java index 0c7b525b08a9..9622fa7332d5 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdmin.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdminImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdminImpl.java index d52d7e35b65c..f187553917cf 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdminImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockAlloyDBCSQLAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicy.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicy.java index fbd47087d176..d831a64bb790 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicy.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicyImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicyImpl.java index b27b884bf5d8..0b0a43dc7bb9 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicyImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocations.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocations.java index 19e933648203..4b905c851604 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocations.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocationsImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocationsImpl.java index 84caeb5f9edf..00e41a7374ff 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocationsImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientHttpJsonTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientHttpJsonTest.java index b3ba4ab75167..5b8899e21e3e 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientHttpJsonTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientTest.java index 85fbf5728a3f..9811f88e488a 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientHttpJsonTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientHttpJsonTest.java index ad6bc8d2dade..a630bfabb78e 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientHttpJsonTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientTest.java index 48a8f7db91df..6ef205c35818 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdmin.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdmin.java index 6641712c8bb1..1fdb78393a15 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdmin.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdminImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdminImpl.java index 02f0d9c6faa7..1b9e6844eaac 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdminImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdmin.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdmin.java index a2d4f4cdd342..3a61bf3cbc06 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdmin.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdminImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdminImpl.java index 737b8c371c33..9986b49cf552 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdminImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockAlloyDBCSQLAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicy.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicy.java index 1d919d4a4ae0..2ada82a8efdc 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicy.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicyImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicyImpl.java index 30cb93cb5c53..30ee2bc39ff3 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicyImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocations.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocations.java index 04b0bacb6d20..3dc752eb76e3 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocations.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocationsImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocationsImpl.java index ee9d12ee01da..8c8fb18e104f 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocationsImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1alpha/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientHttpJsonTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientHttpJsonTest.java index 8d7cb9c59a24..73335a93600f 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientHttpJsonTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientTest.java index 891a942b0205..636ad704d98e 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientHttpJsonTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientHttpJsonTest.java index c6b868aa9b3f..2415bb7eff5f 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientHttpJsonTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientTest.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientTest.java index 74be3c3be50d..bca228edfee6 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientTest.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdmin.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdmin.java index a44db72a1126..b9b6b60a09db 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdmin.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdminImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdminImpl.java index fa5b26c933f7..26065ee1ed63 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdminImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdmin.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdmin.java index ecc9a056e764..e54fd9a6edae 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdmin.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdminImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdminImpl.java index 159d911848f8..e2fe467af790 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdminImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockAlloyDBCSQLAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicy.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicy.java index 897bb33bc54a..eea841038dfd 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicy.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicyImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicyImpl.java index 37015e31fe84..920f5a3a4941 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicyImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocations.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocations.java index 310a1eaeb870..8da9566af78d 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocations.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocationsImpl.java b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocationsImpl.java index cc139e564828..5a7fba16f3da 100644 --- a/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocationsImpl.java +++ b/java-alloydb/google-cloud-alloydb/src/test/java/com/google/cloud/alloydb/v1beta/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/grpc-google-cloud-alloydb-v1/pom.xml b/java-alloydb/grpc-google-cloud-alloydb-v1/pom.xml index 7871d837a979..529088d8653a 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1/pom.xml +++ b/java-alloydb/grpc-google-cloud-alloydb-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-alloydb-v1 - 0.70.0-SNAPSHOT + 0.71.0 grpc-google-cloud-alloydb-v1 GRPC library for google-cloud-alloydb com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminGrpc.java b/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminGrpc.java index 0684f1745a19..db5271a9da53 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminGrpc.java +++ b/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminGrpc.java b/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminGrpc.java index 68ce06079dd3..38d46d4c00a1 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminGrpc.java +++ b/java-alloydb/grpc-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AlloyDBCSQLAdminGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/grpc-google-cloud-alloydb-v1alpha/pom.xml b/java-alloydb/grpc-google-cloud-alloydb-v1alpha/pom.xml index 345d3a378fa0..6c62c3182dce 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1alpha/pom.xml +++ b/java-alloydb/grpc-google-cloud-alloydb-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-alloydb-v1alpha - 0.70.0-SNAPSHOT + 0.71.0 grpc-google-cloud-alloydb-v1alpha GRPC library for google-cloud-alloydb com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminGrpc.java b/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminGrpc.java index 01b48217c6fe..16b90853046b 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminGrpc.java +++ b/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBAdminGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminGrpc.java b/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminGrpc.java index 6341433a358b..cbf70fe48c4d 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminGrpc.java +++ b/java-alloydb/grpc-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AlloyDBCSQLAdminGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/grpc-google-cloud-alloydb-v1beta/pom.xml b/java-alloydb/grpc-google-cloud-alloydb-v1beta/pom.xml index 130980719eb6..46b84c3c9775 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1beta/pom.xml +++ b/java-alloydb/grpc-google-cloud-alloydb-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-alloydb-v1beta - 0.70.0-SNAPSHOT + 0.71.0 grpc-google-cloud-alloydb-v1beta GRPC library for google-cloud-alloydb com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminGrpc.java b/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminGrpc.java index 57f21022099c..ae84c2872783 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminGrpc.java +++ b/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBAdminGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminGrpc.java b/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminGrpc.java index 1d0a11b74341..21f907031da3 100644 --- a/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminGrpc.java +++ b/java-alloydb/grpc-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AlloyDBCSQLAdminGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/pom.xml b/java-alloydb/pom.xml index cb359de062c8..c30c0e9d4498 100644 --- a/java-alloydb/pom.xml +++ b/java-alloydb/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-alloydb-parent pom - 0.70.0-SNAPSHOT + 0.71.0 Google AlloyDB Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,37 +29,37 @@ com.google.cloud google-cloud-alloydb - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-alloydb-v1beta - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-alloydb-v1 - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc grpc-google-cloud-alloydb-v1alpha - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-alloydb-v1 - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-alloydb-v1beta - 0.70.0-SNAPSHOT + 0.71.0 com.google.api.grpc proto-google-cloud-alloydb-v1alpha - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/proto-google-cloud-alloydb-v1/pom.xml b/java-alloydb/proto-google-cloud-alloydb-v1/pom.xml index 12200ce3ee14..38ea0e76a805 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/pom.xml +++ b/java-alloydb/proto-google-cloud-alloydb-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-alloydb-v1 - 0.70.0-SNAPSHOT + 0.71.0 proto-google-cloud-alloydb-v1 Proto library for google-cloud-alloydb com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicy.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicy.java index 166edadf8b93..673c81675c7c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicy.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicyOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicyOrBuilder.java index f776303cea7d..a64540ee647a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicyOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/AutomatedBackupPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Backup.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Backup.java index 64986ebc41f8..4e383ebbe69a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Backup.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Backup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupName.java index 6d6e9ca5356c..a701caf9a664 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupOrBuilder.java index a2485f4d709e..bc601d8c5dd7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSource.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSource.java index cbf8ba15f9ca..5357b61de35f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSourceOrBuilder.java index 64cd2ed11ddc..957a724d36b7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BackupSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatus.java index 07e8d77e736c..be8ff99c6d0e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatusOrBuilder.java index dda1a3b5f2e9..5c7727461263 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstanceStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadata.java index ffbda373288f..77933aef7e1b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadataOrBuilder.java index 84e2c3e8b234..9d0525f6f505 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequest.java index 6315c9fabf3d..9cb376bf0fe9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequestOrBuilder.java index 69c0836f4ab7..abe4b1b424a1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponse.java index c9e594b5617f..48221345d26c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponseOrBuilder.java index bba74966dc38..ac0512961262 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/BatchCreateInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CSQLServiceProto.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CSQLServiceProto.java index d977b6381491..0eb6311eeba9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CSQLServiceProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CSQLServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSource.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSource.java index 7b6112d4c0ee..bc099aad4628 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSourceOrBuilder.java index 8790a418b25f..bc97e9a10de2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CloudSQLBackupRunSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Cluster.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Cluster.java index a172368e7f8a..40735d68228c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Cluster.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Cluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -6560,7 +6560,7 @@ public boolean getReconciling() { * * *

-   * Input only. Initial user to setup during cluster creation. Required.
+   * Input only. Initial user to setup during cluster creation.
    * If used in `RestoreCluster` this is ignored.
    * 
* @@ -6579,7 +6579,7 @@ public boolean hasInitialUser() { * * *
-   * Input only. Initial user to setup during cluster creation. Required.
+   * Input only. Initial user to setup during cluster creation.
    * If used in `RestoreCluster` this is ignored.
    * 
* @@ -6600,7 +6600,7 @@ public com.google.cloud.alloydb.v1.UserPassword getInitialUser() { * * *
-   * Input only. Initial user to setup during cluster creation. Required.
+   * Input only. Initial user to setup during cluster creation.
    * If used in `RestoreCluster` this is ignored.
    * 
* @@ -11936,7 +11936,7 @@ public Builder clearReconciling() { * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -11954,7 +11954,7 @@ public boolean hasInitialUser() { * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -11978,7 +11978,7 @@ public com.google.cloud.alloydb.v1.UserPassword getInitialUser() { * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -12004,7 +12004,7 @@ public Builder setInitialUser(com.google.cloud.alloydb.v1.UserPassword value) { * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -12028,7 +12028,7 @@ public Builder setInitialUser( * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -12059,7 +12059,7 @@ public Builder mergeInitialUser(com.google.cloud.alloydb.v1.UserPassword value) * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -12082,7 +12082,7 @@ public Builder clearInitialUser() { * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -12100,7 +12100,7 @@ public com.google.cloud.alloydb.v1.UserPassword.Builder getInitialUserBuilder() * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* @@ -12122,7 +12122,7 @@ public com.google.cloud.alloydb.v1.UserPasswordOrBuilder getInitialUserOrBuilder * * *
-     * Input only. Initial user to setup during cluster creation. Required.
+     * Input only. Initial user to setup during cluster creation.
      * If used in `RestoreCluster` this is ignored.
      * 
* diff --git a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterName.java index 91ed56a8d0d7..5711595c83e6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterOrBuilder.java index a0d1f4a35693..980372775bd4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -718,7 +718,7 @@ java.lang.String getAnnotationsOrDefault( * * *
-   * Input only. Initial user to setup during cluster creation. Required.
+   * Input only. Initial user to setup during cluster creation.
    * If used in `RestoreCluster` this is ignored.
    * 
* @@ -734,7 +734,7 @@ java.lang.String getAnnotationsOrDefault( * * *
-   * Input only. Initial user to setup during cluster creation. Required.
+   * Input only. Initial user to setup during cluster creation.
    * If used in `RestoreCluster` this is ignored.
    * 
* @@ -750,7 +750,7 @@ java.lang.String getAnnotationsOrDefault( * * *
-   * Input only. Initial user to setup during cluster creation. Required.
+   * Input only. Initial user to setup during cluster creation.
    * If used in `RestoreCluster` this is ignored.
    * 
* diff --git a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterView.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterView.java index a0660efe2e6e..4c02e0b69669 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterView.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ClusterView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfo.java index 017ebf18472e..d43f7507e714 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfoOrBuilder.java index a6f6dc06e677..19e784cdefa4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ConnectionInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfig.java index 8140abc47697..1879046a7fd8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfigOrBuilder.java index 53a919baf96f..cfcf62436cf4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfo.java index 3c8195816240..d49d22769aaa 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfoOrBuilder.java index 65ea63a25a47..0d62020545bf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSource.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSource.java index d35a6a752f9f..e4f214bad24e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSourceOrBuilder.java index 9ef5a3d8ef18..1c80115d3973 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ContinuousBackupSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequest.java index e6d1e7e822f3..f87aebc93a58 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequestOrBuilder.java index 50df8710418b..36ea5965caad 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequest.java index a133476f0d74..e73eed2aec95 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequestOrBuilder.java index 6ab0582dabbb..d1ce37bc6de5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequest.java index 25757de72f2f..45460b45ca91 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestOrBuilder.java index 347a26f89e6e..a4af41346eea 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequests.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequests.java index b69be8553d9f..f1191dd73e4c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequests.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestsOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestsOrBuilder.java index 11f2bf07042d..6646d14227ce 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestsOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateInstanceRequestsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequest.java index 11481934001f..d11c90a655f5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequestOrBuilder.java index 62602f1f7865..b234dde08816 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequest.java index aa14bc44b930..44bbb3ee7cc2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequestOrBuilder.java index 9712a5a83b43..1830c71d2d54 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateSecondaryInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequest.java index 6f06f4fbcb78..b2051ae5747d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequestOrBuilder.java index 845e6ae71e7e..6b191aa71662 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CreateUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CsqlResourcesProto.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CsqlResourcesProto.java index 7674adfbfd50..c115ef855d2e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CsqlResourcesProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/CsqlResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DataModelProto.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DataModelProto.java index dce16f984ac6..806d6b2a068f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DataModelProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DataModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Database.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Database.java index 8be428c1c043..8c3341523b73 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Database.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Database.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseName.java index feaeba306e96..40317bbb1c61 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseOrBuilder.java index c901a1de5c33..5dc6088baf49 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseVersion.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseVersion.java index b229b286205a..5ba5033888ab 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseVersion.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DatabaseVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequest.java index ffc98339c223..8247a3edec61 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequestOrBuilder.java index 6ef283535834..a860315de738 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequest.java index e76a6479d516..5dc035f610eb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequestOrBuilder.java index a28c2e24c7c7..af72f00ab673 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequest.java index a062a48523be..5829eceffdcc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequestOrBuilder.java index 9c77d5affbdc..c73678bed410 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequest.java index 39e66ded0e0e..81f2352dc8fb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequestOrBuilder.java index 32132ea64663..f05b39960d29 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/DeleteUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfig.java index 3ffbd9f8e0e6..cbc085bf7cfa 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfigOrBuilder.java index 219b6fc896d9..554b39aa112a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfo.java index 39c7d4d92c2a..9af31db54549 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfoOrBuilder.java index 23a37f343f0e..d381389baf37 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/EncryptionInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadata.java index 2eaae2d6b387..33169390ea7b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadataOrBuilder.java index ede25ee2ad25..dced8e43f715 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequest.java index 2741f4818c67..1489ad0433e1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequestOrBuilder.java index 9bf5fe15fea5..f6623194ac4f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponse.java index 09d67d82314b..91e819162cbb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponseOrBuilder.java index a51f334fef9a..79190cd9350c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExecuteSqlResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequest.java index b395e18661e1..7858f672a118 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequestOrBuilder.java index fd8e700eee93..4fec3dcd7830 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponse.java index 5856cc0b55b2..bcd917782e24 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponseOrBuilder.java index d95e09e9b1df..4d773e56c713 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ExportClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequest.java index 62b7644f65da..7457f2af74ff 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequestOrBuilder.java index 8e5a1badcf40..2ce969f888bc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/FailoverInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestination.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestination.java index 1c85c344a832..551ea2499d2b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestination.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestinationOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestinationOrBuilder.java index b94816e01e1b..0cd34c29e3a5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestinationOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequest.java index 3f982df46dcb..921111b24938 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequestOrBuilder.java index f63f5121c870..01a59c8207b3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponse.java index 2da6c04be080..5a269cd4d751 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponseOrBuilder.java index a1c79413ecd3..00a1acc4c42c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GenerateClientCertificateResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequest.java index f419e8950266..481132cc93b7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequestOrBuilder.java index 468af3b65b20..1b1bf4faacaf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequest.java index 4950be7130d0..e09e3b0909fb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequestOrBuilder.java index eb48b84e238b..bb96a586894d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequest.java index c41bbbe82810..440cbe250fdf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequestOrBuilder.java index d7ecb19d8e38..18b20ee9bffa 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetConnectionInfoRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequest.java index 9da4a77e74e3..6a5c8459cc47 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequestOrBuilder.java index 81548209bdd2..ce30810826b7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequest.java index c457f8dcddd5..251634c17d7d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequestOrBuilder.java index 1103708ae293..f0c2e1392523 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/GetUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequest.java index 6ea3e99e2535..5b22dcde899c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequestOrBuilder.java index 1af7f48b43ab..7906e33431cb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponse.java index 74fb911e6669..b1d03b1f3560 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponseOrBuilder.java index 8a277a9eca23..232e86b45a1a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ImportClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequest.java index 4348fd41dd54..860b30d58324 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequestOrBuilder.java index 7063e82652b9..d694fc664d05 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InjectFaultRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Instance.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Instance.java index 18dc68da8935..fa6072112d09 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Instance.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/Instance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceName.java index 88e7d93e5e1d..624856fbf86e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceOrBuilder.java index 4fbd6748fed6..63cd3a567e20 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceView.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceView.java index f76b763c5fba..d539140d36a0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceView.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/InstanceView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequest.java index 80d70947be4a..76e18b18806f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequestOrBuilder.java index 8b924e4a4222..64123f0d3484 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponse.java index da23309de1ce..424b9bb664d4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponseOrBuilder.java index 3e559962bba7..f7875a961b12 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListBackupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequest.java index 69c7dc7cfc09..54f612e9ae06 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequestOrBuilder.java index db14c8ffba8a..289860d5e0d1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponse.java index 3ba20bc20d77..b3ff406ae4e9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponseOrBuilder.java index b77c715ea950..24f55a489ca3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListClustersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequest.java index c50581fea40f..ce0ca5361876 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequestOrBuilder.java index 7a76f7db67b0..d28827bea7ad 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponse.java index 4eb308a9d15c..eb623bdc7911 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponseOrBuilder.java index c6a82389c585..4c6a8954930a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListDatabasesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequest.java index c8c3bd310c65..48033aafe693 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequestOrBuilder.java index 32bb2c60b2e6..2f9d2d240fdc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponse.java index 43aa764dcb5f..35ba4d4688e6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponseOrBuilder.java index 432bae03601b..dee7b30083de 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequest.java index c0d39ef7f673..3126804ffd2e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequestOrBuilder.java index 599f0a6ce0ba..3175affda18f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponse.java index 623549866c2e..6407f972bb58 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponseOrBuilder.java index 1cde56b54dae..82f8871a55e7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListSupportedDatabaseFlagsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequest.java index 5f646b280ba1..ff5c6ea58d04 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequestOrBuilder.java index 79f4cd9856f7..30af7f6376a6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponse.java index e40329e00b84..e57604e177cd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponseOrBuilder.java index 8e000b77910e..e10594341fbd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ListUsersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/LocationName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/LocationName.java index 84fc17599eab..bee6fa4fb9e9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/LocationName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceSchedule.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceSchedule.java index 3c3549cfe1d4..a2f9d461779e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceSchedule.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceScheduleOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceScheduleOrBuilder.java index e92dca18b96c..dd8ac8c4f723 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceScheduleOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceScheduleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicy.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicy.java index b2806ae83850..14f7b4db0780 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicy.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicyOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicyOrBuilder.java index 46d43a83efd0..ef50544b4698 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicyOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MaintenanceUpdatePolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSource.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSource.java index a9581a89f880..d86a518d0358 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSourceOrBuilder.java index 6f75baaf6411..96ddedf30f8e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/MigrationSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadata.java index 04b522358eda..eb3e005a930f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadataOrBuilder.java index 55bcec78d564..c7e8c9d89740 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequest.java index e5fe137803ef..6a04d4357632 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequestOrBuilder.java index 9dad9b7359e7..295123f67cb8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/PromoteClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ResourcesProto.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ResourcesProto.java index d70a36097210..ecfa3a1e3efc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ResourcesProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequest.java index 843b253ec0eb..1d3baa414b19 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequestOrBuilder.java index 4856f77d281b..e511035ce49f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestartInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequest.java index b245a3826490..690d3cd22696 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequestOrBuilder.java index 33813fa965c1..929b56a4bacd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequest.java index 50c402cb03e8..d0fdb60f0e81 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequestOrBuilder.java index 543e0ac4e6fc..1b3a156fb0c2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/RestoreFromCloudSQLRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ServiceProto.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ServiceProto.java index 541a945ff723..c88563e7b32a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ServiceProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResult.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResult.java index a89113f9b789..205733edf5e4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResult.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumn.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumn.java index a974e2f9dba3..c3cf50b65e2d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumn.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumn.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumnOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumnOrBuilder.java index 3b96805e55f5..e07d988f58ed 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumnOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultColumnOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultOrBuilder.java index 9e5a1c3192f6..78031541428f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRow.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRow.java index a44b05c9bc1b..0df198fa8d60 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRow.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRowOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRowOrBuilder.java index 2e6bbca56a4f..32f491b12e5f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRowOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValue.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValue.java index b9fecd84b509..e21ea6ade840 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValue.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValueOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValueOrBuilder.java index 918ecfbdbe5e..2de374238432 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValueOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SqlResultValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfig.java index 3be40d7e047d..c00c261e9b56 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfigOrBuilder.java index 79c07fc9eeb7..4a58b65997d9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SslConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SubscriptionType.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SubscriptionType.java index 81f6184d69dc..d1225f335715 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SubscriptionType.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SubscriptionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlag.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlag.java index 4d199f1bfb15..631f0291fd6d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlag.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagName.java index 05dabb04957c..c9c8c860be01 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagOrBuilder.java index b70715e4a0cf..2965e85599ca 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SupportedDatabaseFlagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequest.java index bff82f96ea53..2f6a092c26b8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequestOrBuilder.java index 69157654a3dd..cd1dea5f2163 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/SwitchoverClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequest.java index edb7224fd421..892e51f57221 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequestOrBuilder.java index 6a71904aa828..8d732a677abf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequest.java index f3a16c1c22c5..44248e07da58 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequestOrBuilder.java index fbd29ddc3287..d969a5da3808 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequest.java index e8766218271c..3fc09581ecb0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequestOrBuilder.java index 50092e9f2d91..798426a3bdb3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequest.java index 617ce8f0e480..93717c80e0cb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequestOrBuilder.java index cb614006efdb..3fca0726b24c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpdateUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequest.java index 295d86c0bc76..c30c629d7b4f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequestOrBuilder.java index e298397c10e6..e6bd9dc8d776 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponse.java index 9e237dc7c7ba..9ec3b5636a9b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponseOrBuilder.java index 8cc2ad806cb0..c6559b02a06e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatus.java index 05bc52d193fa..58c45d58c586 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatusOrBuilder.java index 982387aca6a0..5e8d47ab3052 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UpgradeClusterStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/User.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/User.java index 2575cfdf3789..8132c8f6d700 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/User.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/User.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserName.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserName.java index bbd1042e6280..86e86367ef95 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserOrBuilder.java index 847dc0bef467..9bca84b0004e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPassword.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPassword.java index 1422216800e7..ea365653dccd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPassword.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPassword.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPasswordOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPasswordOrBuilder.java index f6bd899ce9d3..b44a88d4907e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPasswordOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/UserPasswordOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1/src/main/proto/google/cloud/alloydb/v1/resources.proto b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/proto/google/cloud/alloydb/v1/resources.proto index 03f7bc192743..8eebb0445dbb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1/src/main/proto/google/cloud/alloydb/v1/resources.proto +++ b/java-alloydb/proto-google-cloud-alloydb-v1/src/main/proto/google/cloud/alloydb/v1/resources.proto @@ -693,7 +693,7 @@ message Cluster { // system actions like failover or maintenance. bool reconciling = 13 [(google.api.field_behavior) = OUTPUT_ONLY]; - // Input only. Initial user to setup during cluster creation. Required. + // Input only. Initial user to setup during cluster creation. // If used in `RestoreCluster` this is ignored. UserPassword initial_user = 14 [(google.api.field_behavior) = INPUT_ONLY]; diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/pom.xml b/java-alloydb/proto-google-cloud-alloydb-v1alpha/pom.xml index 84eb88ff0655..132a479d1107 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/pom.xml +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-alloydb-v1alpha - 0.70.0-SNAPSHOT + 0.71.0 proto-google-cloud-alloydb-v1alpha Proto library for google-cloud-alloydb com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicy.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicy.java index 50e6e079703e..76e4a78044a8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicy.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicyOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicyOrBuilder.java index 653e6a07b784..a33f1568e16e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicyOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/AutomatedBackupPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Backup.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Backup.java index 04ebbdf34c29..4be03af4ec9c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Backup.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Backup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupName.java index 0d276dc29313..abe9868be49c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupOrBuilder.java index 63e668a28b49..7b7754a2558b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSource.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSource.java index 6c443c6d7ec8..2d0ce3f115a1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSourceOrBuilder.java index d04c54a98378..59c223b1d57d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BackupSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatus.java index 016091db6c49..ebd457416950 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatusOrBuilder.java index 6e227444960f..1aefbdb011eb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstanceStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadata.java index bd98a2467e39..984da91a7772 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadataOrBuilder.java index 60fba14d8802..cd95ef93b591 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequest.java index bedefe3720fa..8c5f13bac6b8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequestOrBuilder.java index 91f373b604ea..7478cbc57f67 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponse.java index 59b8050957c0..ef108bdcacbb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponseOrBuilder.java index cca2564f9099..1d3596936f6a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/BatchCreateInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CSQLServiceProto.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CSQLServiceProto.java index c816c6e7bf0f..64dbde33ccbe 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CSQLServiceProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CSQLServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSource.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSource.java index d01c04c0c6c4..e154079b5d12 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSourceOrBuilder.java index 6c28a43fa8c1..d1982a0cd474 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CloudSQLBackupRunSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Cluster.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Cluster.java index 3216e5fa988f..8104d8b1da22 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Cluster.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Cluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -6318,7 +6318,7 @@ public com.google.cloud.alloydb.v1alpha.Cluster.NetworkConfig getNetworkConfig() * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return The network. */ @java.lang.Override @@ -6351,7 +6351,7 @@ public java.lang.String getNetwork() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return The bytes for network. */ @java.lang.Override @@ -6707,7 +6707,7 @@ public com.google.cloud.alloydb.v1alpha.AutomatedBackupPolicy getAutomatedBackup * .google.cloud.alloydb.v1alpha.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1alpha.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=710 + * google/cloud/alloydb/v1alpha/resources.proto;l=713 * @return Whether the sslConfig field is set. */ @java.lang.Override @@ -6726,7 +6726,7 @@ public boolean hasSslConfig() { * .google.cloud.alloydb.v1alpha.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1alpha.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=710 + * google/cloud/alloydb/v1alpha/resources.proto;l=713 * @return The sslConfig. */ @java.lang.Override @@ -7360,7 +7360,7 @@ public com.google.cloud.alloydb.v1alpha.MaintenanceSchedule getMaintenanceSchedu * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=760 + * google/cloud/alloydb/v1alpha/resources.proto;l=763 * @return Whether the geminiConfig field is set. */ @java.lang.Override @@ -7382,7 +7382,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=760 + * google/cloud/alloydb/v1alpha/resources.proto;l=763 * @return The geminiConfig. */ @java.lang.Override @@ -11670,7 +11670,7 @@ public Builder clearNetworkConfig() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return The network. */ @java.lang.Deprecated @@ -11702,7 +11702,7 @@ public java.lang.String getNetwork() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return The bytes for network. */ @java.lang.Deprecated @@ -11734,7 +11734,7 @@ public com.google.protobuf.ByteString getNetworkBytes() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @param value The network to set. * @return This builder for chaining. */ @@ -11765,7 +11765,7 @@ public Builder setNetwork(java.lang.String value) { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return This builder for chaining. */ @java.lang.Deprecated @@ -11792,7 +11792,7 @@ public Builder clearNetwork() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @param value The bytes for network to set. * @return This builder for chaining. */ @@ -12678,7 +12678,7 @@ public Builder clearAutomatedBackupPolicy() { * .google.cloud.alloydb.v1alpha.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1alpha.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=710 + * google/cloud/alloydb/v1alpha/resources.proto;l=713 * @return Whether the sslConfig field is set. */ @java.lang.Deprecated @@ -12696,7 +12696,7 @@ public boolean hasSslConfig() { * .google.cloud.alloydb.v1alpha.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1alpha.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=710 + * google/cloud/alloydb/v1alpha/resources.proto;l=713 * @return The sslConfig. */ @java.lang.Deprecated @@ -14995,7 +14995,7 @@ public Builder clearMaintenanceSchedule() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=760 + * google/cloud/alloydb/v1alpha/resources.proto;l=763 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -15016,7 +15016,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=760 + * google/cloud/alloydb/v1alpha/resources.proto;l=763 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterName.java index b11add50a2ef..fda14937ba51 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterOrBuilder.java index ba2200202fe3..b06734b3ebb9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -570,7 +570,7 @@ java.lang.String getLabelsOrDefault( * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return The network. */ @java.lang.Deprecated @@ -592,7 +592,7 @@ java.lang.String getLabelsOrDefault( * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.network is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=675 + * google/cloud/alloydb/v1alpha/resources.proto;l=678 * @return The bytes for network. */ @java.lang.Deprecated @@ -826,7 +826,7 @@ java.lang.String getAnnotationsOrDefault( * .google.cloud.alloydb.v1alpha.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1alpha.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=710 + * google/cloud/alloydb/v1alpha/resources.proto;l=713 * @return Whether the sslConfig field is set. */ @java.lang.Deprecated @@ -842,7 +842,7 @@ java.lang.String getAnnotationsOrDefault( * .google.cloud.alloydb.v1alpha.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1alpha.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=710 + * google/cloud/alloydb/v1alpha/resources.proto;l=713 * @return The sslConfig. */ @java.lang.Deprecated @@ -1303,7 +1303,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=760 + * google/cloud/alloydb/v1alpha/resources.proto;l=763 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -1322,7 +1322,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1alpha.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=760 + * google/cloud/alloydb/v1alpha/resources.proto;l=763 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterView.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterView.java index 96b911264016..7c50f1240c4c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterView.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ClusterView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfo.java index 53dc7b73df1e..65ca8a70b8d6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -264,7 +264,7 @@ public com.google.protobuf.ByteString getPublicIpAddressBytes() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return A list containing the pemCertificateChain. */ @java.lang.Deprecated @@ -285,7 +285,7 @@ public com.google.protobuf.ProtocolStringList getPemCertificateChainList() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return The count of pemCertificateChain. */ @java.lang.Deprecated @@ -306,7 +306,7 @@ public int getPemCertificateChainCount() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index of the element to return. * @return The pemCertificateChain at the given index. */ @@ -328,7 +328,7 @@ public java.lang.String getPemCertificateChain(int index) { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index of the value to return. * @return The bytes of the pemCertificateChain at the given index. */ @@ -1317,7 +1317,7 @@ private void ensurePemCertificateChainIsMutable() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return A list containing the pemCertificateChain. */ @java.lang.Deprecated @@ -1339,7 +1339,7 @@ public com.google.protobuf.ProtocolStringList getPemCertificateChainList() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return The count of pemCertificateChain. */ @java.lang.Deprecated @@ -1360,7 +1360,7 @@ public int getPemCertificateChainCount() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index of the element to return. * @return The pemCertificateChain at the given index. */ @@ -1382,7 +1382,7 @@ public java.lang.String getPemCertificateChain(int index) { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index of the value to return. * @return The bytes of the pemCertificateChain at the given index. */ @@ -1404,7 +1404,7 @@ public com.google.protobuf.ByteString getPemCertificateChainBytes(int index) { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index to set the value at. * @param value The pemCertificateChain to set. * @return This builder for chaining. @@ -1434,7 +1434,7 @@ public Builder setPemCertificateChain(int index, java.lang.String value) { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param value The pemCertificateChain to add. * @return This builder for chaining. */ @@ -1463,7 +1463,7 @@ public Builder addPemCertificateChain(java.lang.String value) { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param values The pemCertificateChain to add. * @return This builder for chaining. */ @@ -1489,7 +1489,7 @@ public Builder addAllPemCertificateChain(java.lang.Iterable va * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1514,7 +1514,7 @@ public Builder clearPemCertificateChain() { * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param value The bytes of the pemCertificateChain to add. * @return This builder for chaining. */ diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfoOrBuilder.java index e7a9826e0062..3f111a8c1ed7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ConnectionInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -131,7 +131,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return A list containing the pemCertificateChain. */ @java.lang.Deprecated @@ -150,7 +150,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @return The count of pemCertificateChain. */ @java.lang.Deprecated @@ -169,7 +169,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index of the element to return. * @return The pemCertificateChain at the given index. */ @@ -189,7 +189,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1alpha.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1alpha/resources.proto;l=1374 + * See google/cloud/alloydb/v1alpha/resources.proto;l=1377 * @param index The index of the value to return. * @return The bytes of the pemCertificateChain at the given index. */ diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfig.java index 23c7eff53cde..947cc463da1d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfigOrBuilder.java index 228b0bb5d748..be05d4a38b1d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfo.java index 3cb924f27257..d35e09303a01 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfoOrBuilder.java index 708a8ccc95d6..2e2a50757b8f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSource.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSource.java index c63d18406de1..ec5b0dc7e36b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSourceOrBuilder.java index 838221aaef17..2eea12d75557 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ContinuousBackupSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequest.java index 4ea9992fd85e..8822243287c1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequestOrBuilder.java index 2ac63ede9577..3d6b307fa23f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequest.java index cd1924fac976..5c48a8244f1a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequestOrBuilder.java index 3f33f663c922..9f52ea667675 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequest.java index d0d242358221..9befc93e7e54 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequestOrBuilder.java index 46855335e468..b79fb8e464cc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateDatabaseRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequest.java index 2989311e6162..af3cbfce2449 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestOrBuilder.java index 57eacefb56cc..11d379dce903 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequests.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequests.java index cd7783df2f01..e686767baa19 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequests.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestsOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestsOrBuilder.java index 31a02d1fa6ab..35254cff1863 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestsOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateInstanceRequestsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequest.java index 89b9dbc77819..9c343912f9d0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequestOrBuilder.java index 49547e20c20a..de5c31d92816 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequest.java index 22b8262093a3..973b81842ec7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequestOrBuilder.java index 655308a311eb..31a4cf37c5b3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateSecondaryInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequest.java index 034efc321574..b3ec0a477413 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequestOrBuilder.java index 80179fb561f3..45b5dd3a01bd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CreateUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CsqlResourcesProto.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CsqlResourcesProto.java index d322a8507f02..addaeafa4397 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CsqlResourcesProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/CsqlResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DataModelProto.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DataModelProto.java index 78507fc2b553..094405a49858 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DataModelProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DataModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Database.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Database.java index ba9e7a42fb01..69881c4068c9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Database.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Database.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -321,7 +321,7 @@ public com.google.protobuf.ByteString getCharacterTypeBytes() { * bool is_template = 5 [deprecated = true, (.google.api.field_behavior) = OPTIONAL]; * * @deprecated google.cloud.alloydb.v1alpha.Database.is_template is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1767 + * google/cloud/alloydb/v1alpha/resources.proto;l=1770 * @return The isTemplate. */ @java.lang.Override @@ -1437,7 +1437,7 @@ public Builder setCharacterTypeBytes(com.google.protobuf.ByteString value) { * * * @deprecated google.cloud.alloydb.v1alpha.Database.is_template is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1767 + * google/cloud/alloydb/v1alpha/resources.proto;l=1770 * @return The isTemplate. */ @java.lang.Override @@ -1458,7 +1458,7 @@ public boolean getIsTemplate() { * * * @deprecated google.cloud.alloydb.v1alpha.Database.is_template is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1767 + * google/cloud/alloydb/v1alpha/resources.proto;l=1770 * @param value The isTemplate to set. * @return This builder for chaining. */ @@ -1483,7 +1483,7 @@ public Builder setIsTemplate(boolean value) { * * * @deprecated google.cloud.alloydb.v1alpha.Database.is_template is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1767 + * google/cloud/alloydb/v1alpha/resources.proto;l=1770 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseName.java index 933f22d1cb0e..bd4aa6150580 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseOrBuilder.java index 74e8622726e7..705ebf1be583 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -165,7 +165,7 @@ public interface DatabaseOrBuilder * bool is_template = 5 [deprecated = true, (.google.api.field_behavior) = OPTIONAL]; * * @deprecated google.cloud.alloydb.v1alpha.Database.is_template is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1767 + * google/cloud/alloydb/v1alpha/resources.proto;l=1770 * @return The isTemplate. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseVersion.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseVersion.java index b4b711378308..2d94207680c4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseVersion.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DatabaseVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,6 +90,16 @@ public enum DatabaseVersion implements com.google.protobuf.ProtocolMessageEnum { * POSTGRES_17 = 5; */ POSTGRES_17(5), + /** + * + * + *
+   * The database version is Postgres 18.
+   * 
+ * + * POSTGRES_18 = 6; + */ + POSTGRES_18(6), UNRECOGNIZED(-1), ; @@ -159,6 +169,17 @@ public enum DatabaseVersion implements com.google.protobuf.ProtocolMessageEnum { */ public static final int POSTGRES_17_VALUE = 5; + /** + * + * + *
+   * The database version is Postgres 18.
+   * 
+ * + * POSTGRES_18 = 6; + */ + public static final int POSTGRES_18_VALUE = 6; + public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( @@ -195,6 +216,8 @@ public static DatabaseVersion forNumber(int value) { return POSTGRES_16; case 5: return POSTGRES_17; + case 6: + return POSTGRES_18; default: return null; } diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequest.java index 2a35685a1356..c872a764495b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequestOrBuilder.java index 77054c5fec8b..bad9f8281445 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequest.java index 17877f54d131..177c82ca5d73 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequestOrBuilder.java index 267bae9588e6..9b0ff0266615 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequest.java index b1bf0a874d62..c48aff937fd7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequestOrBuilder.java index 8d6f0279ca28..c5e2d47e8285 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequest.java index 77e97d8dadbf..30bcb502f16a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequestOrBuilder.java index 7c33843aa765..f92c4ae4907b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/DeleteUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfig.java index 3e71dd8edff6..0cb45a587ab3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfigOrBuilder.java index 2d0b4ced08e4..62f58d1101d5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfo.java index 83847f75ae34..f7a6b128350c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfoOrBuilder.java index 2be07a9b47c0..a4aa7886d85d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/EncryptionInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadata.java index 20e5021cb71f..32d6bbae40ed 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadataOrBuilder.java index c381882b27e9..763af4d36e09 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequest.java index 62a42e8693fc..da9f2b9a7db6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequestOrBuilder.java index c331304fdd1e..6ceebf51995e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponse.java index b714f0a8d883..dd2815691e91 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponseOrBuilder.java index 7c6d99a17f4b..55a07c9c616e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExecuteSqlResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequest.java index 55d3dd6e9e66..a61b7290e69d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequestOrBuilder.java index 1b9787934548..6018f2184901 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponse.java index 8ae77a95f3da..ae4f040f8431 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponseOrBuilder.java index 620caa4702aa..0e33ef5fa855 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ExportClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequest.java index bead7a99e562..cdbb5ca69460 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequestOrBuilder.java index 115d0bf46f0f..61d1629095b7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/FailoverInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAEntitlementType.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAEntitlementType.java index a40a424c3b2a..3779fc8d4ce7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAEntitlementType.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAEntitlementType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfig.java index 9d54cb3fb399..98ebc546ff86 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfigOrBuilder.java index bd7d80163a0f..207cae717419 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GCAInstanceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestination.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestination.java index ee02a1fcf36c..47f0c80ceb34 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestination.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestinationOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestinationOrBuilder.java index 7cb1fa2821b8..cfc2f06f95af 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestinationOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfig.java index fcc819b19937..c86598640af1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfigOrBuilder.java index 18dfbe6b6ff3..32b4705ab9f6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiClusterConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfig.java index 1a69083ea72a..5bcf954c0e76 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfigOrBuilder.java index b1ab7b14fb2a..f04dfe9f098c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiInstanceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiProto.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiProto.java index db9529b57c56..c7195a82fa7b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GeminiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequest.java index addd9cea77f3..d29b28be05d2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequestOrBuilder.java index e983b7369b7e..02b6055fd7be 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponse.java index f59181f5d01d..8ffd0056385f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponseOrBuilder.java index b00d53a0290f..84802d5b7938 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GenerateClientCertificateResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequest.java index fff79d837b47..6d63251d967a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequestOrBuilder.java index c12ddb380dc4..57cc8732fe4a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequest.java index ae070c0b58d2..285ab708b97f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequestOrBuilder.java index 2bf2db5b3d5a..85a615841dc2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequest.java index 3bf728cd143c..f3aa805b52f8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequestOrBuilder.java index 3e1428042a51..a167f2a23938 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetConnectionInfoRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequest.java index 99a64ecf07a5..c83667a42afb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequestOrBuilder.java index be998a381944..15e67fc04a1d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequest.java index 6f2308adbfeb..fb25096e0bc7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequestOrBuilder.java index 6b9dbe43cbdd..7f83475cd72a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/GetUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequest.java index 2a15fe40ec42..0aef5af01996 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequestOrBuilder.java index 8e7dea8951a0..b4fccf761d8c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponse.java index 392d7b79a676..0bd89f4855b3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponseOrBuilder.java index 47247f3599ec..d408d72df572 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ImportClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequest.java index cce2da3aa238..5180c012c5be 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequestOrBuilder.java index 13d504465c53..a26cf20c4773 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InjectFaultRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Instance.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Instance.java index c95bc2dca704..333fbb8441b5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Instance.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/Instance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19301,7 +19301,7 @@ public com.google.cloud.alloydb.v1alpha.Instance.InstanceNetworkConfig getNetwor * * * @deprecated google.cloud.alloydb.v1alpha.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1317 + * google/cloud/alloydb/v1alpha/resources.proto;l=1320 * @return Whether the geminiConfig field is set. */ @java.lang.Override @@ -19323,7 +19323,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1alpha.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1317 + * google/cloud/alloydb/v1alpha/resources.proto;l=1320 * @return The geminiConfig. */ @java.lang.Override @@ -26138,7 +26138,7 @@ public Builder clearNetworkConfig() { * * * @deprecated google.cloud.alloydb.v1alpha.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1317 + * google/cloud/alloydb/v1alpha/resources.proto;l=1320 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -26159,7 +26159,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1alpha.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1317 + * google/cloud/alloydb/v1alpha/resources.proto;l=1320 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceName.java index cbad5d4773f3..7eb317fcbc15 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceOrBuilder.java index f57d9d87c563..e9702a4f44fd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1256,7 +1256,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1alpha.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1317 + * google/cloud/alloydb/v1alpha/resources.proto;l=1320 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -1275,7 +1275,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1alpha.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1alpha/resources.proto;l=1317 + * google/cloud/alloydb/v1alpha/resources.proto;l=1320 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceView.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceView.java index 0d1eae8f280b..4249c617ad33 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceView.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/InstanceView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequest.java index 63702e7d76f1..d563feee0236 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequestOrBuilder.java index c2087e3ce54b..cf411c75b756 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponse.java index ad6b9966e12b..194e4fcbfd5a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponseOrBuilder.java index f1051ccd2b37..d5bed274f92a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListBackupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequest.java index 2d0f5e7a9213..c2a69c3f67bc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequestOrBuilder.java index 57f8a6864e4b..ce00e4475d14 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponse.java index a1ae9e4696e5..905b2908cc55 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponseOrBuilder.java index 4341281cb69a..51d70ddb780b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListClustersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequest.java index f264ffb2c404..fbc1d5a97a6e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequestOrBuilder.java index a2a3a3173d6f..2590b011e3f4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponse.java index 42853ef36e21..1ad7afd21525 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponseOrBuilder.java index efa24d5df434..0229ad0d990a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListDatabasesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequest.java index abac92a6abfb..61d0c4a08519 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequestOrBuilder.java index 2a3e95242673..54c698516af4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponse.java index 6a7df79d463f..55a8bce2abe0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponseOrBuilder.java index 7dac61302967..1f469b7c36ba 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequest.java index aa261b7b3057..626bd2d139c2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequestOrBuilder.java index d49ee3a6afce..1dd9e2c38f03 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponse.java index 4030874c43df..c89758cf8cff 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponseOrBuilder.java index d898b9c3b237..cfff3a6424e2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListSupportedDatabaseFlagsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequest.java index 84d3004e9fa3..7bfa9142a1a6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequestOrBuilder.java index d2f2fbdcc030..125aef6d646d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponse.java index 99f6f0d16ebc..ef6d81b04eed 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponseOrBuilder.java index 1b3f63f7a2fb..9579911b1699 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ListUsersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/LocationName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/LocationName.java index f2bbc72dd8ed..4526164bab4a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/LocationName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceSchedule.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceSchedule.java index 68a71b5387f7..ddc02b918b5b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceSchedule.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceScheduleOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceScheduleOrBuilder.java index c58663b358bc..26d11a2adbc2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceScheduleOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceScheduleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicy.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicy.java index 92bf350c9a80..a673e1349cd8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicy.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicyOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicyOrBuilder.java index 83cecef72dbd..d86686a2a044 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicyOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MaintenanceUpdatePolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSource.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSource.java index edffc19b89ba..e36cdc0a4957 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSourceOrBuilder.java index e77260e11848..f567a76e80f4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/MigrationSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadata.java index 9a1de0f513e1..e1299a45366a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadataOrBuilder.java index 09b8db645c47..87b72daa1a00 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequest.java index 9374b55774b6..4dafab4b5ebb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequestOrBuilder.java index f48a4e63e4dc..04394e3fef27 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatus.java index 4984edd96964..e073929e2434 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatusOrBuilder.java index a1358c632d33..e82addde0da8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/PromoteClusterStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ResourcesProto.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ResourcesProto.java index 00e5793eec40..33104ea8848a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ResourcesProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -812,31 +812,33 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\013ClusterView\022\034\n" + "\030CLUSTER_VIEW_UNSPECIFIED\020\000\022\026\n" + "\022CLUSTER_VIEW_BASIC\020\001\022\"\n" - + "\036CLUSTER_VIEW_CONTINUOUS_BACKUP\020\002*\214\001\n" + + "\036CLUSTER_VIEW_CONTINUOUS_BACKUP\020\002*\235\001\n" + "\017DatabaseVersion\022 \n" + "\034DATABASE_VERSION_UNSPECIFIED\020\000\022\023\n" + "\013POSTGRES_13\020\001\032\002\010\001\022\017\n" + "\013POSTGRES_14\020\002\022\017\n" + "\013POSTGRES_15\020\003\022\017\n" + "\013POSTGRES_16\020\004\022\017\n" - + "\013POSTGRES_17\020\005*N\n" + + "\013POSTGRES_17\020\005\022\017\n" + + "\013POSTGRES_18\020\006*N\n" + "\020SubscriptionType\022!\n" + "\035SUBSCRIPTION_TYPE_UNSPECIFIED\020\000\022\014\n" + "\010STANDARD\020\001\022\t\n" + "\005TRIAL\020\002B\300\005\n" - + " com.google.cloud.alloydb.v1alphaB\016ResourcesProtoP\001Z:cloud.google" - + ".com/go/alloydb/apiv1alpha/alloydbpb;all" - + "oydbpb\252\002\034Google.Cloud.AlloyDb.V1Alpha\312\002\034" - + "Google\\Cloud\\AlloyDb\\V1alpha\352\002\037Google::Cloud::AlloyDB::V1alpha\352A\246\001\n" - + "(cloudkms.googleapis.com/CryptoKeyVersion\022zprojects/{" - + "project}/locations/{location}/keyRings/{" - + "key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}\352AN\n" - + "\036com" - + "pute.googleapis.com/Network\022,projects/{project}/global/networks/{network}\352Ax\n" - + "!cloudkms.googleapis.com/CryptoKey\022Sproject" - + "s/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}\352Aw\n" - + "(compute.googleapis.com/ServiceAttachment\022Kprojects/{project}/regions/{region}/s" - + "erviceAttachments/{service_attachment}b\006proto3" + + " com.google.cloud.alloydb.v1alphaB\016ResourcesProt" + + "oP\001Z:cloud.google.com/go/alloydb/apiv1al" + + "pha/alloydbpb;alloydbpb\252\002\034Google.Cloud.A" + + "lloyDb.V1Alpha\312\002\034Google\\Cloud\\AlloyDb\\V1" + + "alpha\352\002\037Google::Cloud::AlloyDB::V1alpha\352A\246\001\n" + + "(cloudkms.googleapis.com/CryptoKeyVersion\022zprojects/{project}/locations/{loc" + + "ation}/keyRings/{key_ring}/cryptoKeys/{c" + + "rypto_key}/cryptoKeyVersions/{crypto_key_version}\352AN\n" + + "\036compute.googleapis.com/Net" + + "work\022,projects/{project}/global/networks/{network}\352Ax\n" + + "!cloudkms.googleapis.com/CryptoKey\022Sprojects/{project}/locations/{" + + "location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}\352Aw\n" + + "(compute.googleapis.com/ServiceAttachment\022Kprojects/{project}/r" + + "egions/{region}/serviceAttachments/{service_attachment}b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( diff --git a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequest.java index 66d4dbe76b3c..a22d5cd1ed83 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequestOrBuilder.java index 2ce5d4d40720..c4ea81f2ac38 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestartInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequest.java index 5f6e28ceadc9..569c66b631b2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequestOrBuilder.java index f272646dd5c6..7ca7c98a4806 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequest.java index 36e9164f2946..311231324387 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequestOrBuilder.java index 906300352dfd..5d7728062110 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/RestoreFromCloudSQLRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ServiceProto.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ServiceProto.java index e2bf9ba6038e..c97227bb275b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ServiceProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResult.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResult.java index c3a9379e66e5..8d20bbb9b132 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResult.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumn.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumn.java index 99d0b52b5192..38cab91fe68e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumn.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumn.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumnOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumnOrBuilder.java index abafc3084c69..33a0ae60824c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumnOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultColumnOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultOrBuilder.java index 8f9a71c6fb46..26bdb1d070fb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRow.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRow.java index 932cf5a77ba0..976c7563a654 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRow.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRowOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRowOrBuilder.java index 84c3bf32a4f7..5dcd3cb8f240 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRowOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValue.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValue.java index 0106e339aae1..71363685b132 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValue.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValueOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValueOrBuilder.java index a527cfa39256..3c76b0ef64df 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValueOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SqlResultValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfig.java index 317a03968565..5c66c6f7735e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfigOrBuilder.java index 12ab10a28fa0..2417a7484b49 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SslConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SubscriptionType.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SubscriptionType.java index 870cc53b54dd..5db25cd066b1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SubscriptionType.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SubscriptionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlag.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlag.java index e437b1289f44..7f218895e7f4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlag.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagName.java index 34d3a348d519..9b0cc431da58 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagOrBuilder.java index 8591136d2108..b243322b6d1c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SupportedDatabaseFlagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequest.java index fc94b91045c8..7cca4683bc97 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequestOrBuilder.java index c7e428a0bb54..86734f1fe1e5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/SwitchoverClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequest.java index da13ce5fb59a..c5138b461a65 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequestOrBuilder.java index b33d2c2677b1..19b8165f8efb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequest.java index ca0fdf899d67..794ecccb4c26 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequestOrBuilder.java index 3be6f3daa8f9..2cf2788c995b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequest.java index 174f80d8e7d8..00c58e9a1e27 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequestOrBuilder.java index 2f6597bac9b8..08d96ad5ee09 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequest.java index 1341f5581a9b..668b57c30d3a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequestOrBuilder.java index c085d08e4c38..d8afddf808fa 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpdateUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequest.java index cfac7fb46bd7..c72cfb08e8dc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequestOrBuilder.java index 156dcf18c301..98390fc477bc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponse.java index d948c186c002..5f321bc84492 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponseOrBuilder.java index ba3a0a2cb641..1e7a5a1a27cc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatus.java index d729ba9448f3..c8e94f010881 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatusOrBuilder.java index 00ed6ff244bb..9c291756315e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UpgradeClusterStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/User.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/User.java index 8afa212245ad..059c0f1fbc25 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/User.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/User.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserName.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserName.java index d3a69720d187..27333221f232 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserOrBuilder.java index 86fca4daf6d7..943e855be1d6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPassword.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPassword.java index 4096eb5f76e4..36736cf3a07c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPassword.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPassword.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPasswordOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPasswordOrBuilder.java index 0f1de4109e5a..49376a984088 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPasswordOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/java/com/google/cloud/alloydb/v1alpha/UserPasswordOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/proto/google/cloud/alloydb/v1alpha/resources.proto b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/proto/google/cloud/alloydb/v1alpha/resources.proto index 8fb7df71511b..13f91f2d7731 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/proto/google/cloud/alloydb/v1alpha/resources.proto +++ b/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/proto/google/cloud/alloydb/v1alpha/resources.proto @@ -104,6 +104,9 @@ enum DatabaseVersion { // The database version is Postgres 17. POSTGRES_17 = 5; + + // The database version is Postgres 18. + POSTGRES_18 = 6; } // Subscription_type added to distinguish between Standard and Trial diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/pom.xml b/java-alloydb/proto-google-cloud-alloydb-v1beta/pom.xml index d5e1dd26eca3..76c095847503 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/pom.xml +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-alloydb-v1beta - 0.70.0-SNAPSHOT + 0.71.0 proto-google-cloud-alloydb-v1beta Proto library for google-cloud-alloydb com.google.cloud google-cloud-alloydb-parent - 0.70.0-SNAPSHOT + 0.71.0 diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicy.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicy.java index a35c38f97824..d20b48eb53c5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicy.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicyOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicyOrBuilder.java index a4e99a492d29..1b5f7a823dc4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicyOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/AutomatedBackupPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Backup.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Backup.java index 1b233912b144..e5616cb51fcd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Backup.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Backup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupName.java index a3147f72b9ed..460db16faf51 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupOrBuilder.java index 6fb1ecb35ec5..54382a9c6b9c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSource.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSource.java index 62785ec5df96..52b7911a25e9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSourceOrBuilder.java index 73a988dfcd3e..60382e33ef05 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BackupSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatus.java index e4011902bd3d..a7afb74d0198 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatusOrBuilder.java index 212fe787ad58..ecf5af581820 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstanceStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadata.java index e4f4cfb7d16b..34343062bba8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadataOrBuilder.java index c45e9546d05c..cd3789bfad4f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequest.java index 69688de1c016..dbdff83f7da2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequestOrBuilder.java index 15c57c9a2dc6..f61699c1a365 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponse.java index f2571dad3c4c..6c25545b0767 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponseOrBuilder.java index c9b33f3521c6..d69403f7fdcd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/BatchCreateInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CSQLServiceProto.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CSQLServiceProto.java index acc0e660da95..baf6ff9e873f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CSQLServiceProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CSQLServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSource.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSource.java index 634c274f7197..a8dabde1439b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSourceOrBuilder.java index c1dc35af1d97..41395426529c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CloudSQLBackupRunSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Cluster.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Cluster.java index 117940ce2ce4..f92e4bb24f48 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Cluster.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Cluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -6318,7 +6318,7 @@ public com.google.cloud.alloydb.v1beta.Cluster.NetworkConfig getNetworkConfig() * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return The network. */ @java.lang.Override @@ -6351,7 +6351,7 @@ public java.lang.String getNetwork() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return The bytes for network. */ @java.lang.Override @@ -6707,7 +6707,7 @@ public com.google.cloud.alloydb.v1beta.AutomatedBackupPolicy getAutomatedBackupP * .google.cloud.alloydb.v1beta.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1beta.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=710 + * google/cloud/alloydb/v1beta/resources.proto;l=713 * @return Whether the sslConfig field is set. */ @java.lang.Override @@ -6726,7 +6726,7 @@ public boolean hasSslConfig() { * .google.cloud.alloydb.v1beta.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1beta.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=710 + * google/cloud/alloydb/v1beta/resources.proto;l=713 * @return The sslConfig. */ @java.lang.Override @@ -7341,7 +7341,7 @@ public com.google.cloud.alloydb.v1beta.MaintenanceSchedule getMaintenanceSchedul * * * @deprecated google.cloud.alloydb.v1beta.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=757 + * google/cloud/alloydb/v1beta/resources.proto;l=760 * @return Whether the geminiConfig field is set. */ @java.lang.Override @@ -7363,7 +7363,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=757 + * google/cloud/alloydb/v1beta/resources.proto;l=760 * @return The geminiConfig. */ @java.lang.Override @@ -11625,7 +11625,7 @@ public com.google.cloud.alloydb.v1beta.Cluster.NetworkConfig.Builder getNetworkC * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return The network. */ @java.lang.Deprecated @@ -11657,7 +11657,7 @@ public java.lang.String getNetwork() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return The bytes for network. */ @java.lang.Deprecated @@ -11689,7 +11689,7 @@ public com.google.protobuf.ByteString getNetworkBytes() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @param value The network to set. * @return This builder for chaining. */ @@ -11720,7 +11720,7 @@ public Builder setNetwork(java.lang.String value) { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return This builder for chaining. */ @java.lang.Deprecated @@ -11747,7 +11747,7 @@ public Builder clearNetwork() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @param value The bytes for network to set. * @return This builder for chaining. */ @@ -12624,7 +12624,7 @@ public Builder clearAutomatedBackupPolicy() { * .google.cloud.alloydb.v1beta.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1beta.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=710 + * google/cloud/alloydb/v1beta/resources.proto;l=713 * @return Whether the sslConfig field is set. */ @java.lang.Deprecated @@ -12642,7 +12642,7 @@ public boolean hasSslConfig() { * .google.cloud.alloydb.v1beta.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1beta.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=710 + * google/cloud/alloydb/v1beta/resources.proto;l=713 * @return The sslConfig. */ @java.lang.Deprecated @@ -14882,7 +14882,7 @@ public Builder clearMaintenanceSchedule() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=757 + * google/cloud/alloydb/v1beta/resources.proto;l=760 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -14903,7 +14903,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1beta.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=757 + * google/cloud/alloydb/v1beta/resources.proto;l=760 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterName.java index c12f04372fd7..734679562a81 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterOrBuilder.java index fb1eb9d1ab49..bbbc55828e6b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -570,7 +570,7 @@ java.lang.String getLabelsOrDefault( * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return The network. */ @java.lang.Deprecated @@ -592,7 +592,7 @@ java.lang.String getLabelsOrDefault( * * * @deprecated google.cloud.alloydb.v1beta.Cluster.network is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=675 + * google/cloud/alloydb/v1beta/resources.proto;l=678 * @return The bytes for network. */ @java.lang.Deprecated @@ -826,7 +826,7 @@ java.lang.String getAnnotationsOrDefault( * .google.cloud.alloydb.v1beta.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1beta.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=710 + * google/cloud/alloydb/v1beta/resources.proto;l=713 * @return Whether the sslConfig field is set. */ @java.lang.Deprecated @@ -842,7 +842,7 @@ java.lang.String getAnnotationsOrDefault( * .google.cloud.alloydb.v1beta.SslConfig ssl_config = 18 [deprecated = true]; * * @deprecated google.cloud.alloydb.v1beta.Cluster.ssl_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=710 + * google/cloud/alloydb/v1beta/resources.proto;l=713 * @return The sslConfig. */ @java.lang.Deprecated @@ -1290,7 +1290,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1beta.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=757 + * google/cloud/alloydb/v1beta/resources.proto;l=760 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -1309,7 +1309,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1beta.Cluster.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=757 + * google/cloud/alloydb/v1beta/resources.proto;l=760 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterView.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterView.java index 5be5f08a416e..b1516e06fabe 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterView.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ClusterView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfo.java index d1b514499ec6..980f8f255039 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -264,7 +264,7 @@ public com.google.protobuf.ByteString getPublicIpAddressBytes() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return A list containing the pemCertificateChain. */ @java.lang.Deprecated @@ -285,7 +285,7 @@ public com.google.protobuf.ProtocolStringList getPemCertificateChainList() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return The count of pemCertificateChain. */ @java.lang.Deprecated @@ -306,7 +306,7 @@ public int getPemCertificateChainCount() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index of the element to return. * @return The pemCertificateChain at the given index. */ @@ -328,7 +328,7 @@ public java.lang.String getPemCertificateChain(int index) { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index of the value to return. * @return The bytes of the pemCertificateChain at the given index. */ @@ -1316,7 +1316,7 @@ private void ensurePemCertificateChainIsMutable() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return A list containing the pemCertificateChain. */ @java.lang.Deprecated @@ -1338,7 +1338,7 @@ public com.google.protobuf.ProtocolStringList getPemCertificateChainList() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return The count of pemCertificateChain. */ @java.lang.Deprecated @@ -1359,7 +1359,7 @@ public int getPemCertificateChainCount() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index of the element to return. * @return The pemCertificateChain at the given index. */ @@ -1381,7 +1381,7 @@ public java.lang.String getPemCertificateChain(int index) { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index of the value to return. * @return The bytes of the pemCertificateChain at the given index. */ @@ -1403,7 +1403,7 @@ public com.google.protobuf.ByteString getPemCertificateChainBytes(int index) { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index to set the value at. * @param value The pemCertificateChain to set. * @return This builder for chaining. @@ -1433,7 +1433,7 @@ public Builder setPemCertificateChain(int index, java.lang.String value) { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param value The pemCertificateChain to add. * @return This builder for chaining. */ @@ -1462,7 +1462,7 @@ public Builder addPemCertificateChain(java.lang.String value) { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param values The pemCertificateChain to add. * @return This builder for chaining. */ @@ -1488,7 +1488,7 @@ public Builder addAllPemCertificateChain(java.lang.Iterable va * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1513,7 +1513,7 @@ public Builder clearPemCertificateChain() { * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. - * See google/cloud/alloydb/v1beta/resources.proto;l=1368 + * See google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param value The bytes of the pemCertificateChain to add. * @return This builder for chaining. */ diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfoOrBuilder.java index ebad5060d5a3..a236b92d318c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ConnectionInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -131,7 +131,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return A list containing the pemCertificateChain. */ @java.lang.Deprecated @@ -150,7 +150,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @return The count of pemCertificateChain. */ @java.lang.Deprecated @@ -169,7 +169,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index of the element to return. * @return The pemCertificateChain at the given index. */ @@ -189,7 +189,7 @@ public interface ConnectionInfoOrBuilder * * * @deprecated google.cloud.alloydb.v1beta.ConnectionInfo.pem_certificate_chain is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1368 + * google/cloud/alloydb/v1beta/resources.proto;l=1371 * @param index The index of the value to return. * @return The bytes of the pemCertificateChain at the given index. */ diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfig.java index b7c64a42fa90..7e862be33dbf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfigOrBuilder.java index d5418e4ae8d4..1176e4dc216c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfo.java index d0eb74fa180a..176c85592f85 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfoOrBuilder.java index 9a511cba9087..5cbfdf3df5cc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSource.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSource.java index 1ab91775c14b..64755aa8254d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSourceOrBuilder.java index 81d048b37120..e6982734b65d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ContinuousBackupSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequest.java index 03b181ac783e..54826604d91d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequestOrBuilder.java index 6805053e3da2..1c50c5475a1d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequest.java index c459c8fbbb07..238d71c64db8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequestOrBuilder.java index aaa046720225..d8c2a63ef330 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequest.java index 021623dd6842..b01c84b0b1f1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequestOrBuilder.java index 33bf2fccfed0..233a5cac2759 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateDatabaseRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequest.java index 0b87550994e6..0064004e4b5b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestOrBuilder.java index 8c967ffffe0d..5301bc19f6e0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequests.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequests.java index 80937f629f80..d8ac69417e3e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequests.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestsOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestsOrBuilder.java index 85b53d8f816f..7e612fa9c793 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestsOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateInstanceRequestsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequest.java index 2aebc0a21f2b..f2704f06d695 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequestOrBuilder.java index d74175aec898..b185cb8f4230 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequest.java index 578ae98bc51f..1c2a7cc562d7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequestOrBuilder.java index 71513e2ad616..cd1fc547aa86 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateSecondaryInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequest.java index a4b5aa5d8aed..ba45681f06e4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequestOrBuilder.java index 523329796b4f..dcdf213d82f6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CreateUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CsqlResourcesProto.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CsqlResourcesProto.java index 5bb5f2fee5a2..ceadcd9da449 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CsqlResourcesProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/CsqlResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DataModelProto.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DataModelProto.java index 355ce07b2454..3e5c46778308 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DataModelProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DataModelProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Database.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Database.java index a5641e23b6a4..caaa1fdb6c05 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Database.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Database.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -321,7 +321,7 @@ public com.google.protobuf.ByteString getCharacterTypeBytes() { * bool is_template = 5 [deprecated = true, (.google.api.field_behavior) = OPTIONAL]; * * @deprecated google.cloud.alloydb.v1beta.Database.is_template is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1758 + * google/cloud/alloydb/v1beta/resources.proto;l=1761 * @return The isTemplate. */ @java.lang.Override @@ -1436,7 +1436,7 @@ public Builder setCharacterTypeBytes(com.google.protobuf.ByteString value) { * * * @deprecated google.cloud.alloydb.v1beta.Database.is_template is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1758 + * google/cloud/alloydb/v1beta/resources.proto;l=1761 * @return The isTemplate. */ @java.lang.Override @@ -1457,7 +1457,7 @@ public boolean getIsTemplate() { * * * @deprecated google.cloud.alloydb.v1beta.Database.is_template is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1758 + * google/cloud/alloydb/v1beta/resources.proto;l=1761 * @param value The isTemplate to set. * @return This builder for chaining. */ @@ -1482,7 +1482,7 @@ public Builder setIsTemplate(boolean value) { * * * @deprecated google.cloud.alloydb.v1beta.Database.is_template is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1758 + * google/cloud/alloydb/v1beta/resources.proto;l=1761 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseName.java index 76c053c50469..575ddfd7b504 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseOrBuilder.java index 20fe2274f57f..d4d7a99dfe32 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -165,7 +165,7 @@ public interface DatabaseOrBuilder * bool is_template = 5 [deprecated = true, (.google.api.field_behavior) = OPTIONAL]; * * @deprecated google.cloud.alloydb.v1beta.Database.is_template is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1758 + * google/cloud/alloydb/v1beta/resources.proto;l=1761 * @return The isTemplate. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseVersion.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseVersion.java index 49771a12ba4f..097bc9188f91 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseVersion.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DatabaseVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,6 +90,16 @@ public enum DatabaseVersion implements com.google.protobuf.ProtocolMessageEnum { * POSTGRES_17 = 5; */ POSTGRES_17(5), + /** + * + * + *
+   * The database version is Postgres 18.
+   * 
+ * + * POSTGRES_18 = 6; + */ + POSTGRES_18(6), UNRECOGNIZED(-1), ; @@ -159,6 +169,17 @@ public enum DatabaseVersion implements com.google.protobuf.ProtocolMessageEnum { */ public static final int POSTGRES_17_VALUE = 5; + /** + * + * + *
+   * The database version is Postgres 18.
+   * 
+ * + * POSTGRES_18 = 6; + */ + public static final int POSTGRES_18_VALUE = 6; + public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( @@ -195,6 +216,8 @@ public static DatabaseVersion forNumber(int value) { return POSTGRES_16; case 5: return POSTGRES_17; + case 6: + return POSTGRES_18; default: return null; } diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequest.java index 8d1d5339a27a..78b4be4f1460 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequestOrBuilder.java index f68090297b26..9061ec61b7b2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequest.java index 26cf1d13a09b..0cf600affcd6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequestOrBuilder.java index 036914b06307..7b1568bbe818 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequest.java index 3290bdca9a5d..1c964950d7bb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequestOrBuilder.java index a8b0765986e8..b3814fcb53e9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequest.java index e47077c5eda4..44fb5340caaf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequestOrBuilder.java index 9dcdbd403d50..1db27018666a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/DeleteUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfig.java index 5e9da1b59295..0d4bd5a01a30 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfigOrBuilder.java index 24d6273b5e96..f00cce74fd23 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfo.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfo.java index b314bf3ba08f..2cb8fa82a968 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfo.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfoOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfoOrBuilder.java index d4cae7345b83..546876449b9d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfoOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/EncryptionInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadata.java index 3fc61913c52a..f3b4b1102d3c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadataOrBuilder.java index 8f86ed39ff4b..15a3d177bf37 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequest.java index 471fd90e7cf2..9ba2d9c80520 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequestOrBuilder.java index 947ba8a59f6f..be8de2fbb91c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponse.java index bec461c47c6d..11b825a5b794 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponseOrBuilder.java index 5e1c6d00e1f1..d9889e9b986f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExecuteSqlResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequest.java index 0de47e1fd713..3a3b4cffe495 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequestOrBuilder.java index 63f15e2b126b..8755fd001731 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponse.java index f8fc533c3e9c..73e267e429f0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponseOrBuilder.java index 86092295b8f1..c2f3f72402f9 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ExportClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequest.java index 3510f862604a..04cc66aadc84 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequestOrBuilder.java index 0e7e1ca0237a..35ce0f52f5ff 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/FailoverInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAEntitlementType.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAEntitlementType.java index 8e95853cca25..7e2b4fea6adf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAEntitlementType.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAEntitlementType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfig.java index 77210c7fd60c..28aa5b27cbcf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfigOrBuilder.java index 346b6e5200bf..3ebdc96d690f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GCAInstanceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestination.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestination.java index 5b9d6f7c6a54..d2bec5e12292 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestination.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestinationOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestinationOrBuilder.java index 891f6f99299a..984198ffbb5e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestinationOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfig.java index 505c9082dabe..0e9d7b2aa9b2 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfigOrBuilder.java index d506fdc142ce..76f7c44b5ee6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiClusterConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfig.java index c45b0630cca3..5eda5ee10e02 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfigOrBuilder.java index 43fd304f584a..45fb9c1bb805 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiInstanceConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiProto.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiProto.java index f1145ac67fdd..3fe77f212268 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GeminiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequest.java index e414b8cbd6e0..d2a34c81986a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequestOrBuilder.java index 7efac40a8be4..8fed957a15bc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponse.java index b6a2bcd42c8e..645fbc56c79e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponseOrBuilder.java index 52a42244a62c..38aef8ca6a67 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GenerateClientCertificateResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequest.java index c94757ec2412..92aa1e9b7516 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequestOrBuilder.java index f8ac2d5bd1e7..8c9ff0ae97a1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequest.java index 57f3e72c0df3..17795ec7dbf4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequestOrBuilder.java index 4e806b024130..6bd0f5aba082 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequest.java index 79b110902292..0e9943a8a3b0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequestOrBuilder.java index 6890a6673804..8c0e77436617 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetConnectionInfoRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequest.java index e3d8f565bb32..d9306e737081 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequestOrBuilder.java index 71095f7ae439..8a1286046f99 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequest.java index 825733a111e5..afb21cfb96fb 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequestOrBuilder.java index 636c9ae7ecc1..7f40909a0224 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/GetUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequest.java index f93583295eee..2c12fc46a6f0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequestOrBuilder.java index a0004a5a2cf7..aa8eebc708cc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponse.java index 05a00587e87d..a6a14b3d593c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponseOrBuilder.java index fd501dab5117..407e564448e0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ImportClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequest.java index 7235c1f5ebe2..0b9e285b0537 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequestOrBuilder.java index fbdbee397c74..99088b8929e6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InjectFaultRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Instance.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Instance.java index 194d4c8cf731..98338afcff93 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Instance.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/Instance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19251,7 +19251,7 @@ public com.google.cloud.alloydb.v1beta.Instance.InstanceNetworkConfig getNetwork * * * @deprecated google.cloud.alloydb.v1beta.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1311 + * google/cloud/alloydb/v1beta/resources.proto;l=1314 * @return Whether the geminiConfig field is set. */ @java.lang.Override @@ -19273,7 +19273,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1beta.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1311 + * google/cloud/alloydb/v1beta/resources.proto;l=1314 * @return The geminiConfig. */ @java.lang.Override @@ -26007,7 +26007,7 @@ public Builder clearNetworkConfig() { * * * @deprecated google.cloud.alloydb.v1beta.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1311 + * google/cloud/alloydb/v1beta/resources.proto;l=1314 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -26028,7 +26028,7 @@ public boolean hasGeminiConfig() { * * * @deprecated google.cloud.alloydb.v1beta.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1311 + * google/cloud/alloydb/v1beta/resources.proto;l=1314 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceName.java index a8088be25169..8b4f9b6d4ef8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceOrBuilder.java index 682739003b6a..6373d986b4c8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1243,7 +1243,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1beta.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1311 + * google/cloud/alloydb/v1beta/resources.proto;l=1314 * @return Whether the geminiConfig field is set. */ @java.lang.Deprecated @@ -1262,7 +1262,7 @@ java.lang.String getAnnotationsOrDefault( * * * @deprecated google.cloud.alloydb.v1beta.Instance.gemini_config is deprecated. See - * google/cloud/alloydb/v1beta/resources.proto;l=1311 + * google/cloud/alloydb/v1beta/resources.proto;l=1314 * @return The geminiConfig. */ @java.lang.Deprecated diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceView.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceView.java index 21b1daa4bb7c..77526f191f98 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceView.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/InstanceView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequest.java index 7a6bd0e52b22..aab3c6dfc82d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequestOrBuilder.java index fd6101328478..7512d10144a0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponse.java index 4746de7106d0..ca96dc08f6e3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponseOrBuilder.java index 20b10ef66d52..23080f9ad16d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListBackupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequest.java index 99b1309cca49..a96ce848b8e6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequestOrBuilder.java index 2492f558847f..3b4acaa45a46 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponse.java index 96acdbc50ce6..1c3c1b63c105 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponseOrBuilder.java index e096945886b9..70be9ba8ee83 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListClustersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequest.java index fea263c3096b..0b879deb6d91 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequestOrBuilder.java index 5ee805614ce7..4e063486a910 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponse.java index dae79f6aa6b8..1e9b439d6a68 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponseOrBuilder.java index 94cf9d060613..95295ff37b91 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListDatabasesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequest.java index c0a0ee17a670..b25f55a30833 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequestOrBuilder.java index 3c7092c66f04..775d58b11d81 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponse.java index 15896325b09a..c167698dce46 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponseOrBuilder.java index ca1160f766fe..91246eae973f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequest.java index 504900063554..1ffc16328e9e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequestOrBuilder.java index 87728acf0722..4d3f2ce9ea92 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponse.java index 96f2f2b4dc51..183824507113 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponseOrBuilder.java index 9ccd904ef545..5ebc1df90060 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListSupportedDatabaseFlagsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequest.java index 481e14101723..408daf88367a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequestOrBuilder.java index c604993aa0b0..9e09c1d904f7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponse.java index 42f7bbbcd59a..4963aac8f806 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponseOrBuilder.java index dd097e852591..f37ca1bf7716 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ListUsersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/LocationName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/LocationName.java index 8d9f54e4bf55..4cc55bfcc811 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/LocationName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceSchedule.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceSchedule.java index 3fba16e19575..11801767f3f3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceSchedule.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceSchedule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceScheduleOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceScheduleOrBuilder.java index 8eb8eec8812e..505d8436a077 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceScheduleOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceScheduleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicy.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicy.java index c2a2b433b80e..073a35da806b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicy.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicyOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicyOrBuilder.java index fd90ffe1f587..db4a4f3bc2ee 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicyOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MaintenanceUpdatePolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSource.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSource.java index 8c11855dba95..c0bc4d60d58a 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSource.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSourceOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSourceOrBuilder.java index 77f6c74445cf..3a9e258000ec 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSourceOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/MigrationSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadata.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadata.java index e565d9321e29..320ca80ad622 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadata.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadataOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadataOrBuilder.java index 324d2e87c427..e37772acadb4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadataOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequest.java index ead02e8b6e88..15ddaf19d698 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequestOrBuilder.java index adc0c9a6b31d..2d52fbcf8d1e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatus.java index a5123b18b7a1..1553d1381cbd 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatusOrBuilder.java index db32318b3820..ace0b34f2795 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/PromoteClusterStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ResourcesProto.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ResourcesProto.java index 13721f47e297..e0b43d9ef0bf 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ResourcesProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -800,30 +800,31 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "VIEW_BASIC\020\001\022\026\n\022INSTANCE_VIEW_FULL\020\002*g\n\013" + "ClusterView\022\034\n\030CLUSTER_VIEW_UNSPECIFIED\020" + "\000\022\026\n\022CLUSTER_VIEW_BASIC\020\001\022\"\n\036CLUSTER_VIE" - + "W_CONTINUOUS_BACKUP\020\002*\214\001\n\017DatabaseVersio" + + "W_CONTINUOUS_BACKUP\020\002*\235\001\n\017DatabaseVersio" + "n\022 \n\034DATABASE_VERSION_UNSPECIFIED\020\000\022\023\n\013P" + "OSTGRES_13\020\001\032\002\010\001\022\017\n\013POSTGRES_14\020\002\022\017\n\013POS" + "TGRES_15\020\003\022\017\n\013POSTGRES_16\020\004\022\017\n\013POSTGRES_" - + "17\020\005*N\n\020SubscriptionType\022!\n\035SUBSCRIPTION" - + "_TYPE_UNSPECIFIED\020\000\022\014\n\010STANDARD\020\001\022\t\n\005TRI" - + "AL\020\002B\273\005\n\037com.google.cloud.alloydb.v1beta" - + "B\016ResourcesProtoP\001Z9cloud.google.com/go/" - + "alloydb/apiv1beta/alloydbpb;alloydbpb\252\002\033" - + "Google.Cloud.AlloyDb.V1Beta\312\002\033Google\\Clo" - + "ud\\AlloyDb\\V1beta\352\002\036Google::Cloud::Alloy" - + "DB::V1beta\352A\246\001\n(cloudkms.googleapis.com/" - + "CryptoKeyVersion\022zprojects/{project}/loc" - + "ations/{location}/keyRings/{key_ring}/cr" - + "yptoKeys/{crypto_key}/cryptoKeyVersions/" - + "{crypto_key_version}\352AN\n\036compute.googlea" - + "pis.com/Network\022,projects/{project}/glob" - + "al/networks/{network}\352Ax\n!cloudkms.googl" - + "eapis.com/CryptoKey\022Sprojects/{project}/" - + "locations/{location}/keyRings/{key_ring}" - + "/cryptoKeys/{crypto_key}\352Aw\n(compute.goo" - + "gleapis.com/ServiceAttachment\022Kprojects/" - + "{project}/regions/{region}/serviceAttach" - + "ments/{service_attachment}b\006proto3" + + "17\020\005\022\017\n\013POSTGRES_18\020\006*N\n\020SubscriptionTyp" + + "e\022!\n\035SUBSCRIPTION_TYPE_UNSPECIFIED\020\000\022\014\n\010" + + "STANDARD\020\001\022\t\n\005TRIAL\020\002B\273\005\n\037com.google.clo" + + "ud.alloydb.v1betaB\016ResourcesProtoP\001Z9clo" + + "ud.google.com/go/alloydb/apiv1beta/alloy" + + "dbpb;alloydbpb\252\002\033Google.Cloud.AlloyDb.V1" + + "Beta\312\002\033Google\\Cloud\\AlloyDb\\V1beta\352\002\036Goo" + + "gle::Cloud::AlloyDB::V1beta\352A\246\001\n(cloudkm" + + "s.googleapis.com/CryptoKeyVersion\022zproje" + + "cts/{project}/locations/{location}/keyRi" + + "ngs/{key_ring}/cryptoKeys/{crypto_key}/c" + + "ryptoKeyVersions/{crypto_key_version}\352AN" + + "\n\036compute.googleapis.com/Network\022,projec" + + "ts/{project}/global/networks/{network}\352A" + + "x\n!cloudkms.googleapis.com/CryptoKey\022Spr" + + "ojects/{project}/locations/{location}/ke" + + "yRings/{key_ring}/cryptoKeys/{crypto_key" + + "}\352Aw\n(compute.googleapis.com/ServiceAtta" + + "chment\022Kprojects/{project}/regions/{regi" + + "on}/serviceAttachments/{service_attachme" + + "nt}b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( diff --git a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequest.java index ae703a4f4d52..940faaea0e89 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequestOrBuilder.java index 6b3d58ef5577..dcf754dbc4ab 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestartInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequest.java index 30ba3b6d4147..bd2efcd4ef5b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequestOrBuilder.java index cac89e5a4118..ae1d33951b8f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequest.java index 0a17671393a1..ff61a6b7afd5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequestOrBuilder.java index 050eed1c1be4..221757a53b23 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/RestoreFromCloudSQLRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ServiceProto.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ServiceProto.java index 6a905c9ac0df..8718aa363821 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ServiceProto.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResult.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResult.java index 661d50ba5ff0..2e6293ccdaf7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResult.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumn.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumn.java index 7f3d7d2780a1..cf445bc65e53 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumn.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumn.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumnOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumnOrBuilder.java index 7bda333986ab..d8102504b207 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumnOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultColumnOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultOrBuilder.java index 63d61df7edf8..b3408496d1af 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRow.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRow.java index ad3215624421..c1956c47766e 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRow.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRowOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRowOrBuilder.java index 42e3bc4ec697..dbf7a344ffb5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRowOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValue.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValue.java index 78ea798fc16a..ef39ce873264 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValue.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValueOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValueOrBuilder.java index 767756cecace..50c1d731ee6f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValueOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SqlResultValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfig.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfig.java index 17ebfadc1f76..cbed277c67ba 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfig.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfigOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfigOrBuilder.java index 1a6eb1a5be8e..9bf7d88604a7 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfigOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SslConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SubscriptionType.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SubscriptionType.java index 07d1aded62b8..a3dd737c51bc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SubscriptionType.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SubscriptionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlag.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlag.java index e222f4cfe0fc..e4377f821f41 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlag.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagName.java index ac8adeffa62c..aafa3091914c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagOrBuilder.java index 5ebf038ebabd..947dac25885c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SupportedDatabaseFlagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequest.java index a6e256544f3f..2ab7ac44ec5c 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequestOrBuilder.java index e1c8fb568340..2c1d2aef2b0d 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/SwitchoverClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequest.java index 73b28487804b..c546a7fffe57 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequestOrBuilder.java index af1ae00fb77b..c089e537e2b6 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateBackupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequest.java index 2fda04a770cd..95e5847292c4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequestOrBuilder.java index 20a4ac312d82..2413becebbd1 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequest.java index b3d4f6be04c7..ff0af4cf8de5 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequestOrBuilder.java index 5e62e9f6ae9d..6305dc00f940 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequest.java index cbefa217ce0c..304c5e188edc 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequestOrBuilder.java index 5e5cc347b038..db29a8f18cf0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpdateUserRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequest.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequest.java index 7b244e962718..462e3efc49ce 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequest.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequestOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequestOrBuilder.java index 5e2d34462b45..71af11c87ef0 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequestOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponse.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponse.java index c2653aece721..3447a2375a52 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponse.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponseOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponseOrBuilder.java index 06d2771d03c7..b3f1dde346da 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponseOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatus.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatus.java index c3f3d8ba4e85..d24962e44fa8 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatus.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatusOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatusOrBuilder.java index 0cdf1986ee23..8cb05e2b4eca 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatusOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UpgradeClusterStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/User.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/User.java index 5fb756fddd79..396e03ac732b 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/User.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/User.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserName.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserName.java index 30187250c2ef..54827bb3bc50 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserName.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserOrBuilder.java index caa2054c4d00..7f143561ba1f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPassword.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPassword.java index 8691c8917b03..e8eeb3b228d3 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPassword.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPassword.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPasswordOrBuilder.java b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPasswordOrBuilder.java index 75583bb3f43d..7e748ac9af2f 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPasswordOrBuilder.java +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/java/com/google/cloud/alloydb/v1beta/UserPasswordOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/proto/google/cloud/alloydb/v1beta/resources.proto b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/proto/google/cloud/alloydb/v1beta/resources.proto index bf03e285d01d..2fa7a7729be4 100644 --- a/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/proto/google/cloud/alloydb/v1beta/resources.proto +++ b/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/proto/google/cloud/alloydb/v1beta/resources.proto @@ -104,6 +104,9 @@ enum DatabaseVersion { // The database version is Postgres 17. POSTGRES_17 = 5; + + // The database version is Postgres 18. + POSTGRES_18 = 6; } // Subscription_type added to distinguish between Standard and Trial diff --git a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java index acec78ef0483..5e944f6d22b4 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java index 9a4ab29ad381..6400f4e8b00d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java index ba79acc142ba..47672e05560c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetCredentialsProvider.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetCredentialsProvider.java index e2502e009599..06a17ef104cb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetCredentialsProvider.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetEndpoint.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetEndpoint.java index b3ade60c2bcc..2a36d455e6ae 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetEndpoint.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java index 2fda28fbab97..5a0aa02ae554 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackup.java index 1d22b7d224ec..6ffdffe3b41e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackupLRO.java index ca993bc8e07e..b2c8f84c41ab 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/AsyncCreateBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackup.java index 633b63221a68..23d7cec393f7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java index a5d73cc1c730..af3f0c716e8c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java index eaf0f8b96a74..ca1028987eb8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateCluster.java index 6567c8e33a14..f3ecc4883d70 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateClusterLRO.java index a6de9f447ff4..da0c1d33690b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/AsyncCreateClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateCluster.java index c15e26d93829..1828384f03eb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java index aaf7402225ec..acb2094606cb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java index a94a9b74b4b7..d53f4ae9e29c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstance.java index ebe7294378d2..9bd6366c19fa 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java index c39b10f7ac95..08603571d584 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstance.java index 6073448e763e..95ee601b93a7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java index f7082ae75c14..e2700c1e98c1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java index 7c9753595c0d..f840ef0c0ea8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java index 4ecb03f72b48..50c8bccc8b9c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java index 2a748aa257f3..71dc090b15f7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java index b71e22c817e8..039d88f94fbb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java index bf6f2230ae61..9ffded689dbb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java index 1a8d30218175..b144a2e04584 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java index e6372134a4c2..f9a15f7083d7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java index eeeb7f70fc7c..f0277b4e7978 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java index a76280d8cdce..d381f115de46 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java index d8e3ea6afd48..7c6c383ed02f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java index d0ba109fdb50..721b84a95725 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/AsyncCreateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/AsyncCreateUser.java index 233ee5953cb7..7f7c5506f91d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/AsyncCreateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/AsyncCreateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUser.java index 2fa346f5cc14..8ca8eb3fa721 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java index 0f5f39e8555a..2eb416700a34 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserStringUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserStringUserString.java index a1e769b39147..196f80573edc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserStringUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/createuser/SyncCreateUserStringUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackup.java index e977ceaaf3f4..cbd21d5796d9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java index 9dd1ac21bdc5..524281216300 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackup.java index dd98d05339fe..e31590e1c33b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java index dc27d7682644..651bab204a6f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupString.java index 5b0713443226..d1e6df70504f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletebackup/SyncDeleteBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteCluster.java index 95041b55c9ce..0aa76238e8ec 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java index 6064bc255a9d..f7f823352144 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteCluster.java index 7f2939fa1f72..a61b714cf91e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java index a396892efcca..8425e457f2aa 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterString.java index cb18ce60ff78..d225b3292435 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deletecluster/SyncDeleteClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstance.java index 52c5b89f8704..598958fb8f8b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java index 98a8cde3b03a..80504774262c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstance.java index 7c818f4e75bc..fa7b3ef3ab9c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java index a9c4894556c1..19ba3ca779ac 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java index 99233f8fdac7..182d4499b3c5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/AsyncDeleteUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/AsyncDeleteUser.java index 45acb6326437..4d24875c703c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/AsyncDeleteUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/AsyncDeleteUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUser.java index 8e067e1eab5f..90c9a402b065 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserString.java index 5179cd9b0e9d..a48f68eefc8a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserUsername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserUsername.java index 6c7482af4171..f6fd22eedc16 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserUsername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/deleteuser/SyncDeleteUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/AsyncExecuteSql.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/AsyncExecuteSql.java index e41be4f38ab3..685ed893748d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/AsyncExecuteSql.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/AsyncExecuteSql.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSql.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSql.java index 65a545ebf198..df71e1996a9f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSql.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSql.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java index 9d5c5e02afc9..60fa1757b489 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java index 23f5793dc1b3..70e7127b9600 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportCluster.java index 48e7d255fecd..26aac44a76b8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportClusterLRO.java index 865e4cfb6f12..c90123fa2886 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/AsyncExportClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportCluster.java index 55eac5575248..26198b613adc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java index 7c9683c49091..ba0a431c3124 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java index ea1524dfd42f..d87c69071889 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstance.java index 692f19e8acdf..a426d3c09aab 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java index 6c28badd1ba6..aea0bd8b4f83 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstance.java index fc9fb4ac54ed..d607362d2c42 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java index b80c3f924b29..f889beae6b9c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java index 50726f53d6c8..a4d0af32670e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java index 24cd0a924b38..54057103a25a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java index 54c85a791b39..aacd2d320486 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java index 8fce23ab52a8..adcb6b9edd06 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java index 6889e404ea4a..245fdaaf7dca 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/AsyncGetBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/AsyncGetBackup.java index 943d3063cec2..5cb1e054b40a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/AsyncGetBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/AsyncGetBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackup.java index 794632a8d793..45b0f4004951 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupBackupname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupBackupname.java index ae6df0df66f1..d87e60a8e9e3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupBackupname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupBackupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupString.java index 30404a700eb0..9777e88c9680 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getbackup/SyncGetBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/AsyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/AsyncGetCluster.java index dbe46b717030..48d2e49b1315 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/AsyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/AsyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetCluster.java index ad3abe02290c..c7ee5c3e7874 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterClustername.java index d4035a4bba6d..c1eecffa615a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterString.java index 95d6d4745bca..2c85f66afa65 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getcluster/SyncGetClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java index a9c113d4a5af..0f9931c52f06 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java index 4bce6cabca34..b367180b81d9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java index d53e2485637f..bec83126ae51 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java index 3fbc0e2aee39..1462831aa17e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/AsyncGetInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/AsyncGetInstance.java index e1bd00cb695b..7fbcfffcf00a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/AsyncGetInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/AsyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstance.java index 72a832cf57a6..06fe14172a97 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceInstancename.java index 7171c18c9365..100526cf9980 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceString.java index 19168ee74b16..3127ac9eda93 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getinstance/SyncGetInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/AsyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/AsyncGetLocation.java index 90f9948cc391..ddc740edf022 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/AsyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/SyncGetLocation.java index 27d9ac251e5c..a398e5fa9dac 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/AsyncGetUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/AsyncGetUser.java index 431f8b3a53ca..9d811bfdf946 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/AsyncGetUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/AsyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUser.java index 24b46c0fa77d..7076dd99aff9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserString.java index 9a00f392ca4d..a6e5eb86b339 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserUsername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserUsername.java index f544cf947841..45f05e3ce02f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserUsername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/getuser/SyncGetUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportCluster.java index bb1b8efcd6da..be228f2a6acc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportClusterLRO.java index 32f372cf898e..0a8ba8c252b7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/AsyncImportClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportCluster.java index 5a08c2eb9bb8..802cab628138 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java index 6b1f4910d4fb..4be797a213e0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java index 7571a947c137..4bc4a2fe63c0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFault.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFault.java index ea81259dec16..4a3f9e4d7fb6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFault.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFault.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFaultLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFaultLRO.java index 8b0a86ff47ee..02d1358aa327 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFaultLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/AsyncInjectFaultLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFault.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFault.java index c4d789bba326..618a6121e940 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFault.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFault.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java index 4d4fbe79a0fd..95a753eb7e76 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java index 6c079b68ba85..065d1db8cfde 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackups.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackups.java index cc52f469e571..61700a81ef88 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackups.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackupsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackupsPaged.java index a266ac8e0a6b..a9331d53c4ee 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackupsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/AsyncListBackupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackups.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackups.java index 620287cec104..abb7d7584b1e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackups.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsLocationname.java index 4915dbd117e1..46d91e8f5268 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsString.java index 0513167cea0f..f1fc488e5770 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listbackups/SyncListBackupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClusters.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClusters.java index 233640b7fdba..621dffd372e4 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClusters.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClusters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClustersPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClustersPaged.java index 8820380152d8..f1275e00339c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClustersPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/AsyncListClustersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClusters.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClusters.java index 7586da5f1910..692ae9b2b1ab 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClusters.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClusters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersLocationname.java index b052614e71c9..0849f6269862 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersString.java index 27c05174c2a5..67ceab083e88 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listclusters/SyncListClustersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabases.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabases.java index d661b520912d..4aee60306cb7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabases.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java index c5af29cd786e..ee0156c1ffdd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabases.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabases.java index 5811fa53bb8f..6d6bd0598146 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabases.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesClustername.java index 397fa59fdc43..25983130982f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesString.java index 6c2c82ec3b8d..0248d23f4bb2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listdatabases/SyncListDatabasesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstances.java index 256397ffa8b6..e335f3152745 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstancesPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstancesPaged.java index 181986f7c645..f308608cf238 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstancesPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/AsyncListInstancesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstances.java index 31c3fe19e96d..5aea83be9724 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesClustername.java index 312e105404c1..844eee9a6e86 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesString.java index 1ae3bab4e4b5..d2b0b4c99ac5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listinstances/SyncListInstancesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocations.java index aedc75015471..9c051ef26973 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocationsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocationsPaged.java index 107e5d29a582..7d3ba3b7ce33 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocationsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/SyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/SyncListLocations.java index a200d1ee6cf3..78e6b35454a2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/SyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java index 06446cfb0dce..2502eab15280 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java index 9649f485e155..c61eade7943f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java index 2a76fd8ec270..090788593ecd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java index 2161ccac2ca6..12ebd33e1a17 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java index c0b47c51b553..a4e04e168953 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsers.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsers.java index afe039a86fa2..ec67acadb40f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsers.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsersPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsersPaged.java index d9b3567c806a..58cd7a815fec 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsersPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/AsyncListUsersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsers.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsers.java index 20469174b7bc..d68620b980d2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsers.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersClustername.java index 9759a3f8654e..6cd36fb4e49d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersString.java index 2450c07a23b5..8773f0aca855 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/listusers/SyncListUsersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteCluster.java index b86b6f2a23fa..ccf44ed9fb10 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java index 5756c58d1021..fb3d75fe0e82 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteCluster.java index 02fcae86bcef..72bca4724013 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java index ef8b5a1aec82..7db69f2cc673 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterString.java index 22c3403d3af6..08b1e8aeaaaa 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/promotecluster/SyncPromoteClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstance.java index f3550a6611eb..5de46c90e8c1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java index 015b903eaf03..fddf2f18685a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstance.java index f705cdffa5b7..1a7f3741271a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java index 48f54314db00..8d4e0116cb68 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceString.java index a53c432f84e7..42c8aaa02d6f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restartinstance/SyncRestartInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreCluster.java index 5e22323aa9fe..59b510e3d206 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java index f1f2b02b79a3..976a36ddf482 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/SyncRestoreCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/SyncRestoreCluster.java index d9696ca0a418..533d9db81e84 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/SyncRestoreCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/restorecluster/SyncRestoreCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java index 27f6e4925cf7..79fb732605f3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java index be11e9292f6b..9a56e7d1fa63 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java index 724d638a98ca..57872b1a4cd3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java index 8d34cb92d8c9..938a5e8bcf22 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java index 85118ffed6ba..51239f735a8b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackup.java index d8e34f4bca2c..38c50ea8f6dc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java index c79ab3628ce2..e159f69e86a3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackup.java index b77856e1b361..5d0081ff576a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java index 5fa0ffd15857..e730de7deb22 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateCluster.java index 3a3ecff079b0..aadca6735695 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java index c23ef97c1f48..b70714105266 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateCluster.java index 6ef09e7ff77d..5037285878ca 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java index ec17ce1e1dda..8261980102c8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstance.java index 67bd09b505e0..0e1bf173f03d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java index 8a659a8eb6e8..1ffdd8f9b56d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstance.java index 9e9a3d5b0127..387034b0c246 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java index b47378b4c5f9..eb8923cc9022 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/AsyncUpdateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/AsyncUpdateUser.java index b4ca3e3f0aa3..9dbcf21a3e65 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/AsyncUpdateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/AsyncUpdateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUser.java index 588d5a9db447..ec647d2e6d35 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java index 4b4fa82b3324..f8832289f176 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java index c22173108dbe..370ba9132928 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java index a9f2bc5babd6..32035c3692c1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeCluster.java index 28008a6c63bf..bd099e836d46 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java index be7b84a2a6ed..7a937cef55ca 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java index 6e1ea23a8915..07a2b26556ef 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/createcluster/SyncCreateCluster.java index 960ded536ade..0c5ec139015e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/getcluster/SyncGetCluster.java index 40dcaeb7ff5a..eb752d3efcd5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbadminsettings/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java index 74990b20fbb9..93753ce898b8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetEndpoint.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetEndpoint.java index 8d5262f4e0ca..f9ec2b50c43e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetEndpoint.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java index 1aca14f5bb3e..ca401cc03380 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/AsyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/AsyncGetLocation.java index 6580eb5c309a..2de229684490 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/AsyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/SyncGetLocation.java index 8e7f2f3f9121..4fc0d1a6c788 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocations.java index e35e330f7d0f..85c4e6250bff 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java index d1d46fce3b6b..b0791648992c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/SyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/SyncListLocations.java index 7a1d53d27672..30eef7b1cc4d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/SyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java index 1931ea0c9faa..1a5b5d935629 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java index ec554669dfbd..a49906a41e35 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java index 0f7a7c107ccf..c4da1ed0d293 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java index f346996301da..428ac1658a2c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java index d1aaa8204a40..d196cbe9b84e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/getlocation/SyncGetLocation.java index f8a1701af04d..1f0fca31a296 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java index f8e6b4bdbe4e..66f9ac29f04f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java index bf23490dbea4..c8e2315a9ec3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java index 9825579ef6e9..e111c01014bb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java index ed8fbf86b396..1fd0256b0eac 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java index 78ea7ccae778..d34e8e21537c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java index 3864ccc70298..169d8532915c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java index 718d43e14394..c3437cd74763 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java index c56d50a119f2..58aaa05d6cde 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetCredentialsProvider.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetCredentialsProvider.java index e25b4641ef15..32e31d6a54dc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetCredentialsProvider.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetEndpoint.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetEndpoint.java index a0ddc61e6cfc..710a743b72fa 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetEndpoint.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java index c241bbf23a63..220e814517dc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackup.java index bd9559f66660..145fbd298f37 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackupLRO.java index 45ff83799fb5..2ae4a1a4cd2b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/AsyncCreateBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackup.java index 269b2edd6e17..e5bf2e589e03 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java index c5c112044ca0..62034d3eb7f4 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java index 7a7a07d19913..e7213188d095 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateCluster.java index 7c3758c19624..c5185d2781cc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateClusterLRO.java index a66c9fd69e46..cc91faca03eb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/AsyncCreateClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateCluster.java index a3c0ffb84a16..d9060debbee4 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java index d92cde916e74..10f3ef807b0b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java index dff6d40af5d4..d68da703518c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/AsyncCreateDatabase.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/AsyncCreateDatabase.java index 250aa2a76339..3e37c7dffbf2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/AsyncCreateDatabase.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/AsyncCreateDatabase.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabase.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabase.java index d45458ed4082..5d4f467769dc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabase.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabase.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java index 1ee766da1f49..b7f1fde61c9f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java index dbf151103a84..3cea8c6b21d1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstance.java index 8a019208675d..f6e629e1126d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java index eceadbfbb1e1..8558e27aceef 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstance.java index 57e4105451ae..497e78e7f9ed 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java index c7d7cc5c5799..264d1ea476cf 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java index 14d45516757c..e8b5e1f2fec8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java index c7d0bd240e41..a1123b43aac8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java index afb9da34dd6f..5ba2a9c53ff5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java index f87372732ea9..652eb8fa32d6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java index c78a88f7305f..b754308d8c4d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java index 0227b5b00c0b..c4c27730752c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java index e5d75809307f..b09f36b1f926 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java index 53d1c1e4ac3e..6cf4fd5d49c7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java index af7092281d9a..7eb847c9e47a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java index fff9e2d04070..4cd46ca1c85d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java index 253346dedebf..bcc4dba01607 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/AsyncCreateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/AsyncCreateUser.java index d7c935e3e36f..72fae6d40fb8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/AsyncCreateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/AsyncCreateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUser.java index 2f8ed1a0158b..fd9fb3c0fc90 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java index 15009d27339b..f19e0fa5ce40 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserStringUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserStringUserString.java index 0d4001f1e62d..b6925c71ed5c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserStringUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/createuser/SyncCreateUserStringUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackup.java index 8cdf758cc2e3..e4a47f82fd0b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java index 5217e34839d0..762d52033f01 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackup.java index 65d14147c29e..7780830c017c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java index 7ff88a92e305..3e2ade9f0bd8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupString.java index cb5df5d56fdd..2776b7845257 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletebackup/SyncDeleteBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteCluster.java index 8979c9868b3b..32a89ef999a2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java index 6293fbf55827..7768d1b363ac 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteCluster.java index 692b317c6fd8..ec72307d7c73 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java index 62ca79ca29f5..a192446ef9e7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterString.java index 468f697ab510..426aeff442ca 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deletecluster/SyncDeleteClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstance.java index ae3969892bf8..93f3abb0045c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java index 1c047e3adfff..338aacf1119e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstance.java index e42210160d06..8b1ef760d813 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java index ec2acb757bd8..15f78458c62b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java index 1ace1e574eea..4821c3cd7903 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/AsyncDeleteUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/AsyncDeleteUser.java index 5bb7ffd0a86e..e06497710919 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/AsyncDeleteUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/AsyncDeleteUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUser.java index dfd174e5e2e3..f7e83afc9d06 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserString.java index 23abffc99d1a..1b1bb76c46b1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserUsername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserUsername.java index f66fa7431e20..1b86db3abd98 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserUsername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/deleteuser/SyncDeleteUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/AsyncExecuteSql.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/AsyncExecuteSql.java index 7d7fc7b8cce0..bc011ec2ff0d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/AsyncExecuteSql.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/AsyncExecuteSql.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSql.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSql.java index 222d29e1b169..b61d3867f0c3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSql.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSql.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java index d03b6dc38036..63a48e3ea908 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java index 14d653a29d20..a05f0f88f53b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportCluster.java index 52a284b93191..54bcf530e1ee 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportClusterLRO.java index 60d78dbd924b..e0b4a78cbe8f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/AsyncExportClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportCluster.java index 15c021279443..11a68c68485d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java index 847fed347953..792ebceef384 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java index 52532a144f0e..ab739e58f8e5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstance.java index 9ffcaadaba4d..9d3cd48f9695 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java index 2f493a1360c6..d9d7298bb665 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstance.java index 8ed4fb917383..a1941f671e60 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java index 04fd2533cc2f..1f052843210f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java index 9ca06ab89b6a..4a518a6cad95 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java index 5eb2e72ac1d3..cb65167462a5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java index f9599f17b5d6..082e4980e1d9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java index 5bc85889e163..52aebfd8d936 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java index 5d733c43d41f..ab26ed54947e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/AsyncGetBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/AsyncGetBackup.java index d5945e201628..12353b0829c9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/AsyncGetBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/AsyncGetBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackup.java index 7bf1bab07357..f73ed2915f71 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupBackupname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupBackupname.java index f1c4a895585c..79513524137b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupBackupname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupBackupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupString.java index 67276c5c9c53..a20e157805de 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getbackup/SyncGetBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/AsyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/AsyncGetCluster.java index 45a1f3d60f41..e3c203f29232 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/AsyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/AsyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetCluster.java index 6db4d01637b8..0eb3a12f6812 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterClustername.java index 69cbb151da35..a5121b4a0d1b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterString.java index d0c972215940..7a0576dbef64 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getcluster/SyncGetClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java index aca810104aa2..46bb04597a91 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java index 50854f768857..0a0553bd8905 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java index cab4165b017a..610b8bae5507 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java index 27b2c005b439..a1b1ff643446 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/AsyncGetInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/AsyncGetInstance.java index 6964b3b7dba6..c4bdf5b64d33 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/AsyncGetInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/AsyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstance.java index 5059d60ed9b1..9f5b506090fb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceInstancename.java index c9bee61d3301..99b003844fed 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceString.java index 8e0e4594e5f3..fc1a980c8cc5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getinstance/SyncGetInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/AsyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/AsyncGetLocation.java index 8a86e12a3383..87b6b13a0f82 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/AsyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/SyncGetLocation.java index b2921fd5a3fb..33aca8d59d35 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/AsyncGetUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/AsyncGetUser.java index ea3c38930d91..bc84c941deb8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/AsyncGetUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/AsyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUser.java index 0db1a3d38d50..9245c1132a6c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserString.java index e5c5f40e3587..c878da976023 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserUsername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserUsername.java index 86ee7b160253..29054115387a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserUsername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/getuser/SyncGetUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportCluster.java index e90a4139cfc8..389915ea00ba 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportClusterLRO.java index 81566188ac74..f5524dc16e3e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/AsyncImportClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportCluster.java index acf401420bfb..5b97e050a252 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java index f7c8b95ce3fc..139d80c1e4c2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java index b510447a88e9..c1c44ab18405 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFault.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFault.java index f06168d12445..b33cd5180b2b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFault.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFault.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFaultLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFaultLRO.java index 8d9cb4482097..e2298fa562e6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFaultLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/AsyncInjectFaultLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFault.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFault.java index 5fca7da93c24..14ba365e57fd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFault.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFault.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java index 39d02743027c..f5302e139990 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java index 8ad40db93d01..d6ec71f69f13 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackups.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackups.java index f76eca2cfcac..d95af097fe37 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackups.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackupsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackupsPaged.java index 3b6bda23e4c7..d57e89449f8d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackupsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/AsyncListBackupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackups.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackups.java index 7e0798d67254..e9c3011f628a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackups.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsLocationname.java index b7ef9569dc5a..208fd2a2ca0b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsString.java index 90d3c2d5666a..a3e622fa7cd2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listbackups/SyncListBackupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClusters.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClusters.java index b9dea145f00a..b8fee3d03faf 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClusters.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClusters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClustersPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClustersPaged.java index e21ebaf60e89..cfd861ec4548 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClustersPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/AsyncListClustersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClusters.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClusters.java index 7a445cdc38a0..9ebea2b15fdc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClusters.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClusters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersLocationname.java index 9df9f1b51368..f02d21d2a6e7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersString.java index 49082b9925eb..9635762ea772 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listclusters/SyncListClustersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabases.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabases.java index 6299fd8347b7..4f8866969ca1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabases.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java index 12d36c6b82a3..189787b3c4b8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabases.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabases.java index 494bda5638ea..2dbf86a1e373 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabases.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesClustername.java index cf212007acf0..85c05f4fddbb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesString.java index de41f67f1a73..3ffc80d95648 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listdatabases/SyncListDatabasesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstances.java index a5363e2e2994..db02142e2aee 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstancesPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstancesPaged.java index fa70b7a9b41b..3a1852c41cac 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstancesPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/AsyncListInstancesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstances.java index 5cca9a1f935b..6ea4787fcdcb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesClustername.java index ce0f8df59d37..e20280d5c651 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesString.java index 4b69285b3108..147f3a1af672 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listinstances/SyncListInstancesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocations.java index c99dde13808c..180ca09e3928 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocationsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocationsPaged.java index c9d66069146a..b591b6d7bc50 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocationsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/SyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/SyncListLocations.java index 2bd80d7fce96..67d80ae07cb4 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/SyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java index 4dfa68ecfbb6..cd7be70a3713 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java index 9f997339b5ac..57de44330f5b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java index bba4209e8c86..d4328e5786f5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java index 2cb250b970b5..cf26d0730e11 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java index ed8f974ac342..20ffe88f5746 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsers.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsers.java index 13a38ab86477..b40f46c6a6da 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsers.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsersPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsersPaged.java index 0da5a0de2ca2..301f7e92415b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsersPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/AsyncListUsersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsers.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsers.java index 0fbefd35e6ed..bdbe58ecde16 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsers.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersClustername.java index 25fd3de9f267..c67193a97468 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersString.java index a396a77ebffb..24eddf1e3897 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/listusers/SyncListUsersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteCluster.java index afae044a76ed..bf08260bdc00 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java index 05d420247528..58307522c88c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteCluster.java index 95da65e9a1ff..e27ba86464fd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java index 116d35332624..a18092fa237b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterString.java index 5cb0dbcc236b..4de9a65a9621 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/promotecluster/SyncPromoteClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstance.java index 517e377544d1..7180c1b71790 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java index a3819e0fe71b..764c73ca77be 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstance.java index 3dafbbaab18e..313ed7ad503c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java index df4c21ee450e..8dec6f5623cd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceString.java index f61a0754deb9..d2c90c264333 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restartinstance/SyncRestartInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreCluster.java index 4b56742e19df..a07eb916d547 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java index a3f673f46f35..d792f872afb8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/SyncRestoreCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/SyncRestoreCluster.java index ceefbe6269a8..57c9a7759381 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/SyncRestoreCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/restorecluster/SyncRestoreCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java index b33b9d000f91..787f7f1a7709 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java index a86dd8b55c6d..92909e06f35f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java index acaadb6865b0..ab0b94f5c184 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java index 0dfaa0a943c3..02eb62d44110 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java index 070649024af7..2a6cc7230ef7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackup.java index 4c4370192b65..51c194fcd059 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java index 2640e82babfd..3a838811ce2c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackup.java index efda2f02bcee..39bf7560eb8d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java index 39ebae084561..1982d6ed8e61 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateCluster.java index 384b899352e7..5db07016d1d8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java index af79fb9068a8..f6a93e563be6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateCluster.java index 8beebc165170..812075a01f81 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java index 6281ddc868e9..dc1897ced3a1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstance.java index 2ff7db3b7549..afffeba152b5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java index b9ade6b85952..d8ec19d7e8f5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstance.java index 1f55d9417906..ff4b1187be24 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java index 2e144b414bdd..e3419487a0c1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/AsyncUpdateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/AsyncUpdateUser.java index adca0851558c..f47351d91514 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/AsyncUpdateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/AsyncUpdateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUser.java index 1361b246e4c4..8a075c7b80f0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java index 153c8cfcc674..71620c9abf39 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java index 9afcb2dd0975..abf0c6bf9c9e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java index 6a2c2c43acdc..326241188957 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeCluster.java index 65ee8a6b9ddd..d19ff249df4c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java index 6ba5d2110daf..40d1dc5ad384 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java index 3551c9386dd7..d19c63223858 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/createcluster/SyncCreateCluster.java index f46a00e09a76..bef498ad6b7e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/getcluster/SyncGetCluster.java index d0d43b6e65c0..2937b3834a5c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbadminsettings/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java index adcc6698c550..dd536dc6d96c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetEndpoint.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetEndpoint.java index 995c2bd49559..2723488560c0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetEndpoint.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java index 233132b41e8a..c4222de17e38 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/AsyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/AsyncGetLocation.java index 7ca067a5aba9..65e0f9d3db74 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/AsyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/SyncGetLocation.java index 40f5bdf98e84..34439a4ac297 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocations.java index 22ec25145247..e74e0e62c109 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java index 774f7f05b5be..6fc79171944b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/SyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/SyncListLocations.java index 7153fe2ce673..a93daf3c3361 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/SyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java index bb6c02a46d29..57486fdbf282 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java index f3e8ef85314a..00dfe52745a3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java index f4e998775477..c83c3a31d0c3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java index 2043bc549f08..5433bff56c82 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java index b3a77fbc11b5..9837c2f6f58f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/getlocation/SyncGetLocation.java index d8634d75d278..b4cb9db12eef 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java index c0376ae77e50..19f0c68f40b7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java index b4d9615fb9f5..ed3a529df710 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java index 696f512f7df5..774731985289 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java index e028b5ab9eca..6d66952b82c8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java index 1b2441d47f83..e66fe379bd3f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1alpha/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java index 0bd8458958ef..138fb4b5004c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java index fea4acd77160..9fe1e24e4880 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/AsyncBatchCreateInstancesLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java index 838672fed996..554f74dd3475 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/batchcreateinstances/SyncBatchCreateInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetCredentialsProvider.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetCredentialsProvider.java index f050e3f570fb..606082790e36 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetCredentialsProvider.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetEndpoint.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetEndpoint.java index f52fed3c6755..ace3d0697585 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetEndpoint.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java index bf85df34be97..4fd8f60733a5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackup.java index cd7531a5910a..9e4f4f324687 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackupLRO.java index e237692d6190..ec26eb45d5cb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/AsyncCreateBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackup.java index cc0116800ed9..92e2439c9012 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java index 4d41a97317da..db8619ab5710 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupLocationnameBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java index 9cd7aa2412f5..6d5138c07b2d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createbackup/SyncCreateBackupStringBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateCluster.java index 3eadd6ff8a77..fccbb76d0d0a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateClusterLRO.java index ca749e5d9bb3..f04f0ba59c85 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/AsyncCreateClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateCluster.java index 00c43d196e75..616f87391a8e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java index ccecd52b4973..aa340873dca0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterLocationnameClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java index 5962e99f5e2b..5cf8a4dd034e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createcluster/SyncCreateClusterStringClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/AsyncCreateDatabase.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/AsyncCreateDatabase.java index 2830fe643541..e3b5e49a6489 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/AsyncCreateDatabase.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/AsyncCreateDatabase.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabase.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabase.java index 767c85bf9f40..234cee39e68e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabase.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabase.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java index 575a64836513..f5242129a5ee 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseClusternameDatabaseString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java index 4f043f82d623..3dd594251454 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createdatabase/SyncCreateDatabaseStringDatabaseString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstance.java index ee9ab8024aeb..1d82c3d4ded1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java index b621f84ec385..c6a888161687 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/AsyncCreateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstance.java index 42084f7089b3..2d7079cfdc97 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java index 53451cc7f56b..f1abfb3e3e92 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceClusternameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java index 386c3f641962..37d97ac0261a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createinstance/SyncCreateInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java index f2d9bbb0a132..09301f44fb49 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java index 9e038fcbf56a..f2512821b62b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/AsyncCreateSecondaryClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java index 3cc4d2be2905..373560b4e09a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java index c4e8bf4c0975..36fb36670211 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterLocationnameClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java index 9965bf3cb5f6..ccebfb4f6c3c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondarycluster/SyncCreateSecondaryClusterStringClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java index 6e8e5c8faed3..3d2bde41f7c6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java index 68b95aaf1595..3e7e39058002 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/AsyncCreateSecondaryInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java index eb5473bb7087..1919612168d1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java index 81e36525817d..20ae6ca8225c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceClusternameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java index 01d285e0f614..36cc96033cbb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createsecondaryinstance/SyncCreateSecondaryInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/AsyncCreateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/AsyncCreateUser.java index 01dc3414a017..a7a52191e128 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/AsyncCreateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/AsyncCreateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUser.java index 4e3b8b271276..f5484198ba77 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java index 274c393bf35d..c9d7c9bc2ca0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserClusternameUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserStringUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserStringUserString.java index c9f2cabb7b1b..17fe315d9ddc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserStringUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/createuser/SyncCreateUserStringUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackup.java index fe6dd29e7916..e94269f38e8d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java index 546ecd4319d2..37ddd841696c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/AsyncDeleteBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackup.java index 7a30264f0282..7f2d7fce66c8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java index 53cf3ca4ed57..cccc46690652 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupBackupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupString.java index 82e6ab95f707..432566d5c04b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletebackup/SyncDeleteBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteCluster.java index 29f4148593e5..a118157b235b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java index 9d012aec34ce..99cce249baed 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/AsyncDeleteClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteCluster.java index b8ca00c1a10c..6546a53622d1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java index ba72fdda76a9..1e9aa09a6437 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterString.java index 11a1cb7d5156..8df23a3c8e44 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deletecluster/SyncDeleteClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstance.java index a79fe6cf4623..fd2a793844e0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java index cf18afda86c3..d79d4c4fea7e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/AsyncDeleteInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstance.java index 0cb5025c7f4e..f2f878f46458 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java index c749d0a27dae..dbe2cf760b67 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java index f27c8d874bb9..97341f6c49d6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteinstance/SyncDeleteInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/AsyncDeleteUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/AsyncDeleteUser.java index 59811f8ad49b..24c4e48d9123 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/AsyncDeleteUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/AsyncDeleteUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUser.java index 0b1bbf066239..73ab21eca1b0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserString.java index 4442d8828857..049d54aecd2b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserUsername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserUsername.java index 255c0dddc569..abed347c3022 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserUsername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/deleteuser/SyncDeleteUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/AsyncExecuteSql.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/AsyncExecuteSql.java index 493c35d54745..e841435c3c89 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/AsyncExecuteSql.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/AsyncExecuteSql.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSql.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSql.java index 38b13ee66409..57582e6e88e2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSql.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSql.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java index 16026433cdc3..efb983074b79 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlInstancenameStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java index 2a38db947f27..79f88ee19392 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/executesql/SyncExecuteSqlStringStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportCluster.java index 943b71716c5b..5aac5ceb9cc3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportClusterLRO.java index d8b8d595703a..7bb72a82465e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/AsyncExportClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportCluster.java index 2f805bc3140d..50c67def47f8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java index 4e2389f8c4d0..c3a23ebfb689 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterClusternameGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java index 4118f79b990e..7732b93ef0d2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/exportcluster/SyncExportClusterStringGcsdestinationStringExportclusterrequestcsvexportoptionsExportclusterrequestsqlexportoptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstance.java index 049afe46e832..0c36d5086a5d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java index aef37e9d7796..7248f6a97bb6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/AsyncFailoverInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstance.java index 65b008698ff7..0f6442d837e3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java index 0a4d4604901b..7d99961bfc8c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java index 64302acd5324..d27e9e622f37 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/failoverinstance/SyncFailoverInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java index 7f3c79281593..db6295a419f0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/AsyncGenerateClientCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java index 271b3ec8651a..1f8d3a28a033 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java index c6e364f8822f..5b609984391f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java index 6f7c5e78cb05..72e5f4dc0f11 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/generateclientcertificate/SyncGenerateClientCertificateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/AsyncGetBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/AsyncGetBackup.java index 103c750e3c2d..4b7a6299b0cb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/AsyncGetBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/AsyncGetBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackup.java index 2ea4710f95c5..fb1e58aa3159 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupBackupname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupBackupname.java index e4de9198e30a..ec707a129b38 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupBackupname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupBackupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupString.java index b02fbe061d91..016fddc20cad 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getbackup/SyncGetBackupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/AsyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/AsyncGetCluster.java index 4c0ce6d40322..195af92dd55f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/AsyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/AsyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetCluster.java index b8f55fd409aa..93cdc763189e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterClustername.java index bf5aa1a65c05..3d482aca4d5a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterString.java index 4701fb5404ce..72c70ae18a2d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getcluster/SyncGetClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java index 2715147617b8..3c764cec6a68 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/AsyncGetConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java index 2def4229cf33..2e1dab2ed0cf 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java index f01fe00c9dcc..dfe1cd25fd04 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java index 0bf56a0ec948..00c48d67c503 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getconnectioninfo/SyncGetConnectionInfoString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/AsyncGetInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/AsyncGetInstance.java index 332f7b9f078e..b5c893c5bbd1 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/AsyncGetInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/AsyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstance.java index d29e1985a994..b483d3f86b02 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceInstancename.java index 1fb122be0e08..c166e63b9121 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceString.java index 056bf0bf2f58..fd7da39f402c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getinstance/SyncGetInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/AsyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/AsyncGetLocation.java index 3f2613425261..846182187c23 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/AsyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/SyncGetLocation.java index 491b6079590d..baec7739b5a6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/AsyncGetUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/AsyncGetUser.java index 2d2b244bf416..9f3aa848186e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/AsyncGetUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/AsyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUser.java index df3b12ba1939..4600e2dff31f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserString.java index c45232f7e564..0a3833ea5e9f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserUsername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserUsername.java index 39fd9c58875d..e77109fb32eb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserUsername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/getuser/SyncGetUserUsername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportCluster.java index 6a684e833e53..5ad7a3f29711 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportClusterLRO.java index 0310e3661563..70f648b371c0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/AsyncImportClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportCluster.java index cd3cb559423d..593458d74477 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java index 9fa59f345e2c..d312b7a044e6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterClusternameStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java index dce4ec058221..255757907a53 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/importcluster/SyncImportClusterStringStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFault.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFault.java index d2448f1260a8..79f776d3ad88 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFault.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFault.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFaultLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFaultLRO.java index 895325316fc0..6950618f534a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFaultLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/AsyncInjectFaultLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFault.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFault.java index 7c2bed685620..4e4abea808ac 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFault.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFault.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java index fdfe038ba4f5..8456eee79d1c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java index d557feaf071b..b81092ebde1a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/injectfault/SyncInjectFaultInjectfaultrequestfaulttypeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackups.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackups.java index ffada61244fa..be261314ba95 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackups.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackupsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackupsPaged.java index 59a89d3cbd45..1c55d81188cd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackupsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/AsyncListBackupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackups.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackups.java index b29fab5f3326..2d1f0f3a0085 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackups.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsLocationname.java index 26ea043d41ed..eac9eecd5178 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsString.java index 250554d72207..6d66dff2f8f3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listbackups/SyncListBackupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClusters.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClusters.java index e91547ab90f2..7b72ab03dfe2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClusters.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClusters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClustersPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClustersPaged.java index 865cbe53856b..80d25b557a8f 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClustersPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/AsyncListClustersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClusters.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClusters.java index bb2e2795717a..74e515a7cd62 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClusters.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClusters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersLocationname.java index 9ed67a3922a4..5a9c19fdb504 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersString.java index 861d552517e3..deb52717f20e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listclusters/SyncListClustersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabases.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabases.java index 63d0a7b93271..6aee2be2a38d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabases.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java index c7ab52189752..ce09690d2378 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/AsyncListDatabasesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabases.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabases.java index 104cd1b2dcab..267fa28cfb4c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabases.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabases.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesClustername.java index 2795887982b2..df0da2ca7f84 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesString.java index 49b954baab19..0cd1c90bb7cf 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listdatabases/SyncListDatabasesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstances.java index 14faa53dd3d0..75a056625c62 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstancesPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstancesPaged.java index 24648c1a2046..4874aa40e202 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstancesPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/AsyncListInstancesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstances.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstances.java index 2a711376c81b..ffa3c6497fdb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstances.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesClustername.java index cbcbe95513c0..33179a364570 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesString.java index c5f957423988..4b9949682763 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listinstances/SyncListInstancesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocations.java index 6124df89ad71..89b382086c36 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocationsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocationsPaged.java index 9ef7486ae2c0..feaf64231540 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocationsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/SyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/SyncListLocations.java index 96d208b3ad91..21c10555d684 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/SyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java index 5c57ba43562b..e37447a13ef3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java index a4f5204b5d12..0b8338525984 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/AsyncListSupportedDatabaseFlagsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java index fcc09ed7c564..120de35a2dd8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java index 75b258330fd9..e5be213dd953 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java index 31dae617fe26..37a0cbd2ff45 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listsupporteddatabaseflags/SyncListSupportedDatabaseFlagsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsers.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsers.java index 589b089cecd7..d976bfe72aa9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsers.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsersPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsersPaged.java index 016e67a0fbeb..cc7a62e4dbef 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsersPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/AsyncListUsersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsers.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsers.java index c767c4258140..a21a2dd28716 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsers.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersClustername.java index cce3cef198ad..36cc473285f2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersString.java index 8bbc23a5c352..aa7643214d81 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/listusers/SyncListUsersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteCluster.java index eadf9191d2cf..b2d5616a87d6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java index 7e1e1b961191..994d8a74fb58 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/AsyncPromoteClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteCluster.java index 4a59f0698965..b3384d675914 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java index 47f151e6a23f..6b0bb2c069a6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterString.java index 7dc0fda8a93b..ffb925403da6 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/promotecluster/SyncPromoteClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstance.java index f14dbb51be03..ce54ddee46f7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java index a5a4f498418d..32587ccb37eb 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/AsyncRestartInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstance.java index e34fd11a9f69..14401dd47de7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java index e6d370c91466..984f4b2c72f8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceString.java index f94cb6361287..e3365c2caa2d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restartinstance/SyncRestartInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreCluster.java index 73f4932466c2..21960f1951f8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java index 061f2a94a8b5..cddf0cb1bf69 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/AsyncRestoreClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/SyncRestoreCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/SyncRestoreCluster.java index 89c8dcc7eb00..15ac8fc040fd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/SyncRestoreCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/restorecluster/SyncRestoreCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java index adc53bf087e1..2270d970bfc8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java index bcce7fa652d2..83bf13792ce8 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/AsyncSwitchoverClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java index 10f2e1b11b42..e81f7334907d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java index 4f0948293a39..4059909a97b5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterClustername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java index ee82fd88b3a4..b338ace69130 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/switchovercluster/SyncSwitchoverClusterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackup.java index 327044f7d253..7f34d65d1957 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java index 50ff5bb13441..b18dc0422c27 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/AsyncUpdateBackupLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackup.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackup.java index fee9e1f8107a..8e037079acea 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackup.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java index 94ea72c3bfe3..850695f216ed 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatebackup/SyncUpdateBackupBackupFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateCluster.java index 389cd47176db..62718de8d37c 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java index 19140d43e3be..f4d60bfd3d8e 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/AsyncUpdateClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateCluster.java index 26ac8503c572..0350c518d088 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java index b4ee0d788760..4adbcb124b6b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updatecluster/SyncUpdateClusterClusterFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstance.java index 7626ae9212e3..fdfbcab92626 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java index 04beaa59b32f..bc53231ed102 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/AsyncUpdateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstance.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstance.java index c7e2f07b22f5..7d69afa7cecd 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstance.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java index 80312dabf4d7..65737acda088 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateinstance/SyncUpdateInstanceInstanceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/AsyncUpdateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/AsyncUpdateUser.java index 04da0b6e820d..c556f90450ed 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/AsyncUpdateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/AsyncUpdateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUser.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUser.java index a7834fe6b775..b34d53178ae0 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUser.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUser.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java index d9d2c4acfaee..8a4e5c81d310 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/updateuser/SyncUpdateUserUserFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java index ec5b6a8866e7..cea76ec694b9 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java index e5590b9f0362..3c0e628a4f24 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/AsyncUpgradeClusterLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeCluster.java index f79d1c32af7b..94e89b148906 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java index 11a99365517f..aeff9d7a04fc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterClusternameDatabaseversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java index 8ee8c3d1936c..22a3db216cea 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadmin/upgradecluster/SyncUpgradeClusterStringDatabaseversion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/createcluster/SyncCreateCluster.java index 1be9fe60cac0..037fbd805d98 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/getcluster/SyncGetCluster.java index 4c780b0f640a..b06b032e94fc 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbadminsettings/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java index 313da99013e4..458f28b4298a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetEndpoint.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetEndpoint.java index 59029ba520ca..a2d544ffd01d 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetEndpoint.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java index c4ae00fb6a72..72fd97a8f147 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/AsyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/AsyncGetLocation.java index 65cc535c4647..f38d8cb4748b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/AsyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/SyncGetLocation.java index 8d377acd9d28..45e525e8b980 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocations.java index cda340cf2a7b..0590e1cad562 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java index 38f214b48b62..9b0c73682db2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/SyncListLocations.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/SyncListLocations.java index 9ae6458d6b1b..076877c1a511 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/SyncListLocations.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java index d5b1997387bb..45242f6f9930 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java index 8a7e0a9913bd..1cacc9a98b37 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/AsyncRestoreFromCloudSQLLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java index e7e65d2c2386..0aa9f7c3a8c5 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java index 60c81db7b282..c613ec5be39b 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java index 76658f05d101..f522a990bd60 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladmin/restorefromcloudsql/SyncRestoreFromCloudSQLStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/getlocation/SyncGetLocation.java index cfac41f0520b..84e5a6ccdeb2 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java index f74209fe1e23..c64ed1250a63 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/alloydbcsqladminsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java index 66c368866845..00d970fc3bc7 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/createcluster/SyncCreateCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java index 05d65a3fffda..0b6162f81192 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbadminstubsettings/getcluster/SyncGetCluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java index 0e318f827f0b..40a6bf3976e3 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java index cc2adb049538..d6454964f05a 100644 --- a/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java +++ b/java-alloydb/samples/snippets/generated/com/google/cloud/alloydb/v1beta/stub/alloydbcsqladminstubsettings/restorefromcloudsql/SyncRestoreFromCloudSQL.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/CHANGELOG.md b/java-analytics-admin/CHANGELOG.md index d0594f463e12..aa4301d22b14 100644 --- a/java-analytics-admin/CHANGELOG.md +++ b/java-analytics-admin/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.92.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.91.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.88.0 (2025-10-21) ### Dependencies diff --git a/java-analytics-admin/README.md b/java-analytics-admin/README.md index 09099ac25c9e..62a9e8a4fa10 100644 --- a/java-analytics-admin/README.md +++ b/java-analytics-admin/README.md @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.analytics google-analytics-admin - 0.88.0 + 0.91.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.analytics:google-analytics-admin:0.88.0' +implementation 'com.google.analytics:google-analytics-admin:0.91.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.analytics" % "google-analytics-admin" % "0.88.0" +libraryDependencies += "com.google.analytics" % "google-analytics-admin" % "0.91.0" ``` ## Authentication @@ -175,32 +175,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://developers.google.com/analytics [javadocs]: https://cloud.google.com/java/docs/reference/google-analytics-admin/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.analytics/google-analytics-admin.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-admin/0.88.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-admin/0.91.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-analytics-admin/google-analytics-admin-bom/pom.xml b/java-analytics-admin/google-analytics-admin-bom/pom.xml index 8f77eea732a7..268a75cfef0e 100644 --- a/java-analytics-admin/google-analytics-admin-bom/pom.xml +++ b/java-analytics-admin/google-analytics-admin-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.analytics google-analytics-admin-bom - 0.91.0-SNAPSHOT + 0.92.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,27 +27,27 @@ com.google.analytics google-analytics-admin - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc grpc-google-analytics-admin-v1alpha - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc grpc-google-analytics-admin-v1beta - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc proto-google-analytics-admin-v1alpha - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc proto-google-analytics-admin-v1beta - 0.91.0-SNAPSHOT + 0.92.0
diff --git a/java-analytics-admin/google-analytics-admin/pom.xml b/java-analytics-admin/google-analytics-admin/pom.xml index f6442846a8f3..2ba253b52148 100644 --- a/java-analytics-admin/google-analytics-admin/pom.xml +++ b/java-analytics-admin/google-analytics-admin/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.analytics google-analytics-admin - 0.91.0-SNAPSHOT + 0.92.0 jar Google Analytics Admin allows you to manage Google Analytics accounts and properties. com.google.analytics google-analytics-admin-parent - 0.91.0-SNAPSHOT + 0.92.0 google-analytics-admin diff --git a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java index 07db283af027..6018a29020fb 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceSettings.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceSettings.java index a9b8c6f31450..b6f3b921afb9 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceSettings.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -113,8 +113,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/package-info.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/package-info.java index 0af0f8643ef6..214706d60162 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/package-info.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStub.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStub.java index f9ceb2f51ac3..fc36eb98c24f 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStub.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStubSettings.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStubSettings.java index f94a91c1686e..43ac390f81cf 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStubSettings.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/AnalyticsAdminServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -361,8 +361,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceCallableFactory.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceCallableFactory.java index 4c0ec5e5b5af..c276d52cd635 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceCallableFactory.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceStub.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceStub.java index ad85f3fc3f13..2ccedec01505 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceStub.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/GrpcAnalyticsAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java index 435a000d3ddb..42a66edb2816 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceStub.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceStub.java index 86e6f4a1b028..bf0f5ec08c5b 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceStub.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/stub/HttpJsonAnalyticsAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClient.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClient.java index 95d7c10eaa9f..f703d775ebcb 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClient.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceSettings.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceSettings.java index cd59a2f80ca8..0d8e97d7c562 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceSettings.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/package-info.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/package-info.java index 95a9e23c6f1d..432becbf3eb1 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/package-info.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStub.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStub.java index 7724a831f4e9..95b867f53247 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStub.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStubSettings.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStubSettings.java index 569161709055..c4230523f2dd 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStubSettings.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/AnalyticsAdminServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -197,8 +197,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceCallableFactory.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceCallableFactory.java index 6b43abf33f33..82797d8a3e48 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceCallableFactory.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceStub.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceStub.java index f8ef799ed911..b3457795073f 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceStub.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/GrpcAnalyticsAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java index c9bbddd2c8d5..109d47ac5453 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceStub.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceStub.java index 31985b37961a..a62e3c3db500 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceStub.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1beta/stub/HttpJsonAnalyticsAdminServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientHttpJsonTest.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientHttpJsonTest.java index 2ca669e4be5c..2030289f6780 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientHttpJsonTest.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java index a237be68caae..006c08076f0c 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminService.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminService.java index 88c1910d5f82..9f3bc10a628d 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminService.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminServiceImpl.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminServiceImpl.java index 0528f2ec5d0a..e6f3f5da1a09 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminServiceImpl.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/MockAnalyticsAdminServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientHttpJsonTest.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientHttpJsonTest.java index b20293c13726..20faa827ada1 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientHttpJsonTest.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientTest.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientTest.java index 29f02547e89b..78e2fbe9e7aa 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientTest.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminService.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminService.java index 077d55cdc7a0..7352435c4cf2 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminService.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminServiceImpl.java b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminServiceImpl.java index 61d28bef68a3..aaf8a24312d5 100644 --- a/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminServiceImpl.java +++ b/java-analytics-admin/google-analytics-admin/src/test/java/com/google/analytics/admin/v1beta/MockAnalyticsAdminServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/grpc-google-analytics-admin-v1alpha/pom.xml b/java-analytics-admin/grpc-google-analytics-admin-v1alpha/pom.xml index b3245bdc169c..72fce7392205 100644 --- a/java-analytics-admin/grpc-google-analytics-admin-v1alpha/pom.xml +++ b/java-analytics-admin/grpc-google-analytics-admin-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-analytics-admin-v1alpha - 0.91.0-SNAPSHOT + 0.92.0 grpc-google-analytics-admin-v1alpha GRPC library for grpc-google-analytics-admin-v1alpha com.google.analytics google-analytics-admin-parent - 0.91.0-SNAPSHOT + 0.92.0 diff --git a/java-analytics-admin/grpc-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceGrpc.java b/java-analytics-admin/grpc-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceGrpc.java index 77bfd4794b3c..4f5b3032f1ec 100644 --- a/java-analytics-admin/grpc-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceGrpc.java +++ b/java-analytics-admin/grpc-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/grpc-google-analytics-admin-v1beta/pom.xml b/java-analytics-admin/grpc-google-analytics-admin-v1beta/pom.xml index 9953c9f72962..2f4726e5caa7 100644 --- a/java-analytics-admin/grpc-google-analytics-admin-v1beta/pom.xml +++ b/java-analytics-admin/grpc-google-analytics-admin-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-analytics-admin-v1beta - 0.91.0-SNAPSHOT + 0.92.0 grpc-google-analytics-admin-v1beta GRPC library for google-analytics-admin com.google.analytics google-analytics-admin-parent - 0.91.0-SNAPSHOT + 0.92.0 diff --git a/java-analytics-admin/grpc-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceGrpc.java b/java-analytics-admin/grpc-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceGrpc.java index c2183f49f847..ae4fb7153353 100644 --- a/java-analytics-admin/grpc-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceGrpc.java +++ b/java-analytics-admin/grpc-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/pom.xml b/java-analytics-admin/pom.xml index a63635496477..9cf22f3bbafa 100644 --- a/java-analytics-admin/pom.xml +++ b/java-analytics-admin/pom.xml @@ -4,7 +4,7 @@ com.google.analytics google-analytics-admin-parent pom - 0.91.0-SNAPSHOT + 0.92.0 Google Analytics Admin Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,27 +29,27 @@ com.google.analytics google-analytics-admin - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc proto-google-analytics-admin-v1beta - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc grpc-google-analytics-admin-v1beta - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc proto-google-analytics-admin-v1alpha - 0.91.0-SNAPSHOT + 0.92.0 com.google.api.grpc grpc-google-analytics-admin-v1alpha - 0.91.0-SNAPSHOT + 0.92.0 diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/pom.xml b/java-analytics-admin/proto-google-analytics-admin-v1alpha/pom.xml index a344a2f9291d..ce56f58849d4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/pom.xml +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-analytics-admin-v1alpha - 0.91.0-SNAPSHOT + 0.92.0 proto-google-analytics-admin-v1alpha PROTO library for proto-google-analytics-admin-v1alpha com.google.analytics google-analytics-admin-parent - 0.91.0-SNAPSHOT + 0.92.0 diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilter.java index 14a987ddb23d..4b10da647d07 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilterOrBuilder.java index 78face66b90e..a170e6ec4343 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBetweenFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBinding.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBinding.java index 024a03530db0..2b0ddd376a98 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBinding.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingName.java index 0912382ebbd3..9f08adbb77fa 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingOrBuilder.java index c9195581894d..3ad66ebf1287 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessBindingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRange.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRange.java index 3515f8c717ec..656875880f95 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRange.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRangeOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRangeOrBuilder.java index 0e131192b8d9..e8818a902605 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRangeOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDateRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimension.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimension.java index d153077c86ee..f304192a6e4e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimension.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeader.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeader.java index bc42fa2a88ea..3bd2c3224886 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeader.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeaderOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeaderOrBuilder.java index d8502a81cab0..f8330fb1e35e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeaderOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionOrBuilder.java index 98d7582d1a49..748191bf1636 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValue.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValue.java index 9d7392cd92c2..302225af1646 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValueOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValueOrBuilder.java index 9a03b42b3f85..b9adf8e067f6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValueOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessDimensionValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilter.java index 1232b2049823..fe23a877f5cf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpression.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpression.java index 649c72ebaa1f..3d62ad8cb675 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpression.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionList.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionList.java index 32e3c5bf2fbf..a5aff0420082 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionList.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionListOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionListOrBuilder.java index a06faa9dd382..2a7a24a7c57c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionListOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionOrBuilder.java index 4ae99f3fc195..b1f5726d6ace 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterOrBuilder.java index f2d4a33aaf1a..22d7443d456e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilter.java index 8e3265aed638..30219bbeee45 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilterOrBuilder.java index ec1e01ef235f..d6a15a286dbe 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessInListFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetric.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetric.java index 363188efbe7b..576064b951e4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetric.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeader.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeader.java index ed653e48dd1a..abaab4cbd574 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeader.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeaderOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeaderOrBuilder.java index 1065439750fe..e3bbc1e90bba 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeaderOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricOrBuilder.java index f76af215d781..7d9e8d0facb7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValue.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValue.java index 26c332750e0e..02f4033fe1a3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValueOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValueOrBuilder.java index 5f4222a437d3..362a0dd1dc17 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValueOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilter.java index 2a54fce7e42c..c226164da9c3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilterOrBuilder.java index 6854ae0b5dda..873056f0da09 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessNumericFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderBy.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderBy.java index e51c7701ecb1..d1bbdfa0e102 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderBy.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderBy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderByOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderByOrBuilder.java index d4bac166ce44..8c4bb17e8654 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderByOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessOrderByOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuota.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuota.java index 6f2cd187d8a4..e3c8c2224f10 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuota.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuota.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaOrBuilder.java index 3913cf7300e1..a0754389297e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatus.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatus.java index a0b9b46e84da..716e0006726a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatus.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatusOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatusOrBuilder.java index a6a090abb1a6..f0d5a538177e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatusOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessQuotaStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessReportProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessReportProto.java index 080a5a66f739..228af421dcc5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessReportProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessReportProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRow.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRow.java index 8bdfd887de61..6c6c99eb68e9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRow.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRowOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRowOrBuilder.java index 9de3946b2814..757972ba7ddb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRowOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilter.java index 3529d264a0bb..fe0f5a3ff948 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilterOrBuilder.java index e69a8dcc1b8d..992bdb7347bb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccessStringFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java index d6157f227e58..cbc1563315b6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountName.java index 2c9ddbad45f1..81dec64ac50c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java index 5e57539f12e9..06da5727b29d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummary.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummary.java index 1f0a5dba5ecd..b416b0b4ed9c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummary.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummary.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummaryOrBuilder.java index 63c21e26957c..594d429d242b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummaryOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummaryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequest.java index 9c8085af5f26..3a0949f646ba 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequestOrBuilder.java index a82481cfa277..953f7518cf86 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponse.java index c9bfba91770b..917fd981ec58 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponseOrBuilder.java index fddde8197116..7ac6af5d566b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AcknowledgeUserDataCollectionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActionType.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActionType.java index 43780790264b..a7bd18d031cb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActionType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActorType.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActorType.java index 7bbe593d1851..0e59a22aff57 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActorType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ActorType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLink.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLink.java index 7e8d56a76bb0..159ee6964d91 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkName.java index f7771d672702..bd3f59668570 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkOrBuilder.java index 731c2720e0b4..4c79d0703517 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AdSenseLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java index ed6e00d21b4b..b3ddc40e89a6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequest.java index e7beedd4bab9..3699e71bbfb5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java index d75de7b53953..31092617c539 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponse.java index 1a86e3e5f924..2ccc0bece4d3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponseOrBuilder.java index 6991e6b23edf..2e67c4c8ec0e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ApproveDisplayVideo360AdvertiserLinkProposalResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequest.java index 1937b117c9bd..d913dce38c17 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequestOrBuilder.java index 1e3af5de6e7f..8741a2f4c33e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveAudienceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequest.java index c34fc320463e..16f57614c006 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequestOrBuilder.java index 50236a18074a..547d3b7cad1b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequest.java index ff63522ff295..c9ecc2885f14 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequestOrBuilder.java index 88c55f3c1f14..04ffd128a3de 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ArchiveCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettings.java index 8f2210c2917b..b26aecb4d4a9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsName.java index f06170b59a95..a1e52a52b82d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsOrBuilder.java index 602f26f6d71b..5fb67c523ca2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AttributionSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Audience.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Audience.java index 7903600de664..695d170ef27a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Audience.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Audience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilter.java index 3bb7ec4a3591..17020207c498 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilterOrBuilder.java index 7ac0c14ab156..00aa121b204a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceDimensionOrMetricFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilter.java index 5c37a4fd9bc2..b51bb4e05cdc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilterOrBuilder.java index d8b44f942739..78dbe1b65903 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTrigger.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTrigger.java index 9f17f17b6f47..52ab32b76e92 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTrigger.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTrigger.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTriggerOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTriggerOrBuilder.java index a9725463dacf..6868c428aa3e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTriggerOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceEventTriggerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClause.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClause.java index 4118c7b49af2..4dd46073f3c8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClause.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClause.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClauseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClauseOrBuilder.java index 535dccb4bc05..917c061ba4dc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClauseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterClauseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpression.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpression.java index 59baae23bcfd..491baf3e71ca 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpression.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionList.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionList.java index f1e3f63dd1e8..4e7af2314d1e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionList.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionListOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionListOrBuilder.java index de45dacefa67..e5ba36aad13e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionListOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionOrBuilder.java index 6a50a5c8ae1f..5fcee59a72f3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterScope.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterScope.java index 262e3d2d80b6..716eca8d225c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterScope.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceFilterScope.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceName.java index df40731dadff..105af697d768 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceOrBuilder.java index 6e3c11721a22..7ec3eb4ed9d0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceProto.java index e07d2a427179..04795aa44f56 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilter.java index 26e436cd6d35..6ab3710f43be 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilterOrBuilder.java index 55c9389bf5b3..e763ba7fd2e7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSequenceFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilter.java index d4de9e7fb043..0c31b9ee48b9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilterOrBuilder.java index 296d1be815d1..f3be27f65bd6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AudienceSimpleFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequest.java index b440e965563d..d4af14153d54 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequestOrBuilder.java index 94fe928723c4..4f4d0d24e5f9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponse.java index 4fc55aab052f..216a4ef90bfc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponseOrBuilder.java index 30614ae3e51a..53537bbad0d9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateAccessBindingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequest.java index f13d104f7333..019777e1d468 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequestOrBuilder.java index 9a15fbdb0cbb..46fc12467c36 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteAccessBindingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequest.java index ee3af9e73f76..1f0ee1548e2a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequestOrBuilder.java index 79faacc2876c..10c9fc87af2c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponse.java index d92a8cbfab7d..735e46f443fa 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponseOrBuilder.java index 99878f4f8a6b..235f3093eedc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchGetAccessBindingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequest.java index 6f01470fc720..a66f436f8160 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequestOrBuilder.java index 3b9c01f420e4..ee38f9b2b118 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponse.java index 2cca70f8f314..0f847d71d4b2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponseOrBuilder.java index 31e8fd6c6c5f..329b05ff3892 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateAccessBindingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLink.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLink.java index e8df973d311f..84a0285b47e1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkName.java index 6291d9891a7e..c27c1435d9ac 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkOrBuilder.java index ad726000df36..691d568e53fe 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BigQueryLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetric.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetric.java index a1535bb61539..46e8cb95bfea 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetric.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricName.java index 55dfd9ed5609..45c94c2c79f7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricOrBuilder.java index d00d955eddae..cbb1acffa002 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CalculatedMetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequest.java index f321961e4d29..3fae60fa4b21 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java index 21cbc7c4b3df..98b6c05a0475 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CancelDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChange.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChange.java index 5ee6f46a08ac..16da86743df5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChange.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChangeOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChangeOrBuilder.java index 23e8b78c1b05..9d3bed179fbf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChangeOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryChangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEvent.java index dcb29b9fb0bd..b9ef734e94a1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEvent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEventOrBuilder.java index 7ce11e094019..6d6a4b1a7cff 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEventOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryResourceType.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryResourceType.java index f99d58086c72..2e8769ee4910 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryResourceType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChangeHistoryResourceType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroup.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroup.java index ab6191f7ba0e..0533fc8cc9a7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroup.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilter.java index caabc585feea..e1d10305a35a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpression.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpression.java index 2e90850b723a..109eb85171d8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpression.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionList.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionList.java index 6776d0492013..a9920b4d6964 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionList.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionListOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionListOrBuilder.java index 5f0fe44d6126..07f9864df52a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionListOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionOrBuilder.java index 5352b9684411..c8e608fbcc67 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterOrBuilder.java index c86c396f5cf9..83d4ffce5830 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupName.java index ea44b560eae4..aff81b8f9909 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupOrBuilder.java index b6c958a904a4..4eabd9abcf83 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupProto.java index 206e558d2a32..66a84a52d5f4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ChannelGroupProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CoarseValue.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CoarseValue.java index a58e2fbd1c83..1c0b99af9d77 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CoarseValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CoarseValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEvent.java index 53a6efff79a7..0ea32b394937 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEvent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventName.java index fe004b99c937..baf6ad2b5106 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventOrBuilder.java index 50c89cff95ee..f2fc50fc0c05 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValues.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValues.java index 5ee295e1030e..cbd1fc5e1535 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValues.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValuesOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValuesOrBuilder.java index d6c175fae1d3..c505cc8bc1cc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValuesOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ConversionValuesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequest.java index 05b89861af44..2acf231b2331 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequestOrBuilder.java index a2512b2e7e70..8721d5d5a909 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequest.java index e428ef4f7834..12ce0cdf4a3b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequestOrBuilder.java index 4c9829ecf975..4604206c9076 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAdSenseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequest.java index 590af92e5086..6887be2f5c7a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequestOrBuilder.java index b16097230925..ecaa8239b265 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateAudienceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequest.java index 5c6a4f37e37a..515ee5d0f700 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequestOrBuilder.java index 773e4fa6c7a7..f1de80043b7a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateBigQueryLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequest.java index e5c54591a5fb..0383fa203fe9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequestOrBuilder.java index 23aed7e0af42..758db54cc679 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCalculatedMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequest.java index 33917d79f1e2..c635b925febf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequestOrBuilder.java index 0b01f8e6968d..f83c3a9c8d7a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateChannelGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequest.java index fe88331e1647..ca5ff0132f59 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequestOrBuilder.java index 138cf6c15d7e..6d05f3cc8af3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequest.java index 580b476881b4..dde519d9e301 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequestOrBuilder.java index 2c0c9388d114..6f3d7e27922b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequest.java index f81c3d954423..9bb0d21d5539 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequestOrBuilder.java index 4fe979089257..b9feba10d67e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequest.java index 7095f58d7b43..9d44270a4240 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequestOrBuilder.java index ee437cfd49c5..ffb418b6f11c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequest.java index 6818c6a8e848..06018f413f52 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java index a4c88e0f534b..39b55c1d03b1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequest.java index d7b38ee9bc19..f91da935e95d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequestOrBuilder.java index 1229c9b2d5ce..37c8ae7bad74 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateDisplayVideo360AdvertiserLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequest.java index 078ba7dc5129..6192abdd7a6f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequestOrBuilder.java index dad46db2427c..41cc86c3c015 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventCreateRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequest.java index 3a766b9b1bdc..542980147e9e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequestOrBuilder.java index 592b2e554ba6..3475ee1d5085 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateEventEditRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequest.java index 640f9a4323d2..7895e4034ec5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequestOrBuilder.java index e89fcc0b86cd..76c19fa8342f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateExpandedDataSetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequest.java index 5dc8252bee58..14d1bcfcaf62 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequestOrBuilder.java index 47e62f6d4117..77648a510595 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateFirebaseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequest.java index ba3e6f239538..9f2a5606ddca 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequestOrBuilder.java index 1df968849ed4..4685c7fb450e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateGoogleAdsLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequest.java index ce6cb0cc13e5..fe6f3e0d4abf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequestOrBuilder.java index b261957188f0..95b5f588fdb8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequest.java index 95bef6fc8cdf..78ea58d1b0ac 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequestOrBuilder.java index b29c0b1c1272..0e596dfb8c31 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequest.java index 636bc259c83a..6806c2d814f0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequestOrBuilder.java index c379015514f3..ac228d59906f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreatePropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequest.java index 86f153568b55..d695a6132094 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequestOrBuilder.java index 36097ab3b15a..96270a4edb6e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateReportingDataAnnotationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequest.java index 71f601760958..64ece4560a8e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequestOrBuilder.java index 629e8863eb18..92f8ecbc2261 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponse.java index f3b9d06394ed..51dd2eac1f8f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponseOrBuilder.java index cbb49c19175c..4e9e9d58bc85 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertyResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequest.java index cb78177e321a..0105634ecf51 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequestOrBuilder.java index 5fa05b354b0e..749a7fe39b80 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateRollupPropertySourceLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequest.java index f24c5675b44e..20c4d9267b3a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequestOrBuilder.java index 7bb5e94c07bd..6276572c7bb6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSKAdNetworkConversionValueSchemaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequest.java index 6d28355b2828..bd68dc0d6afb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequestOrBuilder.java index b7c78d88fbfb..058dc3c16d5a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSearchAds360LinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequest.java index 09b390db42a2..517691d44ad9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequestOrBuilder.java index 32f9d4de9e6b..80cfa7077c5d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateSubpropertyEventFilterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimension.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimension.java index 71e03026bf27..f94f6ae07554 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimension.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionName.java index b0e0507f1cae..76b287a0556b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionOrBuilder.java index fc9d5be78adb..f0d4df1acbdb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomDimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetric.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetric.java index 5827b2419eda..3012b2dbf434 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetric.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricName.java index 1e289be151f2..f6b869d31837 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricOrBuilder.java index 67420304ea9b..ac85fe932407 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CustomMetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettings.java index 61cbac485370..bc7677aa1d1d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsName.java index 0e9397feeb11..15ebe38347dc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsOrBuilder.java index b4688baa5bac..f742f2186be8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRedactionSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettings.java index 3283ce53922e..7d74bc2e1b7a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsName.java index 8d46af05669d..bc57734a26db 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsOrBuilder.java index a963196d9fb6..11c10213a56c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataRetentionSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettings.java index 9704d8901315..2bf9a0340578 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsName.java index 767b42f34166..f05f11c6afa1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsOrBuilder.java index b97dc5f97967..d7b68a711933 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataSharingSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStream.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStream.java index ebeb38dcac37..393d432f02f0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStream.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamName.java index a127a1497bc7..2dffe4edb0ca 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamOrBuilder.java index 89adb18f643f..641ec9fd2374 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DataStreamOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequest.java index 6a1e90752937..44d13728d471 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequestOrBuilder.java index fcba720e4d51..8e5bcf3ee37a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequest.java index b9307be5f0d3..80ee555765f7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequestOrBuilder.java index dfc8d1a1a910..7eb353406602 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAccountRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequest.java index 1f81b195be5a..042f023349e1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequestOrBuilder.java index 92175fdb50fd..7bc340705989 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteAdSenseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequest.java index c5f911504c72..cc72c77c023b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequestOrBuilder.java index 8b5fd91af0ac..241c3607cd3f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteBigQueryLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequest.java index 2526999f6bb1..9a3283033828 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequestOrBuilder.java index 43e8236e5ae8..7808dcfe5428 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteCalculatedMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequest.java index 41a6bcb340db..9bf34599623a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequestOrBuilder.java index 14024a12ad44..5b10359c956c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteChannelGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequest.java index 1c9d943c0f59..e11d2e4bee1f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequestOrBuilder.java index cfd9e47dbf55..190cde38c17b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequest.java index 65e07a542b8d..a1bae78c4c8c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequestOrBuilder.java index b4659dde7794..55094c3a493b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequest.java index d69c7a5b193d..151617869ea3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java index 90f4c7e300fc..72433c3d60bf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequest.java index f78817386b84..69a194f24065 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequestOrBuilder.java index 1ca0e617270d..d38fb2b7dcd9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteDisplayVideo360AdvertiserLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequest.java index a27a2d974359..44f3ed0e559f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequestOrBuilder.java index e5336a27da10..ec608d0440b9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventCreateRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequest.java index fe8d3f93c41b..718d542c06b3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequestOrBuilder.java index 37b0e30b33fc..06740db8af3c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteEventEditRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequest.java index 00635b2d0a1b..c88ba732fad4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequestOrBuilder.java index 9c874d417537..4214db7feb75 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteExpandedDataSetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequest.java index 8f889dca5511..a8c083a8ae17 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequestOrBuilder.java index 2d827c71b331..4b8e9e87516d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteFirebaseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequest.java index d3dca0b95e7e..adfda4d495a4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequestOrBuilder.java index 5b9b671f0d73..74cdc34b1197 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteGoogleAdsLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequest.java index 03160fd9d0b0..c369da672581 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequestOrBuilder.java index 342419f37375..0d8127848cf2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequest.java index ac059518d5ce..a44fdecb309d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequestOrBuilder.java index 52b9d9b63ed4..f2c52b07ec1d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequest.java index 5a5f55d450e6..71e8d6de9049 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequestOrBuilder.java index 020ed3b0471d..7fa3d7026c88 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeletePropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequest.java index c8157e0cd129..17f30be1a182 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequestOrBuilder.java index c4ab5a889682..8408a3859cb4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteReportingDataAnnotationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequest.java index f10e47876deb..2db855052b3f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequestOrBuilder.java index 72736980b992..b8f010cfecbb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteRollupPropertySourceLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequest.java index df027f12f377..7d86845bb8f9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequestOrBuilder.java index 1b87f5087241..e8a55bad909a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSKAdNetworkConversionValueSchemaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequest.java index 4a96fc97e11d..a62c1e35d1d0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequestOrBuilder.java index 1e1236002224..f4b1ac2edc5b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSearchAds360LinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequest.java index 5b94ef7b8219..43c886d67e0c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequestOrBuilder.java index 363d831d90fa..e51061c37e79 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DeleteSubpropertyEventFilterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLink.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLink.java index 634e649183b1..485022ff2a4b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkName.java index 303274ed883b..932683d4ce96 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkOrBuilder.java index b9e581b662ff..876243f4d0cb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposal.java index 2c2ea0a6ad95..7d0e00c1cac6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalName.java index 9425993e3b21..7f394e9049d8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalOrBuilder.java index 3e9ca009e063..b2412aa9be7d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/DisplayVideo360AdvertiserLinkProposalOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettings.java index cb0b618151b9..15b07cb6e70f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsName.java index a2e15fb829b1..26b094c32a63 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsOrBuilder.java index 4bee05e40d51..f15d95de2f93 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EnhancedMeasurementSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateAndEdit.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateAndEdit.java index b55e784eca7a..b703fd3f2192 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateAndEdit.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateAndEdit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRule.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRule.java index fd6c5c2e9f5f..2456cc9cb493 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRule.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleName.java index 7e0a90c1b4f7..451c505cda36 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleOrBuilder.java index 16ffb9b27c5e..6c7287156274 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventCreateRuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRule.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRule.java index 139e323c656b..6752f074d83f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRule.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleName.java index 62cfdb5819ae..ff18390928c2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleOrBuilder.java index 1583740d6bf8..2b74276b9425 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventEditRuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMapping.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMapping.java index 01098e34d792..14e3da056c0c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMapping.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMappingOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMappingOrBuilder.java index b6355a44f217..efb4da34e066 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMappingOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/EventMappingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSet.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSet.java index b18fba7d012a..a29497d45ef9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSet.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilter.java index b56d9c5879d7..fbe7c47dde09 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpression.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpression.java index 078a1908da1a..badd95f98ce6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpression.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionList.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionList.java index cbd0fe6476a3..1e70d7a4eae8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionList.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionListOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionListOrBuilder.java index 068e63b95cfc..c36bb9fec7cd 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionListOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionOrBuilder.java index 9a1ed4ff9e48..0d1461e1aaf7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterOrBuilder.java index 9140c073eaa6..0745377cc0d7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetName.java index 5cc4adb2d9b0..bcf9239d8976 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetOrBuilder.java index 1ffccc06bcdd..e8494f0f23c7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetProto.java index 59317467a982..4c6adc31e34f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ExpandedDataSetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLink.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLink.java index 3085d3187548..ce85644753d2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkName.java index 75b3fc4287be..edf905db5a06 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkOrBuilder.java index 6bfcc3089184..3cdea2929e00 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/FirebaseLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequest.java index 7e7c9fc94b4d..ee8afea915f4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequestOrBuilder.java index 84592a21d8c2..c26007e4c75b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequest.java index 8111e2aa2bf6..7fa5e7acc06b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequestOrBuilder.java index 5aa8e30a814a..136bd96a73f3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAccountRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequest.java index d3edc182dfb1..2c58c00bdcbf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequestOrBuilder.java index b6bcc8a2bc06..42d128ff874d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAdSenseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequest.java index 73bc52930dd8..5543fb9f3189 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequestOrBuilder.java index e30ca79c938a..34ea99318740 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAttributionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequest.java index 4f1c2c4e8f08..aaa01bb8edd8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequestOrBuilder.java index 163b3918eb64..306c40b1ade9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetAudienceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequest.java index 9735e6f1933e..07dc8344fbed 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequestOrBuilder.java index 85578103d5e8..3b96190fff32 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetBigQueryLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequest.java index d9f4b2973fae..08644f7dccd6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequestOrBuilder.java index 257bba135495..8c1212086475 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCalculatedMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequest.java index 37262a69304d..b2d4b3d8f5ad 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequestOrBuilder.java index d10732905fd3..1486768ffd2f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetChannelGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequest.java index 6b69a9f3ec70..9b4b0c43661b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequestOrBuilder.java index a1e24fd2e292..b783201f4391 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequest.java index 554ad51a77e0..bed4881e9119 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequestOrBuilder.java index ab1ecf7a032c..25fb0b467cd2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequest.java index a0b919b5913f..be52afc1cf04 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequestOrBuilder.java index 50471d67d300..63078312a7a5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequest.java index 46d7e8f5bfb9..a471ddc2fe97 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequestOrBuilder.java index 87e739977c0b..3ea5d49e89f4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRedactionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequest.java index 2a6f526d97df..22273f6eea8e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequestOrBuilder.java index 4879e67cee0b..fe176806e085 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataRetentionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequest.java index c80e5e97f4d9..0608660e3915 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequestOrBuilder.java index 898deaf5d355..977e9a7652cb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataSharingSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequest.java index 5faf49684591..75b1fd10074d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequestOrBuilder.java index b0e5e75bc7d4..964d2b1cb3ef 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequest.java index 4bd723847cc6..1d5ec317a42f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java index e9ac8080ccd9..8c6c2fc54d59 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkProposalRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequest.java index f5e1f7c51f78..3d49db815a0f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequestOrBuilder.java index 972d3bef2374..11ee5da14115 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetDisplayVideo360AdvertiserLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequest.java index abfba689c62a..7daf9b8eb198 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequestOrBuilder.java index a5d3db11169c..cf21564b9213 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEnhancedMeasurementSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequest.java index 7abb08b70f88..b553c14c1ab1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequestOrBuilder.java index 09c49ca79709..6c22bcf988f7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventCreateRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequest.java index 5f75abe0039c..86500c1f992c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequestOrBuilder.java index 99655ff3b777..37f983dc4d9e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetEventEditRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequest.java index f78ce5c4fea4..f749345ea846 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequestOrBuilder.java index c37de459e77a..9dd3d912b13a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetExpandedDataSetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequest.java index 26077775647a..8f4284b28da8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequestOrBuilder.java index 9a8f2c14fe37..da286efca6b4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGlobalSiteTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequest.java index d018113eb0ea..47c2f80afce7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequestOrBuilder.java index 9b052d730eb3..0d26f1786329 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetGoogleSignalsSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequest.java index 51fe302ff335..e3b006644cf3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequestOrBuilder.java index ceb361b7fbe5..b1df2924a140 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequest.java index 3d1eaba1acc7..f6f34b8a5220 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequestOrBuilder.java index 5f15716bf3f4..4220bdb95c3b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequest.java index f42b500344df..dde8fb6eb93d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequestOrBuilder.java index 85eed06864c3..683de6e48a36 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetPropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequest.java index 945142929e0a..a314f0f21bd4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequestOrBuilder.java index 4fc6a0137e76..2bbc1fd1c1e2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingDataAnnotationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequest.java index 79a98fc9a285..96b22319ce88 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequestOrBuilder.java index 19f0d54e3e78..85e92172114c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetReportingIdentitySettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequest.java index 8473fa38fc4a..9244aed06492 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequestOrBuilder.java index 994733ab48e6..038d27697a3b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetRollupPropertySourceLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequest.java index 64a7a80aef4e..f39fc038fb45 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequestOrBuilder.java index ffba71fd3695..673df367938f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSKAdNetworkConversionValueSchemaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequest.java index 5d100e9fd50f..bb97a309266d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequestOrBuilder.java index 9c825d13ed50..ffaa283e5159 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSearchAds360LinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequest.java index 1e1878018b89..f597cdc82c68 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequestOrBuilder.java index 005b3ebe0eee..e4191c5a9215 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertyEventFilterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequest.java index c36a667a9b74..63e3790780f1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequestOrBuilder.java index cab7b44e44ef..4c816070a01a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GetSubpropertySyncConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTag.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTag.java index fde5c0ebea3a..6e364b7fa91f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTag.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagName.java index eb63ea2d4667..11464f7c04c6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagOrBuilder.java index 43b2a2bec668..f5d4771ac4f5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GlobalSiteTagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLink.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLink.java index 6f6640e2ef88..c94843a6a4cf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkName.java index 56f85ae3104d..8b808a8d11d8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkOrBuilder.java index 268e518c0c8a..9b55139e900d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleAdsLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsConsent.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsConsent.java index a19f8a304be4..9aa7fb96446a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsConsent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsConsent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettings.java index aa2fa4a2d455..f5243cfcd0f7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsName.java index d5586e0173ca..625bef50d57d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsOrBuilder.java index 5eb54f89a39e..7653e510f615 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsState.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsState.java index d84cd09a14aa..ca31f61ffa3c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsState.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GoogleSignalsState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRule.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRule.java index ad09963c1cd2..9964ab305721 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRule.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRuleOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRuleOrBuilder.java index 86c4af1d8900..d6f816514070 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRuleOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/GroupingRuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java index 8f6b701d7e80..ce8cab4ac0ab 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEvent.java index b4e2ca0a985c..f510e5bad06f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEvent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventName.java index 7e384b1b2c35..04d32100dd73 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventOrBuilder.java index af8b6b48d39b..eafe319468c8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/KeyEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalInitiatingProduct.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalInitiatingProduct.java index 7fd421ff4ac3..21531ebaa635 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalInitiatingProduct.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalInitiatingProduct.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalState.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalState.java index f4acc7ae2585..b28f04db1819 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalState.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetails.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetails.java index 456a45757865..a323c4c8bcc3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetails.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetailsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetailsOrBuilder.java index c0f019150ee6..2e2692271bdc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetailsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/LinkProposalStatusDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequest.java index e7edfef5c60b..344208fa0542 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequestOrBuilder.java index 8db900dbb788..dac9abdbabed 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponse.java index f038a094979c..e059901f864c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponseOrBuilder.java index 3083e0f29828..8f879d76e3ce 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccessBindingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequest.java index fb3f623bdf24..e1531c92b941 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequestOrBuilder.java index 20b0b43ee258..9dce0150a3c3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponse.java index d86e74e75482..65e81ea849d9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponseOrBuilder.java index 04ccef8cba4e..0c12d2297945 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountSummariesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequest.java index de64c9176216..8755aca5e52d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequestOrBuilder.java index 73d5d33ce7c9..4975ee2eaef3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponse.java index 6f2aaa4351e7..a1fc7dfcc547 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponseOrBuilder.java index 5c2b590a6dd1..dd991414cec4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAccountsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequest.java index 568520e4ace2..223af83f397f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequestOrBuilder.java index 3bc34a0ca797..293aae1ad02c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponse.java index 1443cd596641..17ace37814cd 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponseOrBuilder.java index 2877ed283dbc..bc83c4515913 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAdSenseLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequest.java index 46c2e3c11da7..61ce7a1d0e4f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequestOrBuilder.java index 75bfa55cfb32..0e666f80440d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponse.java index c5d21865209b..4c31bb306cfe 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponseOrBuilder.java index 1d8f3033b929..0de33df2ad94 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListAudiencesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequest.java index 216ed08188e9..2f64cd2dd3bf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequestOrBuilder.java index c3e8cfcd1a51..665516832f8b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponse.java index ff5bacb3dfe5..e9332b5995ad 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponseOrBuilder.java index 2a1d3bcb481a..98bf0521c8a1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListBigQueryLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequest.java index a485d4f8785e..1ac9705fd13f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequestOrBuilder.java index 02af1d0128a3..ade0bccc6297 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponse.java index 71cce57bdd44..4ab1f315a0e5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponseOrBuilder.java index fbef35e9b578..637d13c2dfe0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCalculatedMetricsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequest.java index e1b13c688bc1..c44af1796f94 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequestOrBuilder.java index df2469f0178f..051a1324b0ca 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponse.java index 8e01deff1b88..bc5d33434d52 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponseOrBuilder.java index 64a492f3c3e6..957caab28b0d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListChannelGroupsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequest.java index fa493ad2b6a4..13df6f38a82b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequestOrBuilder.java index ba8104fd76d2..af7105184778 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponse.java index e99e1ca35fb2..09370274a12b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponseOrBuilder.java index af1858fe9b40..36d14f6b7ad1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListConversionEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequest.java index dc500c2e9fb7..6e6bbcc9a6b2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequestOrBuilder.java index 9bbb2d590a6b..bdb2a3291226 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponse.java index c5f38f572f90..e453472569a0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponseOrBuilder.java index f8b5381fc596..0b9be0b1af39 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomDimensionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequest.java index 77d5bccb6d5f..10f1ca541cb0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequestOrBuilder.java index 141b26d22833..a53439b109a1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponse.java index d8a21c5160fc..7878b3cb87f6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponseOrBuilder.java index 0d393c0447b4..19a4108106e2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListCustomMetricsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequest.java index b43c8bcee50b..e8e83e53803c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequestOrBuilder.java index c37bf1c6d81f..3ff8bcebcbf4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponse.java index d219b4f629b4..400d54759b07 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponseOrBuilder.java index 7956f36d64f4..90640e401a57 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDataStreamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequest.java index bc2d773e4cea..d09d2d0a65f8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequestOrBuilder.java index bff7ac14f81c..0d7e9e3df183 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponse.java index 7cde4f02392d..fa3f48df3d3d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponseOrBuilder.java index 1dbfd3ccded1..f00fdba505fa 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinkProposalsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequest.java index 10b2d8168d1a..724fa73579e7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequestOrBuilder.java index 19305a828c10..d5cba3404870 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponse.java index 30b821b61d45..d68d4a97aac1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponseOrBuilder.java index 8debd163f717..32f7951c0fd7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListDisplayVideo360AdvertiserLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequest.java index 4f70cf1118e5..5887b06aec33 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequestOrBuilder.java index 5611a62b24d1..82084f9861e0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponse.java index fdd5e23fa3a0..aa2e26bdfebc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponseOrBuilder.java index ece34255488f..d3adf7425419 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventCreateRulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequest.java index 85eba5ab6dd4..0761d740072d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequestOrBuilder.java index 56270c6386b8..c3be50aa113f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponse.java index d2402fb8cf99..40cc96a3078c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponseOrBuilder.java index 931bf48cc660..1f980395c5e3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListEventEditRulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequest.java index 7a6bee2e22c9..b0ebad2bc965 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequestOrBuilder.java index 43ff463dfabc..6cb9b9095301 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponse.java index e720954175e1..a11b9ed7c697 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponseOrBuilder.java index 4d716008c9cc..4d89f3ae1832 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListExpandedDataSetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequest.java index 072978a1cd01..702e71229881 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequestOrBuilder.java index 3f7365bf4001..4da99c6b32c6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponse.java index 1eb6a0ee511d..c50964c35911 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponseOrBuilder.java index 7c315e1f099d..4b0d2dd2c8f6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListFirebaseLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequest.java index 33e02192325d..64f98c85a506 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequestOrBuilder.java index 4e5c1d46ae58..e0970f559944 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponse.java index 6701c58d2f7c..fcdd035c01b8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponseOrBuilder.java index 93da08dcf70a..2ad9e47db19f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListGoogleAdsLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequest.java index 08cef3dd9706..f3b6a64e2e6b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequestOrBuilder.java index d6a3fb8b41e5..358c6edc0a36 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponse.java index e5985b16b486..1bde46eeba03 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponseOrBuilder.java index 45a135e3b6dc..f80d952946c5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListKeyEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequest.java index 45fec71af1a8..d5cc8119e971 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequestOrBuilder.java index 45d7e7494f7c..37b5a105dfd9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponse.java index 4b26f898a9d5..15927681584a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponseOrBuilder.java index 796cced276a4..0c02d0012a8c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListMeasurementProtocolSecretsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequest.java index b2a67e7389eb..241c912d9ada 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequestOrBuilder.java index f5faeed454af..45d2c9c281cf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponse.java index 35da2211f69a..c21d105f2e2b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponseOrBuilder.java index 15a3cfff1e5f..ef87c00fd86c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListPropertiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequest.java index cdc5393af702..ffe98cf737c0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequestOrBuilder.java index 075257b6d158..dd515fbdcdf0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponse.java index 911611ecb8ce..5155b70058d0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponseOrBuilder.java index 7a32fe232c3b..ac4e33f36c6a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListReportingDataAnnotationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequest.java index b0b7f159a82f..478b36a22f27 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequestOrBuilder.java index 68fa2c794c36..cd247cccb105 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponse.java index 70128163c972..c89f3c7f3e18 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponseOrBuilder.java index 5d662806814d..374584c2781f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListRollupPropertySourceLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequest.java index 7d9bef6fe520..3c7079064e3a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequestOrBuilder.java index c605abb84036..50ef5dca49bb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponse.java index abb31cfc9845..0fcf9edcf15e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponseOrBuilder.java index abf6a9c0865a..8df3ae02830a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSKAdNetworkConversionValueSchemasResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequest.java index 7465c6de2e3e..c05996791bed 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequestOrBuilder.java index 7e2670ffec06..1eaed7ff7fb7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponse.java index d8467a3fe768..3ddfac877767 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponseOrBuilder.java index 08c58619c004..a75a9eb895ce 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSearchAds360LinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequest.java index 86d8a1f9a92a..22a6763bdafd 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequestOrBuilder.java index 486145d9a1c3..5b0eaefb125e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponse.java index 9c5fb4e843b1..212b1ea33de3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponseOrBuilder.java index 2d9c3312d019..60942306a11e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertyEventFiltersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequest.java index 4bdad2e4f994..d7b59bce3a7d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequestOrBuilder.java index 5881d709e4a9..c0d41c100257 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponse.java index 529db60dc715..7ca2c7e64e09 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponseOrBuilder.java index daf3251040ae..f4cc68b25ec9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ListSubpropertySyncConfigsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingCondition.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingCondition.java index 1bc7cba32c18..7b6c7e049114 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingCondition.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingCondition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingConditionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingConditionOrBuilder.java index 6d678b5023ba..2e7c6f3ea144 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingConditionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MatchingConditionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecret.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecret.java index 8bb786a1b0fd..0aa6925d4ead 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecret.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretName.java index 8ab322a0338e..cdf8f313af00 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretOrBuilder.java index f50302669126..a1b5d927cfa2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MeasurementProtocolSecretOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValue.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValue.java index 4f7386c880ee..16ebcc376cc8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValueOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValueOrBuilder.java index c6896dd1f855..d5316d1a9868 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValueOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/NumericValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutation.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutation.java index 5b7e51a21544..a073c601d81f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutation.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutationOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutationOrBuilder.java index 70ed2f7110a1..89b6a565ad65 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutationOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ParameterMutationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindow.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindow.java index c1aca3b7f8f0..fcf1268a9e79 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindow.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindowOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindowOrBuilder.java index 8b4b40413ae2..9e941da519d5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindowOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PostbackWindowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Property.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Property.java index 5c920f38c126..8f612dcc2ad4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Property.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Property.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyName.java index 02ae51624384..d479c47a9d84 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyOrBuilder.java index 05a2cc7fac09..2cb6872f7fc5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummary.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummary.java index c4b98caafdb5..946511bed95d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummary.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummary.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java index 99d4ca85a06b..1c19ff37697f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyType.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyType.java index 3de1b7b446f1..85ebf929fde3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertyType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequest.java index da8ae7124e5b..5c5426711c45 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequestOrBuilder.java index 394a078660b2..b480ef1993ee 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponse.java index 99a8f06fb0a1..0186111ac3d4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponseOrBuilder.java index 745d52ccbc0f..cf7aa8bf132f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionAccountTicketResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequest.java index a834ab5c3783..22f8a3265294 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequestOrBuilder.java index c2b5367f4f4f..98437675a388 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponse.java index b959679fcce4..c31707176c47 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponseOrBuilder.java index 9453601ab5ca..c7cc33458f4b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ProvisionSubpropertyResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequest.java index 284beaa3b279..7a15fdc2ec55 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequestOrBuilder.java index 7e17377f790d..e07acb5b62cb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReorderEventEditRulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotation.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotation.java index e5e41e33ec77..9782b7f3749d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotation.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationName.java index 628932fc3fc0..4652a2d2fa6f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationOrBuilder.java index 3a5ba14b2acc..cccd733828a5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingDataAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettings.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettings.java index 956b36358551..ff735f54ac9c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsName.java index 85092719adbf..6288751c0649 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsOrBuilder.java index f8cec4f71baa..f30859a1398f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ReportingIdentitySettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java index 2df58272764f..273d25006dfb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLink.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLink.java index bd8a621b3a47..bf35fbf48770 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkName.java index 7cc032447299..5c101f1e3242 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkOrBuilder.java index ded91208f730..131bc98756db 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RollupPropertySourceLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequest.java index 1aa74d02f0ba..c78491f65860 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequestOrBuilder.java index 23a13aa1e1b0..0959e6e8b814 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponse.java index 528e7cd7185f..40e6ae8ba29a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponseOrBuilder.java index bb94236d5557..63a98bb55da1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/RunAccessReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchema.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchema.java index a4ea34e4ed24..f357d6273270 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaName.java index 7cd64440fd93..aebd75cdd408 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaOrBuilder.java index 81cee5976f8f..a6c007c3b58c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SKAdNetworkConversionValueSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360Link.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360Link.java index 3e9f1630b435..7508fb4621bb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360Link.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkName.java index 61bf44d17738..db84af83ef45 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkOrBuilder.java index 49bfbc607b8a..8872f37319ab 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchAds360LinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequest.java index 55969ca7fb69..947da3f88aef 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequestOrBuilder.java index a64363da2921..b61c9310f0ea 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponse.java index d35d5ad83ea6..6702bf74bda2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponseOrBuilder.java index e9cf6c08415c..3d1315fd3387 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SearchChangeHistoryEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ServiceLevel.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ServiceLevel.java index def652889247..edf4507a2cb2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ServiceLevel.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ServiceLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequest.java index f74ba7f5a1f1..1afe218e68b8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequestOrBuilder.java index 6831bdc7492c..f6863a703ef0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponse.java index 628a96c255b5..8250f2f176ae 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponseOrBuilder.java index 2c1b2c978de9..300c10cf031b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubmitUserDeletionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilter.java index be5d0750bd3a..cb16c81de9e9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClause.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClause.java index 6989cda1b59b..83aa4714e3ab 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClause.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClause.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClauseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClauseOrBuilder.java index ef2a7e45a78c..e0459ef633ef 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClauseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterClauseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterCondition.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterCondition.java index 0cae6ce180c0..64a5d61e83b9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterCondition.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterCondition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterConditionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterConditionOrBuilder.java index 8f903fc86d31..18d501dc0ffc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterConditionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterConditionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpression.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpression.java index 17f63fae3fe9..2f75b76b42e0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpression.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionList.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionList.java index d15db5b739d3..4cb82bcafd44 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionList.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionListOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionListOrBuilder.java index adb3c1b23092..41f38ad57c35 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionListOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionOrBuilder.java index 6f063cf56833..4618a2feb56f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterName.java index 93289ce152c0..339fbf402072 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterOrBuilder.java index 70aa57fb19f2..b70e18296e33 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterProto.java index 14501350b4ac..3e48171b9e0e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertyEventFilterProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfig.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfig.java index d929ff5aa9d5..9caa0e310267 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfig.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigName.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigName.java index 33c3d3e99671..5a9bf502be8c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigOrBuilder.java index 1049ea00224f..c5e3f274a433 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/SubpropertySyncConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequest.java index 9a2bc89fcb69..14b14a69e5b4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequestOrBuilder.java index f5a455d5b1f7..a6f366cf6a2d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccessBindingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequest.java index 0e059e4972f6..ce5671580ae6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequestOrBuilder.java index 65a478202d86..82d79623477e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAccountRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequest.java index b43bcd97406f..ea6b00654c2f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequestOrBuilder.java index 1bbeff6558a3..6164fcf35eda 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAttributionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequest.java index 76f7f9bca7b9..0a56699d66b9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequestOrBuilder.java index 78e98cdc3316..1acb2beb159f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateAudienceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequest.java index 29eb43d41745..6062c8133b71 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequestOrBuilder.java index f882a8dc0518..0455cc861f9c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateBigQueryLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequest.java index 7330ab6a8467..18052f9acc46 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequestOrBuilder.java index 173029822d54..17ba0ad8cc2d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCalculatedMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequest.java index 3cc633ccf13a..66c599ea7688 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequestOrBuilder.java index 4b3c7711c92c..30553a9da6e6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateChannelGroupRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequest.java index 22fd0d071bea..553d94196db6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequestOrBuilder.java index 63f58cc20fba..aed329eabf07 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequest.java index 538667486ce0..e5ad813e042a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequestOrBuilder.java index 318bde556f4d..492ba357826e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequest.java index 39c71dc2b759..a153b1158f10 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequestOrBuilder.java index 3d36ef399a43..8d95dd6636c3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequest.java index 5dce9d10be51..3cec9140b037 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequestOrBuilder.java index 2009ed2f2d3e..19b746995ebc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRedactionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequest.java index f43226a8c75b..e401c3a3175d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequestOrBuilder.java index 37aba6456373..7c227bdc9de6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataRetentionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequest.java index f015643662fc..4809df610e9c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequestOrBuilder.java index 94f9b7970422..c3af2621b89a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequest.java index 3bd7e86cb05f..15c63d3b3569 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequestOrBuilder.java index b01368862c09..89b25703ba32 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateDisplayVideo360AdvertiserLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequest.java index b8a693c70a98..939d72d8d7cf 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequestOrBuilder.java index 0dd524a30fce..5f32c81b5b4e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEnhancedMeasurementSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequest.java index c4365a2bba84..0bff035f27c5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequestOrBuilder.java index d69495e807f2..fce6ad2bd57e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventCreateRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequest.java index 354056729be8..72058405a2da 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequestOrBuilder.java index d64324f9d1b5..88d18f15ec82 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateEventEditRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequest.java index 8dc12a0d5f05..321c918cb958 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequestOrBuilder.java index 8215a4dcb875..cda937fd34c9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateExpandedDataSetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequest.java index a38fad6b8b22..4b0923e41b4a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequestOrBuilder.java index 9cd5a2f5e9a3..6d1ef1d1d4e6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleAdsLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequest.java index dd125d7b943b..21bc1fb55b23 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequestOrBuilder.java index 2a44873bcd89..523e058fdbac 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateGoogleSignalsSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequest.java index 421ec24123e1..7836ec6e2f0b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequestOrBuilder.java index 4e732bef792f..d8fb08802ed7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequest.java index 529f0f416532..fb16e31cbc7a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequestOrBuilder.java index 8f4c89f1431f..0a80ce3d48b6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequest.java index 29d5b388e8bf..9fcdb6bf36ce 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequestOrBuilder.java index 65c643c92f02..0c78fad8ce6f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdatePropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequest.java index 7218721c903d..85c495a5e3e2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequestOrBuilder.java index dee2ee1716f8..f5c6bc6a28ed 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingDataAnnotationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequest.java index 49b35f64a0e1..39547bb50e2f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequestOrBuilder.java index 730da935dce1..9255ac94ae4a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSKAdNetworkConversionValueSchemaRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequest.java index 1c11a5c05a9c..2039e418dd1e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequestOrBuilder.java index 0049eab00e65..162f987fc859 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSearchAds360LinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequest.java index 785f1dc2fe3c..2cd31ec46dcb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequestOrBuilder.java index c3cdbe9f12cf..2237c8bf26be 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertyEventFilterRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequest.java index f4e635ea09fe..7e39a7d305b7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequestOrBuilder.java index 9cdf6d19db8c..2ee59b58d526 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateSubpropertySyncConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/pom.xml b/java-analytics-admin/proto-google-analytics-admin-v1beta/pom.xml index 0c4485bbe849..0941558c6ea6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/pom.xml +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-analytics-admin-v1beta - 0.91.0-SNAPSHOT + 0.92.0 proto-google-analytics-admin-v1beta Proto library for google-analytics-admin com.google.analytics google-analytics-admin-parent - 0.91.0-SNAPSHOT + 0.92.0 diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilter.java index da5b6cac1077..b8ee77df062d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilterOrBuilder.java index 4f8394461f04..40b7bec1d841 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessBetweenFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRange.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRange.java index 2c550027bf65..b8f172a9162d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRange.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRangeOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRangeOrBuilder.java index a6e9f981c335..7188e7a308c5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRangeOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDateRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimension.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimension.java index 0b0c5fbcbf67..f34fe0f945be 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimension.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeader.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeader.java index fc3822c7c01d..e190bef531be 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeader.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeaderOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeaderOrBuilder.java index 6e169082b835..9f70f1993fae 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeaderOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionOrBuilder.java index 0b5f061f8cfe..d3b1a032cc30 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValue.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValue.java index 410c77559532..54a2d498e014 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValueOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValueOrBuilder.java index 346d52478aaa..405eac7b6ff8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValueOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessDimensionValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilter.java index 611caafaa887..dba9a1d8ed70 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpression.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpression.java index 05ea3e20474f..43b78ef51aee 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpression.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionList.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionList.java index e059872b704e..c4cf5888038c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionList.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionListOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionListOrBuilder.java index 3c3a7cf6f29b..e95a11ad3c60 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionListOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionOrBuilder.java index 57b04894e5ce..9ddacf119708 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterOrBuilder.java index b4219d85d2c9..ce91c112ff50 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilter.java index 76420a8adeab..110f0b3fb6fa 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilterOrBuilder.java index d9f237340d27..de99a1e24a21 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessInListFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetric.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetric.java index a142a55b0870..d7dda0dc44ca 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetric.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeader.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeader.java index fff1218bb7e6..fe500463da4a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeader.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeaderOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeaderOrBuilder.java index 150cf06024d7..40ef4c2d8819 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeaderOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricOrBuilder.java index 22d44355a483..861cea842249 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValue.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValue.java index be613e4c7dda..b1c5d58ad6ac 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValueOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValueOrBuilder.java index 282e6c120695..d3518736ee53 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValueOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessMetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilter.java index 19e08b31504a..9aa3e0689a1c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilterOrBuilder.java index bf882647cf22..0f72cc5a05ec 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessNumericFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderBy.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderBy.java index b8205d865a48..599ebf41d48c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderBy.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderBy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderByOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderByOrBuilder.java index 24400da2285e..6131df2e9dd6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderByOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessOrderByOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuota.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuota.java index 94d9173b7997..cf25fd6b51d7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuota.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuota.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaOrBuilder.java index 772c8f3c628d..08b38409e142 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatus.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatus.java index e239bd28df19..0c0857eaf6f0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatus.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatusOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatusOrBuilder.java index 326b73320319..6623e1c93a94 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatusOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessQuotaStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessReportProto.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessReportProto.java index b955671ac38a..5f032d9e91f3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessReportProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessReportProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRow.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRow.java index 4f96bba93a74..1abf5a116e27 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRow.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRowOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRowOrBuilder.java index 348f8eb0815d..32e32c7955ca 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRowOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilter.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilter.java index a4c01c11f6bf..01a23c82a871 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilter.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilterOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilterOrBuilder.java index 2d83e1ccb303..444c6c00dbc8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilterOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccessStringFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java index f5ecb67da3cd..d3839589f439 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountName.java index 49021ce7135d..d83f25986b6d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java index bf8811cef08f..089c73cb1007 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java index 6e77500b3eb6..c03c6f5122ec 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java index a2d46130a36e..1f140a99da08 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequest.java index 504ea83a600e..dc4f2cdf0c90 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequestOrBuilder.java index 95f4eb665f73..5e98f96d9825 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponse.java index 19218728a34d..3d0633ed103c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponseOrBuilder.java index 824d3f1219df..9045fef8658f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AcknowledgeUserDataCollectionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActionType.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActionType.java index c90584aa10d2..f2016e0eabdb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActionType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActorType.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActorType.java index c66be1d70dfc..465d82d99990 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActorType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ActorType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java index 753c51fc07f8..b23b1f336e11 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequest.java index 942a954026a7..83808e6c4f87 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequestOrBuilder.java index 7106a2937009..a97014052f17 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequest.java index 76906bef7af4..74f226158751 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequestOrBuilder.java index a18913417154..8ecb7971ee92 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ArchiveCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChange.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChange.java index ed99ca628875..b779975c5d2e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChange.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChangeOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChangeOrBuilder.java index e48fe308b25c..d4bc7eda6c7f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChangeOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryChangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEvent.java index a22b6f390a8e..c762c1470d7c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEvent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEventOrBuilder.java index 84dd7c421d19..0517640b1709 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEventOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryResourceType.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryResourceType.java index c82a514efc32..80fb1f5c04fb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryResourceType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ChangeHistoryResourceType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java index 634357666e90..d65cc4e65bbe 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventName.java index c1bb37250107..a111132ea17a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java index 77db32909cf4..c90321c47537 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequest.java index 26f84cfadc7f..700dabdafd17 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequestOrBuilder.java index 7766e3a569a9..fe1d4a8bb527 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequest.java index d8746a599537..62d8e75f2a3d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequestOrBuilder.java index c789f11ac06c..a256b6de38e3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequest.java index 181aaada4730..831a19b8c7a1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequestOrBuilder.java index 6ff0837a7d83..48929931714a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequest.java index 1f714aaa8693..00bd7793ea93 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequestOrBuilder.java index afa4c77c9e51..9ea4d9ec4250 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequest.java index 203a350ed8bd..52608ab38309 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequestOrBuilder.java index 9cb92810c4c6..b7678d1d2a01 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateFirebaseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequest.java index f464112f867d..e1fbc7e7ef09 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequestOrBuilder.java index 2aeb9ad540e0..bf879fac928c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateGoogleAdsLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequest.java index aea21df04e76..1711c600a3c5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequestOrBuilder.java index 617396bbcf88..b0972845dd55 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequest.java index a1df80895493..78e26c757b3a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequestOrBuilder.java index fd61f46c26aa..199e2874e949 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreateMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequest.java index f0b3bec35760..0e2b92ec60f8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequestOrBuilder.java index 5b5791ae171e..eb7681b64acc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CreatePropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java index 0a33ec2fc3a2..ad49e8211e73 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionName.java index f51c6cbb2a7f..5c3ee2861dcb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java index b8138f4fe5a4..3ba0dee0cec0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java index 1e3a3a7bee7d..aefdfb7919b3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricName.java index 91eaed4861fa..e5b59908606d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java index 2b096516e96a..06cb95ebb39c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java index 652382d87b6a..d04271034f26 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsName.java index 9c0fc8741bab..412aaccdaa55 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java index b743efd28afb..275a46142ddb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java index 5402fa124544..befb97c1ebe4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsName.java index a832e0d55e0b..55e53564fcb9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java index beb70a72d96b..c9b59aeb7108 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java index 9a1abfc8021f..6c187ec8f8f6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamName.java index 50a052ad8536..bb150de49847 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java index adaaaa23df0e..ebdf42352160 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequest.java index df854fda1903..48742f7f1f0e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequestOrBuilder.java index 536910e8f19e..de2685df0796 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteAccountRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequest.java index 090b2fa88072..df84bdfead2b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequestOrBuilder.java index cd23f8421d32..404251d17099 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequest.java index 9aa5621ac8e4..f307972d8ff1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequestOrBuilder.java index 5fcff7c82697..7525929d651b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequest.java index 7ec51bcba6a7..42926bd18cc6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequestOrBuilder.java index 1c2c82fdef07..39505c884a2c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteFirebaseLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequest.java index fda899fb384f..541a57b3a056 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequestOrBuilder.java index 897f74083a37..eacddeecad93 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteGoogleAdsLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequest.java index 753b6685b535..e10c62ed78de 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequestOrBuilder.java index 8cdc7b02e652..665f7b006cb2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequest.java index dc85680afd3b..66b5835c791a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequestOrBuilder.java index 4f5282fd7297..bf1c2156a777 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeleteMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequest.java index a98785dbe5e4..d878aa8f69d3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequestOrBuilder.java index 3f9e2af64617..729ad414b54e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DeletePropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java index 3edd52ca78fa..9bd2302f3b03 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkName.java index 67d4b9e12340..4c164502ff75 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java index 00a73e04722b..3e876713049d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequest.java index dc0d56f058f0..805211e6a9ae 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequestOrBuilder.java index 3ed21ea5c948..0c74ef5ff837 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetAccountRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequest.java index 98cb208f1cd2..63d9b3ad43e3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequestOrBuilder.java index 1f782eecc201..97cb282aab72 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequest.java index 5d1df8a3d6d7..c67696c1606d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequestOrBuilder.java index 214542c826b1..663f22349a96 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequest.java index e42b97476d9b..9cfba6f55f76 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequestOrBuilder.java index 0a996be7b360..10284a9ffae4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequest.java index 8740a232cdf5..a66efc050d82 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequestOrBuilder.java index 3cda85477c18..8b5bf6a1a49b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataRetentionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequest.java index d9afcd6e204d..afdee3a6be4e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequestOrBuilder.java index d85652521a74..f58f055815f3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataSharingSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequest.java index 20a88a4842b6..25b63ab39753 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequestOrBuilder.java index 885ecf98330f..484117d0410e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequest.java index 0f79878a7ded..eb9c02c082b4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequestOrBuilder.java index da11214751d0..bc8bf33dc291 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequest.java index 74e855634f2c..a8645358c4e1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequestOrBuilder.java index f6cdef6af272..4675ec637dd0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequest.java index 2d5b0389bd97..3d533da587bd 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequestOrBuilder.java index aaded5455238..10ebdfd9c564 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GetPropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java index 9e09b78102de..5c7129d3e031 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkName.java index 9063268d5f97..e7c4420edab1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java index 3ef826dc4821..6d0beb3a8a22 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/IndustryCategory.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/IndustryCategory.java index 56706a4bde75..d185625941ac 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/IndustryCategory.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/IndustryCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEvent.java index 3c99dacf95be..9b4db6f1a6f6 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEvent.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventName.java index 31bec405cebf..4528d4a1e8f7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventOrBuilder.java index b1bf077f6bcb..3cd5f8cfcc6f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/KeyEventOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java index a38b007932f1..0bf0e5535aa4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java index 88643c4d59d9..fab0394f126f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponse.java index 2d8146df3a6c..7705b5f26262 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponseOrBuilder.java index 8f623870c537..fb8058278c52 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java index 66d3bcedf1f1..036f424a7a12 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java index c5d50b8bcf28..b5d940b0684d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponse.java index 75c6427d4d45..7036c79d7577 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponseOrBuilder.java index 3dcb336233b5..1173e4bbce98 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java index a2b30b09b986..1a9485234d25 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java index 6e4e0e09826d..13fbe22b4f5a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponse.java index e4a5dcadd51b..0c73bf489ad2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponseOrBuilder.java index 9d9216704a99..5f171c7ea2c5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java index 657da12876b8..98104bb77342 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java index 07207821c70d..da71968f47da 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponse.java index c22200e44160..6bdcff4c40e9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponseOrBuilder.java index 63f8602840b9..d746eebc5e29 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequest.java index 79e376367973..88fbb5a26c71 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequestOrBuilder.java index 345d0b59c326..3e8598d11e8f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponse.java index 1c5b5c118dc9..b2e6a9864f9d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponseOrBuilder.java index 25cc20e7e055..4457514d2316 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomMetricsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequest.java index 54d739f5add5..18ba2e2ecac3 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequestOrBuilder.java index 81e9bae489f5..668c565ae9eb 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponse.java index 2e2f0fed6abc..aadbe91039e5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponseOrBuilder.java index dbf30a22107d..7b0508c2cc51 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListDataStreamsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java index ef790bfc3671..0bba96a459ed 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java index 5c15ad72ea82..a1b5365c9b18 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponse.java index 6fe96506c0dc..6bad8eebf459 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponseOrBuilder.java index 70699c52ab16..bb1f6877c289 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java index 857c3bfb23f2..0fb23c79f472 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java index e0c2f1d1ccd0..061b7a3f045f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponse.java index 01864a08ab84..2478a157f20e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponseOrBuilder.java index ee13aedb7106..2647cc0116af 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java index 868ecdf81d04..42000ba7fa9c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java index 4fb41f3d09e5..2529404123cc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponse.java index 6996139b7b22..eacb16f9137f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponseOrBuilder.java index a6e44b5c29ba..ed83ba215fd4 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java index a27a91d030b7..3476402081a1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java index 0305680b082d..9c7d411b9fd0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponse.java index c84fb849a569..3c215e788f5f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponseOrBuilder.java index f8af0f38080d..4e6560ff6d1d 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java index b64f15b0591b..5dd50b29de28 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java index 9413889364ec..bcdaa9217597 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponse.java index 1bc501549d48..89164e48c0fc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponseOrBuilder.java index c6bb0468ffa7..7613cd49d8c7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java index 69890c2d67e5..9b4ba18ff26e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretName.java index 0ae84c8a1630..3a8213cbe54b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java index e6a37c8bf950..397df6e99d84 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValue.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValue.java index 5bee1f648b55..8a3932dd71c5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValue.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValueOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValueOrBuilder.java index 4f590298cd84..2dda4c964ea8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValueOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/NumericValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java index 2460e60a80e5..3550fc679c5a 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyName.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyName.java index 59d33b14b1c9..370d143d8016 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyName.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java index 4ccd04110c85..4510b7486fe5 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java index 9538773a4c92..d26bd1934c0b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java index e5b0138347bf..7e1fa05d70c0 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyType.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyType.java index 928f15975e42..e09b84de6174 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyType.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequest.java index 738a8fbe6d48..d80dd79dc0d7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequestOrBuilder.java index 01eec90f64a4..af0d90d14b25 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponse.java index 9db3f1fb3845..276da3c26172 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponseOrBuilder.java index 115c7f64d900..3c91ad7f8823 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ProvisionAccountTicketResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java index 2f06bb92a93e..c3b9cf060ff1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequest.java index ebb027937a88..d2b84484add7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequestOrBuilder.java index 3b1120ed3780..436237d89329 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponse.java index 9ccb3606bd8e..b0b371e0edf1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponseOrBuilder.java index d6cf24b5d1d5..99b19717b077 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/RunAccessReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequest.java index 07934911f868..0ab4ea31ac63 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequestOrBuilder.java index fc4e14052cdd..9e4c5c553a07 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponse.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponse.java index 7a075ad7a9b5..c8af0e817f7b 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponse.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponseOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponseOrBuilder.java index 426c8a085c13..7e4495661020 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponseOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/SearchChangeHistoryEventsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ServiceLevel.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ServiceLevel.java index 73af6dac9ad2..8269111410c9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ServiceLevel.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ServiceLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequest.java index b23b4aff1aec..683beeaac765 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequestOrBuilder.java index 59db80319371..7600c3b7833c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateAccountRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequest.java index 63945bad71ca..a83728697d89 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequestOrBuilder.java index 9126720286dd..9d4050f38ea9 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateConversionEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequest.java index 63caff9f2c7d..846ebff8d203 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequestOrBuilder.java index 4e707b73be3f..a74275ee7100 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomDimensionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequest.java index af792c031669..89ad4d8b3a3c 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequestOrBuilder.java index 2c4ae23e410a..290020ba06d8 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateCustomMetricRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequest.java index 7d33bcb2e3c2..9ff5e70ed825 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequestOrBuilder.java index e7a699088844..389ebbaa902f 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataRetentionSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequest.java index 530f04e317a0..63dde88e4af7 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequestOrBuilder.java index ece923f28bd4..a10c92684138 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateDataStreamRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequest.java index 32d753563ba1..829f05d2e611 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequestOrBuilder.java index e040156764e8..9ce023c0d1f2 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateGoogleAdsLinkRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequest.java index e3ad7cb8e331..8a90a1f62366 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequestOrBuilder.java index 9c5e9d2576a9..cd6ddeddd3c1 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateKeyEventRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequest.java index ba71df64b0ae..9420b0975859 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequestOrBuilder.java index dc68cb1ad005..078d384cd79e 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdateMeasurementProtocolSecretRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequest.java index 984d0e321c7a..8c4fc2cab1ee 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequest.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequestOrBuilder.java index c331802fb284..0c74ca1667dc 100644 --- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequestOrBuilder.java +++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/UpdatePropertyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java index acba1dc295a7..4a9044c2d4f2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java index a3fc53812be5..77c1aef47d72 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/AsyncApproveDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/AsyncApproveDisplayVideo360AdvertiserLinkProposal.java index 66cce373a147..7c3494f0cdb1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/AsyncApproveDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/AsyncApproveDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/SyncApproveDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/SyncApproveDisplayVideo360AdvertiserLinkProposal.java index 30f5bc95f1c1..a1e8b569bd05 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/SyncApproveDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/approvedisplayvideo360advertiserlinkproposal/SyncApproveDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/AsyncArchiveAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/AsyncArchiveAudience.java index e8e32413cb5b..317e4cf0066c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/AsyncArchiveAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/AsyncArchiveAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/SyncArchiveAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/SyncArchiveAudience.java index 98817f80ef1b..9e2eb6a07f7c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/SyncArchiveAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archiveaudience/SyncArchiveAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java index 8b13804d672a..0767b3cbb215 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java index 2b4a6a47a07a..e9167f8c9091 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java index 3b7f41bb7c8d..3670cc833624 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java index 2c46cd27a766..f24ec3206bd5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java index 5fc860c1bcdf..bd5151d957c4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java index 8eb5c86c079f..acd21c1f800a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java index f3d2de132062..a2ffed0ea622 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java index fd97df47c008..c6fdc7cf8f9d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/AsyncBatchCreateAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/AsyncBatchCreateAccessBindings.java index 88a362b4a2b5..4ef71a12d711 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/AsyncBatchCreateAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/AsyncBatchCreateAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/SyncBatchCreateAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/SyncBatchCreateAccessBindings.java index 8aa66c7bb6ea..f04d198e9c55 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/SyncBatchCreateAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchcreateaccessbindings/SyncBatchCreateAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/AsyncBatchDeleteAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/AsyncBatchDeleteAccessBindings.java index b277f206fe75..6f113d8bdb0b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/AsyncBatchDeleteAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/AsyncBatchDeleteAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/SyncBatchDeleteAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/SyncBatchDeleteAccessBindings.java index a27fe076d42f..b683e68e3318 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/SyncBatchDeleteAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchdeleteaccessbindings/SyncBatchDeleteAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/AsyncBatchGetAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/AsyncBatchGetAccessBindings.java index f6c0c678f3e8..1058930d45dd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/AsyncBatchGetAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/AsyncBatchGetAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/SyncBatchGetAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/SyncBatchGetAccessBindings.java index 711da030bef1..c05f1541fca8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/SyncBatchGetAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchgetaccessbindings/SyncBatchGetAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/AsyncBatchUpdateAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/AsyncBatchUpdateAccessBindings.java index c423cab3fb1c..09d5445c89f5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/AsyncBatchUpdateAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/AsyncBatchUpdateAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/SyncBatchUpdateAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/SyncBatchUpdateAccessBindings.java index 27d4e3020763..85614b43d1eb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/SyncBatchUpdateAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/batchupdateaccessbindings/SyncBatchUpdateAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/AsyncCancelDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/AsyncCancelDisplayVideo360AdvertiserLinkProposal.java index c55210ca6075..395dbfc2fceb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/AsyncCancelDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/AsyncCancelDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/SyncCancelDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/SyncCancelDisplayVideo360AdvertiserLinkProposal.java index dfed2b93b756..2780269690ad 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/SyncCancelDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/canceldisplayvideo360advertiserlinkproposal/SyncCancelDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java index 806a301e1787..cd345c051570 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetEndpoint.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetEndpoint.java index 9a1395493b41..108d2cca1c36 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetEndpoint.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java index e65b31fda96c..eede07b1f47f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/AsyncCreateAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/AsyncCreateAccessBinding.java index 74d9e28df2ac..4cb796a1571b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/AsyncCreateAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/AsyncCreateAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBinding.java index 7eacc92821a8..3f925cb21176 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingAccountnameAccessbinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingAccountnameAccessbinding.java index 046c2e8364bd..564af8d66696 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingAccountnameAccessbinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingAccountnameAccessbinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingPropertynameAccessbinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingPropertynameAccessbinding.java index d4569370659c..124ea4db0eeb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingPropertynameAccessbinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingPropertynameAccessbinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingStringAccessbinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingStringAccessbinding.java index ecfc22907f72..f33f0a582d5b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingStringAccessbinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaccessbinding/SyncCreateAccessBindingStringAccessbinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/AsyncCreateAdSenseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/AsyncCreateAdSenseLink.java index 366cd7d1eb1a..064bf9a3a039 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/AsyncCreateAdSenseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/AsyncCreateAdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLink.java index 6f18c060d04b..a7922ecfe76d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkPropertynameAdsenselink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkPropertynameAdsenselink.java index 684ee3b94f21..bc7cab6dae5d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkPropertynameAdsenselink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkPropertynameAdsenselink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkStringAdsenselink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkStringAdsenselink.java index da35b59272f6..fb4a7283a9f8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkStringAdsenselink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createadsenselink/SyncCreateAdSenseLinkStringAdsenselink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/AsyncCreateAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/AsyncCreateAudience.java index 09bf427507fe..952d06be9a01 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/AsyncCreateAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/AsyncCreateAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudience.java index 314fc7682023..6f9385ddd559 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudiencePropertynameAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudiencePropertynameAudience.java index 54edcfdec49a..ba35f00fe84b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudiencePropertynameAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudiencePropertynameAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudienceStringAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudienceStringAudience.java index a447fe647470..4b6d348e424d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudienceStringAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createaudience/SyncCreateAudienceStringAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/AsyncCreateBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/AsyncCreateBigQueryLink.java index ab6850537ec8..83502406d394 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/AsyncCreateBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/AsyncCreateBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLink.java index f5cd431e14ed..5429d823b362 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkPropertynameBigquerylink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkPropertynameBigquerylink.java index ad700f59c5fe..2c60c0fa80b8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkPropertynameBigquerylink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkPropertynameBigquerylink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkStringBigquerylink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkStringBigquerylink.java index 9b96d99e5d44..a2ff1c231ef8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkStringBigquerylink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createbigquerylink/SyncCreateBigQueryLinkStringBigquerylink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/AsyncCreateCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/AsyncCreateCalculatedMetric.java index 9bf79cfba77b..1d936edb4cf5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/AsyncCreateCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/AsyncCreateCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetric.java index e10a2f938d4f..7f8fe31e11ab 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricPropertynameCalculatedmetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricPropertynameCalculatedmetricString.java index cc4d15faf5b7..20f0cac6ad02 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricPropertynameCalculatedmetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricPropertynameCalculatedmetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricStringCalculatedmetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricStringCalculatedmetricString.java index d0ab259e97a6..124a0f7628b7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricStringCalculatedmetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcalculatedmetric/SyncCreateCalculatedMetricStringCalculatedmetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/AsyncCreateChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/AsyncCreateChannelGroup.java index d5542d751416..6e11661d360d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/AsyncCreateChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/AsyncCreateChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroup.java index b531237fe301..d247f3641bee 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupPropertynameChannelgroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupPropertynameChannelgroup.java index ed4339c2d03e..f98c38530c1f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupPropertynameChannelgroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupPropertynameChannelgroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupStringChannelgroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupStringChannelgroup.java index 6ac5b6ef59a0..29b2f387c1d7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupStringChannelgroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createchannelgroup/SyncCreateChannelGroupStringChannelgroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java index a8c0fad504ee..8c0c189eb45d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java index 3d9af1503710..146d4338ea11 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java index 44d418035796..468c5216d674 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java index bb93403e020b..3fac313009cc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java index fddf057d71a5..94150a87cf3d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java index 52ffd959e3cc..1c52ce9506d8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java index e2e93d28b4d2..9ac7efb0099e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java index 9b0e26df0e1d..58026dac2eee 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java index 2715e43d07cf..7ea21b06eabf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java index ca7d513f9cf5..be3c22f10e30 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java index a98e00863ff7..f555521d1ac3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java index 844ed2c05dd9..34279ae48d0e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/AsyncCreateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/AsyncCreateDataStream.java index 89718ac64f49..e4bd7cf12f10 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/AsyncCreateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/AsyncCreateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStream.java index 43edb95b1125..43c6b77e5d0b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java index cc0359398028..e5315223ebb5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java index 6d6299dcd6d9..f70e3dc85846 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/AsyncCreateDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/AsyncCreateDisplayVideo360AdvertiserLink.java index 3dc9951be20c..235dc3d22244 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/AsyncCreateDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/AsyncCreateDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLink.java index cc698c385310..ecb55c540213 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkPropertynameDisplayvideo360Advertiserlink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkPropertynameDisplayvideo360Advertiserlink.java index 92c705e8984d..7a87bae84556 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkPropertynameDisplayvideo360Advertiserlink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkPropertynameDisplayvideo360Advertiserlink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkStringDisplayvideo360Advertiserlink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkStringDisplayvideo360Advertiserlink.java index 40f5d013a53a..01b4364f289a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkStringDisplayvideo360Advertiserlink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlink/SyncCreateDisplayVideo360AdvertiserLinkStringDisplayvideo360Advertiserlink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/AsyncCreateDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/AsyncCreateDisplayVideo360AdvertiserLinkProposal.java index 252e5d681394..7f3dd1ea8730 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/AsyncCreateDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/AsyncCreateDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposal.java index 1e27288cdf49..057eb1988a45 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalPropertynameDisplayvideo360Advertiserlinkproposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalPropertynameDisplayvideo360Advertiserlinkproposal.java index 59445ea45876..9d44687bc4fc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalPropertynameDisplayvideo360Advertiserlinkproposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalPropertynameDisplayvideo360Advertiserlinkproposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalStringDisplayvideo360Advertiserlinkproposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalStringDisplayvideo360Advertiserlinkproposal.java index 5a87b4bf4c9f..d191f374abbc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalStringDisplayvideo360Advertiserlinkproposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createdisplayvideo360advertiserlinkproposal/SyncCreateDisplayVideo360AdvertiserLinkProposalStringDisplayvideo360Advertiserlinkproposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/AsyncCreateEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/AsyncCreateEventCreateRule.java index c7457dfdec93..c87937d2c946 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/AsyncCreateEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/AsyncCreateEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRule.java index 9f7d5c753acb..4ced5b8bcacd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleDatastreamnameEventcreaterule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleDatastreamnameEventcreaterule.java index 6ad114338c5a..2f4d673ea66c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleDatastreamnameEventcreaterule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleDatastreamnameEventcreaterule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleStringEventcreaterule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleStringEventcreaterule.java index 710eb2f91a31..e3bdfb4d2a73 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleStringEventcreaterule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventcreaterule/SyncCreateEventCreateRuleStringEventcreaterule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/AsyncCreateEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/AsyncCreateEventEditRule.java index bc32fc4f5b4a..f0f7098075b5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/AsyncCreateEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/AsyncCreateEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRule.java index 41b1d1db5fc0..7120bd6e991a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleDatastreamnameEventeditrule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleDatastreamnameEventeditrule.java index 0a9258f4fb4a..ecbeda39f2ba 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleDatastreamnameEventeditrule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleDatastreamnameEventeditrule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleStringEventeditrule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleStringEventeditrule.java index 337addec5eb9..5986831a5d0f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleStringEventeditrule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createeventeditrule/SyncCreateEventEditRuleStringEventeditrule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/AsyncCreateExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/AsyncCreateExpandedDataSet.java index b36a458f6bc3..5125e9b21384 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/AsyncCreateExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/AsyncCreateExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSet.java index 18e14b8e0578..eb5f52199df8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetPropertynameExpandeddataset.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetPropertynameExpandeddataset.java index ae97f9ec5da9..ffea1ef76fa1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetPropertynameExpandeddataset.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetPropertynameExpandeddataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetStringExpandeddataset.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetStringExpandeddataset.java index dffb5629536b..95c271a72799 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetStringExpandeddataset.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createexpandeddataset/SyncCreateExpandedDataSetStringExpandeddataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java index 6dcd7ca527ca..ba10bd9fa764 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java index 32d7d764e4eb..124e86412495 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java index 924c02d750c6..b25378f5c25a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java index 1cc0e99c299f..36b82edaad3a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java index fa54b01f7593..d2728c9c8345 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java index 3e564326b8f4..f48dbacecd46 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java index d048b90c4199..4a5b0ff8a855 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java index 59cb58b999ad..cce4dfdcb69b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java index bd2b0b739d29..e5103d1a5495 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java index a3c1a4577b40..322035166f70 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java index 2de9eab6e2bd..6cae9f20ebee 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java index 74b6072d2a50..eaad27600ee7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java index bc7c17193ae4..2fc973ac3f26 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java index 78b2381570f7..72d0e3811347 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java index 38cb3f312516..125951d982f7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java index b0f9729a7705..c9541281def2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/AsyncCreateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/AsyncCreateProperty.java index 38f0a723008e..55f47ce19e87 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/AsyncCreateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/AsyncCreateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreateProperty.java index b9a2fdc34304..9fdb57dd922d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java index 79df70c92f7a..10b736216b60 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/AsyncCreateReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/AsyncCreateReportingDataAnnotation.java index ef5ef8cb7b36..3af2c3d597e2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/AsyncCreateReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/AsyncCreateReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotation.java index fd977ebf5036..1f92894d660c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationPropertynameReportingdataannotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationPropertynameReportingdataannotation.java index a4fd9f912ccf..8335202036ed 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationPropertynameReportingdataannotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationPropertynameReportingdataannotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationStringReportingdataannotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationStringReportingdataannotation.java index 424609afd4b5..4f9ba0dc757d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationStringReportingdataannotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createreportingdataannotation/SyncCreateReportingDataAnnotationStringReportingdataannotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/AsyncCreateRollupProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/AsyncCreateRollupProperty.java index 4acae6f5dc33..973786501a51 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/AsyncCreateRollupProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/AsyncCreateRollupProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/SyncCreateRollupProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/SyncCreateRollupProperty.java index 2924d973c1eb..13b3f89aecee 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/SyncCreateRollupProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrollupproperty/SyncCreateRollupProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/AsyncCreateRollupPropertySourceLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/AsyncCreateRollupPropertySourceLink.java index 1b1aab3e3199..1eaee95a42f5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/AsyncCreateRollupPropertySourceLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/AsyncCreateRollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLink.java index c5f194cd3d48..04cde0c31d61 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkPropertynameRolluppropertysourcelink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkPropertynameRolluppropertysourcelink.java index 534399e498b8..00fea277cbde 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkPropertynameRolluppropertysourcelink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkPropertynameRolluppropertysourcelink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkStringRolluppropertysourcelink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkStringRolluppropertysourcelink.java index cde58b5b0790..290acb545a6f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkStringRolluppropertysourcelink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createrolluppropertysourcelink/SyncCreateRollupPropertySourceLinkStringRolluppropertysourcelink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/AsyncCreateSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/AsyncCreateSearchAds360Link.java index 67c5a76b3d27..a4e03fde18da 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/AsyncCreateSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/AsyncCreateSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360Link.java index cc2f60d37c8e..34b65acabeb2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkPropertynameSearchads360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkPropertynameSearchads360Link.java index 2d6678b964e3..9fc8bb0ee6c3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkPropertynameSearchads360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkPropertynameSearchads360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkStringSearchads360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkStringSearchads360Link.java index 9ac561161a3d..af6417bd3b4d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkStringSearchads360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsearchads360link/SyncCreateSearchAds360LinkStringSearchads360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/AsyncCreateSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/AsyncCreateSKAdNetworkConversionValueSchema.java index e894adf4796b..fd1bbb05672f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/AsyncCreateSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/AsyncCreateSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchema.java index cce7afb7a9bc..cd69efd61aac 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaDatastreamnameSkadnetworkconversionvalueschema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaDatastreamnameSkadnetworkconversionvalueschema.java index 5e2ef561b156..a8a79f06908b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaDatastreamnameSkadnetworkconversionvalueschema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaDatastreamnameSkadnetworkconversionvalueschema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaStringSkadnetworkconversionvalueschema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaStringSkadnetworkconversionvalueschema.java index eb39a5e88cc1..f1f03a3d803a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaStringSkadnetworkconversionvalueschema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createskadnetworkconversionvalueschema/SyncCreateSKAdNetworkConversionValueSchemaStringSkadnetworkconversionvalueschema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/AsyncCreateSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/AsyncCreateSubpropertyEventFilter.java index 66e8827d612e..b9311391e930 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/AsyncCreateSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/AsyncCreateSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilter.java index 3dedf77c6b56..649af9f313a1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterPropertynameSubpropertyeventfilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterPropertynameSubpropertyeventfilter.java index 828ff360d8bb..93ff8255b241 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterPropertynameSubpropertyeventfilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterPropertynameSubpropertyeventfilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterStringSubpropertyeventfilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterStringSubpropertyeventfilter.java index aa13e18acce2..350050555fd4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterStringSubpropertyeventfilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/createsubpropertyeventfilter/SyncCreateSubpropertyEventFilterStringSubpropertyeventfilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/AsyncDeleteAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/AsyncDeleteAccessBinding.java index 060bfe1ee71c..432bb76836bf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/AsyncDeleteAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/AsyncDeleteAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBinding.java index 39008faa747d..b94f87b02947 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingAccessbindingname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingAccessbindingname.java index 6206f144c02c..896648d16550 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingAccessbindingname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingAccessbindingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingString.java index b01a7f5f001c..54d1579d8be2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccessbinding/SyncDeleteAccessBindingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java index aa98b015b7ba..c0c1cb393e82 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccount.java index f33f1f7fa3a9..13fcda9ee62d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java index d852a8295ab3..c9140d54bf1b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java index 43641b02cf72..a062336c8e39 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/AsyncDeleteAdSenseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/AsyncDeleteAdSenseLink.java index d654f9f9afb8..834e2b803474 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/AsyncDeleteAdSenseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/AsyncDeleteAdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLink.java index c0c935c5a9fd..944da500495d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkAdsenselinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkAdsenselinkname.java index cb6e8666c2b2..33e79054956e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkAdsenselinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkAdsenselinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkString.java index 886defce48a0..b8524604e0c9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteadsenselink/SyncDeleteAdSenseLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/AsyncDeleteBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/AsyncDeleteBigQueryLink.java index 1781468e9267..d86d4a3ded31 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/AsyncDeleteBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/AsyncDeleteBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLink.java index adf1d0f4ced0..d422b1de527e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkBigquerylinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkBigquerylinkname.java index 339745aae8e7..897d41421130 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkBigquerylinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkBigquerylinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkString.java index 6a79d23e41a4..fafa8781be76 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletebigquerylink/SyncDeleteBigQueryLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/AsyncDeleteCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/AsyncDeleteCalculatedMetric.java index e9108ddfd2e7..2b0418f23524 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/AsyncDeleteCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/AsyncDeleteCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetric.java index 7ebf17aedd35..54ac037c072e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricCalculatedmetricname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricCalculatedmetricname.java index 1f5b7899105c..ff56507166e9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricCalculatedmetricname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricCalculatedmetricname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricString.java index d4fdd3a6e352..48273c2ccfcd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletecalculatedmetric/SyncDeleteCalculatedMetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/AsyncDeleteChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/AsyncDeleteChannelGroup.java index 60c22c9b1819..107ba32d9bc2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/AsyncDeleteChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/AsyncDeleteChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroup.java index 52a694afcce1..0dfa76380270 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupChannelgroupname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupChannelgroupname.java index 80b8e6e21b00..bff37e1910de 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupChannelgroupname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupChannelgroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupString.java index 4a16d1b674df..9ee7f2b3293f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletechannelgroup/SyncDeleteChannelGroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java index 18e854fa5c35..522a785f42da 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java index 799486e88256..8f606d7f6913 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java index 1d4a3271cbf4..34aac9af5e12 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java index 6a79f665dcbb..e3eb05f172b3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java index 334dae764fdb..0f0be5c67fa1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java index 4418422ade8f..8bfe03db0c5c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java index 5ed0b455eab6..a7d838ad4bc5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java index fbec6a2129a2..031dec9385f8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/AsyncDeleteDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/AsyncDeleteDisplayVideo360AdvertiserLink.java index 7cf7616bea62..a4036889dd12 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/AsyncDeleteDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/AsyncDeleteDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLink.java index a97a8a76ede8..6b01df610586 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java index f4e48df66671..337bb4758d00 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkString.java index ec57c3149114..9ebb05560c2d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlink/SyncDeleteDisplayVideo360AdvertiserLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/AsyncDeleteDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/AsyncDeleteDisplayVideo360AdvertiserLinkProposal.java index ad87b02bbfb0..4a2911e75553 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/AsyncDeleteDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/AsyncDeleteDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposal.java index 786bc0453154..4866d0c0e669 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java index 02a47e81cee1..0d267108b8d2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalString.java index 79134efc92f5..8020d480b189 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletedisplayvideo360advertiserlinkproposal/SyncDeleteDisplayVideo360AdvertiserLinkProposalString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/AsyncDeleteEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/AsyncDeleteEventCreateRule.java index 2c92af7674e2..fe40c0062e7d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/AsyncDeleteEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/AsyncDeleteEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRule.java index 2b7249075a1b..b13f26f66f30 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleEventcreaterulename.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleEventcreaterulename.java index 0f744d6a8733..a27695824752 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleEventcreaterulename.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleEventcreaterulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleString.java index 8aba3e7a4586..fae0d54c19aa 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventcreaterule/SyncDeleteEventCreateRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/AsyncDeleteEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/AsyncDeleteEventEditRule.java index 0f79bf91e358..531852378d04 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/AsyncDeleteEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/AsyncDeleteEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRule.java index 215745f1586e..4ca81029525f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleEventeditrulename.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleEventeditrulename.java index c19c2e83aef5..255f3778f52e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleEventeditrulename.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleEventeditrulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleString.java index abd94e5420c4..aea3a14794e9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteeventeditrule/SyncDeleteEventEditRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/AsyncDeleteExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/AsyncDeleteExpandedDataSet.java index 4351d5a0d7a2..cad34f06c037 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/AsyncDeleteExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/AsyncDeleteExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSet.java index b226e54ca42a..e72a26272b09 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetExpandeddatasetname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetExpandeddatasetname.java index 1fd835f6ec1f..06d65d6cf4ab 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetExpandeddatasetname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetExpandeddatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetString.java index 567749eb77bc..0a4c4255bb70 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteexpandeddataset/SyncDeleteExpandedDataSetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java index 9985b12de598..f55f92e0d5b7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java index cc34bffc2e0d..7f9852e94f6f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java index 69ca84b5cabd..98b316df1842 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java index ffc9267da27c..43184d12253e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java index 2d0c98224bb7..8bd0ccdc5395 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java index 6a5d6c8cbcf5..efb603ad7688 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java index 429b72aa0ea3..64a8a587d375 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java index 07e7ebf40a96..0956ec3f4420 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java index 11a335c8eb04..15a09ad27e9c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java index 710d9035614b..9a6c05ced978 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java index 608c15ab9309..1360d42f0eca 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java index b172cff425a2..9fef12548745 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java index 48deb3416043..4f75e1c3b9e7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java index 0119eba7046c..9c28fbe282eb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java index 5db4aac05b29..2aec922c4099 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java index 37d866339e99..f496cff10799 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java index 0ea791f246a4..e194a4710c30 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeleteProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeleteProperty.java index 16a758ef48fe..350d635317d9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeleteProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeleteProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java index 36ba785af467..55d8d137f78f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java index 0c97ef79634e..cea830874998 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/AsyncDeleteReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/AsyncDeleteReportingDataAnnotation.java index 3241bfdd79b2..f5163c7a6dd8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/AsyncDeleteReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/AsyncDeleteReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotation.java index 37085ad827e5..779c2b2269cf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationReportingdataannotationname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationReportingdataannotationname.java index adddee5c72f7..ea5430256b3d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationReportingdataannotationname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationReportingdataannotationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationString.java index f8350da400a4..762988972ee1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletereportingdataannotation/SyncDeleteReportingDataAnnotationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/AsyncDeleteRollupPropertySourceLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/AsyncDeleteRollupPropertySourceLink.java index 7f1238ea801c..5f3a42de329a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/AsyncDeleteRollupPropertySourceLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/AsyncDeleteRollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLink.java index f4b497c4251a..4ac86e039edb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkRolluppropertysourcelinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkRolluppropertysourcelinkname.java index 81d4d0873325..7be7b2a43023 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkRolluppropertysourcelinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkRolluppropertysourcelinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkString.java index 477a69d7e4de..a1c1e8d4233b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleterolluppropertysourcelink/SyncDeleteRollupPropertySourceLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/AsyncDeleteSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/AsyncDeleteSearchAds360Link.java index 8bfe8c3ee2e8..dfca02b91e73 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/AsyncDeleteSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/AsyncDeleteSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360Link.java index 5e87a7701e72..1cff079e0184 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkSearchads360Linkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkSearchads360Linkname.java index 5954dbfad690..bad0dd230abf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkSearchads360Linkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkSearchads360Linkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkString.java index 11a01823c950..cf69ef8394b4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesearchads360link/SyncDeleteSearchAds360LinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/AsyncDeleteSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/AsyncDeleteSKAdNetworkConversionValueSchema.java index 67fd13660784..732ac691d5da 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/AsyncDeleteSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/AsyncDeleteSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchema.java index d3a47cb862bb..e27b902df66f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java index fdd64c77f760..34f529f276da 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaString.java index d93bba89afeb..a3ca4b669be3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deleteskadnetworkconversionvalueschema/SyncDeleteSKAdNetworkConversionValueSchemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/AsyncDeleteSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/AsyncDeleteSubpropertyEventFilter.java index 0ec6e75c2485..12e7b87ed5f6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/AsyncDeleteSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/AsyncDeleteSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilter.java index 5e0a9ac2852c..6486ee403a6b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterString.java index 9cffb0061232..09472612c226 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterSubpropertyeventfiltername.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterSubpropertyeventfiltername.java index 9f1cd577c6ff..dd2f674ef5cc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterSubpropertyeventfiltername.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/deletesubpropertyeventfilter/SyncDeleteSubpropertyEventFilterSubpropertyeventfiltername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/AsyncGetAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/AsyncGetAccessBinding.java index 2df6028e6435..5954601aba66 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/AsyncGetAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/AsyncGetAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBinding.java index 7cf00d8a42bf..25c6d02d46a2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingAccessbindingname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingAccessbindingname.java index 4d3d4c68b2fa..7b60a62506b1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingAccessbindingname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingAccessbindingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingString.java index 417cbcb70953..b613850aa2bb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccessbinding/SyncGetAccessBindingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/AsyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/AsyncGetAccount.java index 8bf509867d89..857950b8f50a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/AsyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/AsyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccount.java index 93cd4d7aa847..2d613d78685b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountAccountname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountAccountname.java index 5e8fdb912221..801ec7883603 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountAccountname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountAccountname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountString.java index 1613344f47e5..24a425142a62 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaccount/SyncGetAccountString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/AsyncGetAdSenseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/AsyncGetAdSenseLink.java index f0ab65b1b2ff..5ab290e0f02a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/AsyncGetAdSenseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/AsyncGetAdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLink.java index 4b624080ada6..0310fb01397d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkAdsenselinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkAdsenselinkname.java index 88d5ec19d4ae..8e25546be7ab 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkAdsenselinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkAdsenselinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkString.java index 822c7fa8f7a0..b3ef91a74729 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getadsenselink/SyncGetAdSenseLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/AsyncGetAttributionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/AsyncGetAttributionSettings.java index d22580b32364..147dd4ef9aa5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/AsyncGetAttributionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/AsyncGetAttributionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettings.java index 86d52acf5ebe..7be52f18a6bf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsAttributionsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsAttributionsettingsname.java index b766d815aed6..a64b012008f5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsAttributionsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsAttributionsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsString.java index ed3fc7237848..ae3e828e8f5d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getattributionsettings/SyncGetAttributionSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/AsyncGetAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/AsyncGetAudience.java index 2cd8a94f3b5d..54ee4cc3d9fe 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/AsyncGetAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/AsyncGetAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudience.java index 5ed2bd954a79..06765fa16907 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceAudiencename.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceAudiencename.java index d7ed56e958e6..1d5a12fe5acd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceAudiencename.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceAudiencename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceString.java index 45f14092577d..2654a153dcc9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getaudience/SyncGetAudienceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/AsyncGetBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/AsyncGetBigQueryLink.java index 962ab19bf8ff..44d1657be81f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/AsyncGetBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/AsyncGetBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLink.java index 829b52a0a28f..594b23eab160 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkBigquerylinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkBigquerylinkname.java index 1ddc977d899f..8f8eb815d44a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkBigquerylinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkBigquerylinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkString.java index c2c32d060a40..863f4df1702a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getbigquerylink/SyncGetBigQueryLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/AsyncGetCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/AsyncGetCalculatedMetric.java index dce103ef25f8..29ff50ed5562 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/AsyncGetCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/AsyncGetCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetric.java index 143a2aea2b87..ad3e538114ef 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricCalculatedmetricname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricCalculatedmetricname.java index 7038219eea17..4bfa1135157d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricCalculatedmetricname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricCalculatedmetricname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricString.java index b1e0017436c0..bb6e6d481903 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcalculatedmetric/SyncGetCalculatedMetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/AsyncGetChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/AsyncGetChannelGroup.java index d152dd729bc4..d0753e605146 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/AsyncGetChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/AsyncGetChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroup.java index 24444f442fa0..de157e5c7dc3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupChannelgroupname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupChannelgroupname.java index c99c753f360b..4c2bd90685cb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupChannelgroupname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupChannelgroupname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupString.java index 9a94819cf1ed..c3c4a1a5e9bf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getchannelgroup/SyncGetChannelGroupString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java index 0a2b2a84ec7d..6ba8cf4ad67d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java index 3d953f20d00a..9932cc1626df 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java index 3313863d15a9..15153dd842da 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java index 1bf08bccf847..2d593027006d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java index 9c4c24319961..c7a0e50b592e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java index cbc24fe7a068..d9da7809d6fe 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java index 333578a0a325..6c9cdcf774d0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java index 50b534533fe0..115625d0b3b8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java index 37933fca3425..e54e1919e14b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java index 9ba3ad7b0ad5..927b17118726 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java index 86badd45c513..96c4c4ad2f5e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java index 6d390b258f04..57f93db21ad7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/AsyncGetDataRedactionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/AsyncGetDataRedactionSettings.java index 84638574e22b..0e7f6d0aca15 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/AsyncGetDataRedactionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/AsyncGetDataRedactionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettings.java index 997f50d77ccf..300d75c209e6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsDataredactionsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsDataredactionsettingsname.java index 67279f1d7e9e..71b658a1eeea 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsDataredactionsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsDataredactionsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsString.java index 19f43d4bd8bf..3d7eb36e2540 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataredactionsettings/SyncGetDataRedactionSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java index 53ceceedf7a9..e5f35134d6b8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java index b4ec04516901..1e91df10800a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java index 71ec0ab5e33f..33598397402f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java index 66ec58f7eecd..4dc7c2f677ac 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java index b0dda7ba8123..aabf49bd0dbb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java index d3b533dcbb3a..083338194361 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java index 3d4adfa3e375..c6a6690794c3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java index 8e02b31ec606..e574f1ca2458 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/AsyncGetDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/AsyncGetDataStream.java index 48e1f9d44ccc..616cfa581052 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/AsyncGetDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/AsyncGetDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStream.java index 0fd07f3f50ce..49eabc7a3e6c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java index 4c0809c2ae56..8befd7775ba2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamString.java index 452eedb9bf2f..f16224b490d2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdatastream/SyncGetDataStreamString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/AsyncGetDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/AsyncGetDisplayVideo360AdvertiserLink.java index 44103b4365d4..1302fa86589f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/AsyncGetDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/AsyncGetDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLink.java index fa3b172e96c6..b21d73559d3f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java index a64ca366f8ab..4e0f44e17750 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkDisplayvideo360Advertiserlinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkString.java index 59bf59cd77c9..2fa8b24c408f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlink/SyncGetDisplayVideo360AdvertiserLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/AsyncGetDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/AsyncGetDisplayVideo360AdvertiserLinkProposal.java index a67125084b29..fde41c912b5c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/AsyncGetDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/AsyncGetDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposal.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposal.java index b81b96833146..c457b492bdc7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposal.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposal.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java index 038b99a9579f..26683e6d30fe 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalDisplayvideo360Advertiserlinkproposalname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalString.java index 6d6d4aec4fdd..f0276af2f108 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getdisplayvideo360advertiserlinkproposal/SyncGetDisplayVideo360AdvertiserLinkProposalString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/AsyncGetEnhancedMeasurementSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/AsyncGetEnhancedMeasurementSettings.java index 070b93dca123..ddc5a265a774 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/AsyncGetEnhancedMeasurementSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/AsyncGetEnhancedMeasurementSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettings.java index 28b1f9801eb8..085f87c968d1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsEnhancedmeasurementsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsEnhancedmeasurementsettingsname.java index b0d22b6bdf52..809965f8097f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsEnhancedmeasurementsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsEnhancedmeasurementsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsString.java index 0bc2b5e54f22..965b78537ea0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getenhancedmeasurementsettings/SyncGetEnhancedMeasurementSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/AsyncGetEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/AsyncGetEventCreateRule.java index c45b707f1747..de82ea2bb5da 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/AsyncGetEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/AsyncGetEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRule.java index 2c69a6726b37..882810d41f10 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleEventcreaterulename.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleEventcreaterulename.java index 534ccb4c800a..8cd312ea3720 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleEventcreaterulename.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleEventcreaterulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleString.java index e7863a4e82d5..face5b4fa4e3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventcreaterule/SyncGetEventCreateRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/AsyncGetEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/AsyncGetEventEditRule.java index 4ae9cf49ae4e..e5f2c9b88b50 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/AsyncGetEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/AsyncGetEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRule.java index f06102344cdd..102b1b15bf7a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleEventeditrulename.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleEventeditrulename.java index bee38707a9d4..83abac7a41f5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleEventeditrulename.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleEventeditrulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleString.java index aaf4871f9a1b..deec0a7dd66a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/geteventeditrule/SyncGetEventEditRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/AsyncGetExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/AsyncGetExpandedDataSet.java index 6dfc9ba6d4c3..722f76a943f9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/AsyncGetExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/AsyncGetExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSet.java index bd2a9f1280a2..7d3383118889 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetExpandeddatasetname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetExpandeddatasetname.java index 9c53338630c6..e17d4dcabe7d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetExpandeddatasetname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetExpandeddatasetname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetString.java index 7a368066235a..fe3d5393dac2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getexpandeddataset/SyncGetExpandedDataSetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/AsyncGetGlobalSiteTag.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/AsyncGetGlobalSiteTag.java index 468b9108cf5d..6f10d4062deb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/AsyncGetGlobalSiteTag.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/AsyncGetGlobalSiteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTag.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTag.java index 00cf917bd12f..162fe7a609d5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTag.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagGlobalsitetagname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagGlobalsitetagname.java index c8cf1ac1dbd5..822efe67a5e2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagGlobalsitetagname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagGlobalsitetagname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagString.java index 51bff13f2665..5a1a0bae37a3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getglobalsitetag/SyncGetGlobalSiteTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/AsyncGetGoogleSignalsSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/AsyncGetGoogleSignalsSettings.java index 61c4f8ba592a..1db9687eabf5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/AsyncGetGoogleSignalsSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/AsyncGetGoogleSignalsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettings.java index 887e7c06e5fd..f516338916fb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsGooglesignalssettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsGooglesignalssettingsname.java index 59e5ad9f6864..b2e7d7c5963b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsGooglesignalssettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsGooglesignalssettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsString.java index 6b2f8bc0bdf7..990408b645d4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getgooglesignalssettings/SyncGetGoogleSignalsSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java index 11a22f304513..53a303d26423 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java index 5de28b732264..f24e6c4c1d62 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java index 5823ee8fe227..0824f236b3ca 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java index 05f8e56e78eb..65575ac90700 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java index 3c76ff4ad066..c00c1b361e9b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java index 2a006caf4e3f..bf7ac555f71a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java index e8575815f5e1..a2fe03c311f7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java index 78a8587265c7..4de0d62cd5cf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/AsyncGetProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/AsyncGetProperty.java index d3e14430d351..a001c96b8112 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/AsyncGetProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/AsyncGetProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetProperty.java index dc4ab01ac57d..134cf5c40b2d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java index 77f0c6607922..331b705c0084 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyString.java index 0018c25b7591..3a058986fcc8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getproperty/SyncGetPropertyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/AsyncGetReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/AsyncGetReportingDataAnnotation.java index 0827b51ec380..096b426f105e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/AsyncGetReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/AsyncGetReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotation.java index 16070ec8a5dd..0aaf2e84e84a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationReportingdataannotationname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationReportingdataannotationname.java index 0d354f080702..270d68fc820e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationReportingdataannotationname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationReportingdataannotationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationString.java index a4d3a1f7287e..dc600691658c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingdataannotation/SyncGetReportingDataAnnotationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/AsyncGetReportingIdentitySettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/AsyncGetReportingIdentitySettings.java index 7a7202c27bac..46c58ab2ae2e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/AsyncGetReportingIdentitySettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/AsyncGetReportingIdentitySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettings.java index 910f7e070ac3..25ba4ba0e771 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsReportingidentitysettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsReportingidentitysettingsname.java index 2469d2ccbc41..66341cc70261 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsReportingidentitysettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsReportingidentitysettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsString.java index f5109f211d13..69bb54305791 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getreportingidentitysettings/SyncGetReportingIdentitySettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/AsyncGetRollupPropertySourceLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/AsyncGetRollupPropertySourceLink.java index 4626ec1dfa0b..57334d30aa78 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/AsyncGetRollupPropertySourceLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/AsyncGetRollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLink.java index b9db167a7141..44582948e5ea 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkRolluppropertysourcelinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkRolluppropertysourcelinkname.java index 353c904d2c40..9956067f5f6c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkRolluppropertysourcelinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkRolluppropertysourcelinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkString.java index ee77f4519d48..d01b465e0366 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getrolluppropertysourcelink/SyncGetRollupPropertySourceLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/AsyncGetSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/AsyncGetSearchAds360Link.java index 57593ea0977c..ab614d47eced 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/AsyncGetSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/AsyncGetSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360Link.java index d31ca9697c81..d6c519f5a8a7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkSearchads360Linkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkSearchads360Linkname.java index 026db1a4f041..259932f2b2eb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkSearchads360Linkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkSearchads360Linkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkString.java index f61caf8ca901..97996635abe5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsearchads360link/SyncGetSearchAds360LinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/AsyncGetSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/AsyncGetSKAdNetworkConversionValueSchema.java index 9159ddc1d663..54b44e45df9e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/AsyncGetSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/AsyncGetSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchema.java index 7b501a0e6b73..04a629fb4ba4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java index 7a187a9e6609..4f07e070ddec 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaString.java index a502bed40034..a87204c013e1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getskadnetworkconversionvalueschema/SyncGetSKAdNetworkConversionValueSchemaString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/AsyncGetSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/AsyncGetSubpropertyEventFilter.java index a4d544b1a372..38af96b24d45 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/AsyncGetSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/AsyncGetSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilter.java index 9b3520ab1bfa..063d5549687c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterString.java index 06365483a3c8..9fc3202d0b3b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterSubpropertyeventfiltername.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterSubpropertyeventfiltername.java index c30e2f9c591c..a91ef52bd235 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterSubpropertyeventfiltername.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertyeventfilter/SyncGetSubpropertyEventFilterSubpropertyeventfiltername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/AsyncGetSubpropertySyncConfig.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/AsyncGetSubpropertySyncConfig.java index 56659a237c47..8f71e6481dad 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/AsyncGetSubpropertySyncConfig.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/AsyncGetSubpropertySyncConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfig.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfig.java index 4e764ce89d11..bffd9b91d269 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfig.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigString.java index 70e43a520d72..2a964f210cbe 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigSubpropertysyncconfigname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigSubpropertysyncconfigname.java index da148faca363..739f8b864838 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigSubpropertysyncconfigname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/getsubpropertysyncconfig/SyncGetSubpropertySyncConfigSubpropertysyncconfigname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindings.java index 114d8e09ddec..3ee6b8fdba83 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindingsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindingsPaged.java index 557f89cb8c70..d4349203f8f2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindingsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/AsyncListAccessBindingsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindings.java index 947aa468f951..941fce63b74b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsAccountname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsAccountname.java index 9c398f416c6e..b2e32b9c0fc2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsAccountname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsAccountname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsPropertyname.java index 7e05ccc444ec..f252de7f7797 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsString.java index 2a9af66c1d49..9f51dfa2332b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccessbindings/SyncListAccessBindingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccounts.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccounts.java index 20f8b206c971..f5d17f62d813 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccounts.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccounts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java index 54a896944adc..17af1b73f13f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/SyncListAccounts.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/SyncListAccounts.java index 4dac94f888c3..7ec3456989cc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/SyncListAccounts.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccounts/SyncListAccounts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java index 39b3e58b134f..74876928ddb9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java index 90a6f6f6e5a0..b7a1084da018 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java index b8e2a4ebd6ba..114506a4f87f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinks.java index 1f17ea466c4e..196edba00619 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinksPaged.java index 307631ed007d..f57eff9a9325 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/AsyncListAdSenseLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinks.java index 74a7e3d5f6ad..dde159e4716d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksPropertyname.java index 0d90661784ea..b9517cbd397f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksString.java index 8c745d8709fb..d5ab10530088 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listadsenselinks/SyncListAdSenseLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiences.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiences.java index ea8b6e0c681f..658e818e8dfb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiences.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiences.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiencesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiencesPaged.java index 35d97ef51033..286686c50c83 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiencesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/AsyncListAudiencesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiences.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiences.java index a490bccd5c0b..015ec9147719 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiences.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiences.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesPropertyname.java index 9feba515fde4..2db58cf7b8b8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesString.java index 75d50d6fc4d0..a2e8bbe0959a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listaudiences/SyncListAudiencesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinks.java index d4a4336a5c14..308dac60e169 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinksPaged.java index 4f50ad66895d..d81255188b76 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/AsyncListBigQueryLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinks.java index afe25ae9581c..098c1b4d92c8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksPropertyname.java index b544591285de..c80ac567c192 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksString.java index 8ab00ceeb796..f3ea485f5340 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listbigquerylinks/SyncListBigQueryLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetrics.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetrics.java index 5ccb22decca8..c4a59849c9aa 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetrics.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetricsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetricsPaged.java index c7b252f37f10..93eef47522b1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetricsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/AsyncListCalculatedMetricsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetrics.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetrics.java index 403e3da55c68..0d168a8e5bf9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetrics.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsPropertyname.java index 8a37121f915d..d84e1f6bdfd8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsString.java index 76783bc93fe8..bba833a232b3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcalculatedmetrics/SyncListCalculatedMetricsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroups.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroups.java index 872fb35686b8..b3ef8e162d28 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroups.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroupsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroupsPaged.java index 50f321fa9149..801ccaadbb77 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroupsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/AsyncListChannelGroupsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroups.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroups.java index 88049ceb3665..c606381fc0ad 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroups.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroups.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsPropertyname.java index 5cf3eca34375..ec28c88ac796 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsString.java index 95be38dec881..7d45f6e719fc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listchannelgroups/SyncListChannelGroupsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java index 440b6747e7c7..d5ab50f33608 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java index 06ec01cb853e..6fab5f5505db 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEvents.java index f5aba258642e..05a5d8581751 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java index f825de3809de..16cf5ea7153c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java index 866d27dd161f..727e4dec7ace 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java index 1003d6981dd1..ee36c33b226f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java index f9970f7286f1..76fbe5b89478 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java index 7119aab65ebe..ab62274ed4fc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java index 280e7ae27b05..144768894209 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java index ef1f4ab849a8..d956639d4aca 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java index 044412a12ce7..71b51d234c8d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java index 02c9005006e0..cc2b003ba10d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java index 9f459a89e1d7..0c80de062545 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java index 6a3f748c5635..03dcabd7ebdf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java index 80ef07ead9ea..242f7dafcead 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreams.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreams.java index 1315bb6789d2..c2e123bf282d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreams.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java index 082d4bef1c65..0ea1866302f0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreams.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreams.java index 14007aaf039c..9f8009b519f3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreams.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java index 8a31f0116412..bc66ad8d058e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java index 90e8163044d8..10bde521b277 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposals.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposals.java index b8d3042dd7a0..198ae662a428 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposals.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposals.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposalsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposalsPaged.java index 6e49a180b8f2..48fee54b0c45 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposalsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/AsyncListDisplayVideo360AdvertiserLinkProposalsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposals.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposals.java index 7b0519960db8..6dc621d1f497 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposals.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposals.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsPropertyname.java index 46b6a1b392a4..f8ff0ccefa32 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsString.java index 246bfafbb9c9..6d821b8ee272 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinkproposals/SyncListDisplayVideo360AdvertiserLinkProposalsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinks.java index cbea6843c08d..0d01f90bca19 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinksPaged.java index aeaa6c8b0bdb..f6e2574e0764 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/AsyncListDisplayVideo360AdvertiserLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinks.java index f2de0bcb0972..0964611abdd0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksPropertyname.java index 905727d1faae..7dc85b10caec 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksString.java index 38e407afe09f..6f655bb58f3a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listdisplayvideo360advertiserlinks/SyncListDisplayVideo360AdvertiserLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRules.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRules.java index ebe91a68591f..39526f59cf40 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRules.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRulesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRulesPaged.java index 1076a8cfd3be..5984299c95fb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRulesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/AsyncListEventCreateRulesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRules.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRules.java index 78552aafcd91..cd81ec995562 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRules.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesDatastreamname.java index 83716cbe705a..03c899f9fb7d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesString.java index 6b55e6d58825..b2f6bcac5505 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventcreaterules/SyncListEventCreateRulesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRules.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRules.java index 3bc94cce9b0b..d363dcacbffa 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRules.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRulesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRulesPaged.java index bdebfd633ace..b9a938390c5c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRulesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/AsyncListEventEditRulesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRules.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRules.java index 16fd56c03829..956ce3b99bfb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRules.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesDatastreamname.java index 36c1c60fd411..a232fafddf04 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesString.java index 8e6e777361dd..630a4430ef5c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listeventeditrules/SyncListEventEditRulesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSets.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSets.java index 20b55d8dcf54..2e4da15c2bca 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSets.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSetsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSetsPaged.java index d6bf1970a7d0..b13f2bd991dd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSetsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/AsyncListExpandedDataSetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSets.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSets.java index 8cc6719f5561..90d306f17170 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSets.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsPropertyname.java index bbe9ce6816f2..89c11fb2e319 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsString.java index c3139260aa18..d351d59a8a62 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listexpandeddatasets/SyncListExpandedDataSetsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java index 2f82b102623b..9f0578612e27 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java index 7c9266f62cdf..9687bdf7f20d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java index bfe7e0b3f239..2e7968b34372 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java index 1498e58a210f..0860af15fdf0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java index 509b69d6d929..ad42dad4f69e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java index 95e37d232072..ae1a314644c0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java index 089dd1f769da..425f725fead2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java index 6f29af5711d5..42378ff98e62 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java index fa8f33d02cbd..9a2fbb42dd3a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java index 688f3e81fafa..a06e276d4219 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java index 4c7fa5024f4c..96770f6d4a13 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java index 1b7eaef89933..aeac9204c8a8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEvents.java index b0886e565543..758f16c9c32f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java index 3d576160d232..e3d0bcda81de 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java index b7f0752c2362..ef34ade74ad9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java index 82dfcbd973aa..f2793823c99e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java index 8f11afd0c4df..cb96f3576207 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java index 74f709211eae..49beb232d7b8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java index fd2c82f73c7e..b1b5bc1c3453 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java index 694f9b4405e6..a0c255e94d99 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListProperties.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListProperties.java index 3108adebfc34..36e1d391ed75 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListProperties.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java index c6a3f97bbc51..3d3d5e7161fe 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/SyncListProperties.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/SyncListProperties.java index 8cc6054c829f..2ec30835a61c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/SyncListProperties.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listproperties/SyncListProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotations.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotations.java index d287e5f460d3..c236cff15f29 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotations.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotationsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotationsPaged.java index 61817440184b..2adb1fd5ead7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotationsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/AsyncListReportingDataAnnotationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotations.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotations.java index dd22f9361ae5..1b97ef1ac98a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotations.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsPropertyname.java index 9ea5757d929c..da9488783ba2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsString.java index 81b3bd5b9de2..b25cfd473cad 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listreportingdataannotations/SyncListReportingDataAnnotationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinks.java index 88e57fbc3fe2..f73eb318c859 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinksPaged.java index f4b186c42d1c..64d751bbfe50 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/AsyncListRollupPropertySourceLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinks.java index 16ec80dcbbdf..90561d6ea037 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksPropertyname.java index 337d94a356f8..ec1f56c6850b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksString.java index 1249cdc7bd53..183d8f9e950a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listrolluppropertysourcelinks/SyncListRollupPropertySourceLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360Links.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360Links.java index 08d3a9e62065..38bdca5d052e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360Links.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360Links.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360LinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360LinksPaged.java index 3f8cd8390252..0fe2e6e79e91 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360LinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/AsyncListSearchAds360LinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360Links.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360Links.java index 307d2c5a7811..99ede8900637 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360Links.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360Links.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksPropertyname.java index 1db9359fa3cd..70e1c1f18d5b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksString.java index d6ae3dfea0cf..512ab23cef54 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsearchads360links/SyncListSearchAds360LinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemas.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemas.java index 67287138b500..41042a86973d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemas.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemasPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemasPaged.java index 3309f75e0519..186d849126a1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemasPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/AsyncListSKAdNetworkConversionValueSchemasPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemas.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemas.java index 0309a099741b..4e6f89de8d3f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemas.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasDatastreamname.java index bf12b627b30f..0c96aa46cb44 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasString.java index 6d6f53dbb546..6c8b24207691 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listskadnetworkconversionvalueschemas/SyncListSKAdNetworkConversionValueSchemasString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFilters.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFilters.java index 90a65da2c760..7ca3cbda19df 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFilters.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFilters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFiltersPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFiltersPaged.java index aea270022f2b..5a468b00e7b1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFiltersPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/AsyncListSubpropertyEventFiltersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFilters.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFilters.java index 6ab9a77e8254..98d216736bd2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFilters.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFilters.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersPropertyname.java index 35ab43ff0d9f..ff062608d8a8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersString.java index 9af712e1fa17..fb58d5e2079f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertyeventfilters/SyncListSubpropertyEventFiltersString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigs.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigs.java index e2d447f42526..51975145803a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigs.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigsPaged.java index ef954524500e..22071a8b75d5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/AsyncListSubpropertySyncConfigsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigs.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigs.java index 07e183807d36..734671da31db 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigs.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsPropertyname.java index 12a923f2f255..f4e8e1f04fcd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsString.java index 9c214fab071a..a250e5e3557c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/listsubpropertysyncconfigs/SyncListSubpropertySyncConfigsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java index 978a2e986e17..b51786dc62f3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java index da9657e6ad4d..36c835c75289 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/AsyncProvisionSubproperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/AsyncProvisionSubproperty.java index 98d44e647a6a..7d9d7cd2fe9f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/AsyncProvisionSubproperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/AsyncProvisionSubproperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/SyncProvisionSubproperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/SyncProvisionSubproperty.java index 352070423225..fabefc64d3d6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/SyncProvisionSubproperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/provisionsubproperty/SyncProvisionSubproperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/AsyncReorderEventEditRules.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/AsyncReorderEventEditRules.java index a03c13dfdd57..6335cfb1544e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/AsyncReorderEventEditRules.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/AsyncReorderEventEditRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/SyncReorderEventEditRules.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/SyncReorderEventEditRules.java index 3bc2deeedc60..6adc57499382 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/SyncReorderEventEditRules.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/reordereventeditrules/SyncReorderEventEditRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java index 8b8b19c6e506..5d72e81d8245 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/SyncRunAccessReport.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/SyncRunAccessReport.java index 754cf5066d6c..dcaf52485f24 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/SyncRunAccessReport.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/runaccessreport/SyncRunAccessReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java index 4887c603a2d6..9639fca84aa9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java index 8e1cae986d1b..3c1899e78cb5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java index 142b9fc5493f..39e5bdd7fa27 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/AsyncSubmitUserDeletion.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/AsyncSubmitUserDeletion.java index f3619ec384b2..69bf27a56c26 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/AsyncSubmitUserDeletion.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/AsyncSubmitUserDeletion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletion.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletion.java index f05645a78413..b5f4e1163710 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletion.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionPropertyname.java index 73e9846af4b8..6e6ee50d67d9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionString.java index 56a2d7510161..6c9e1170ad75 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/submituserdeletion/SyncSubmitUserDeletionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/AsyncUpdateAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/AsyncUpdateAccessBinding.java index ea0ec53dd427..1cd8b310af77 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/AsyncUpdateAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/AsyncUpdateAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBinding.java index 93c9ce2f635e..ee9d430889a4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBindingAccessbinding.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBindingAccessbinding.java index 396e14c6646c..885cf2ba3701 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBindingAccessbinding.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccessbinding/SyncUpdateAccessBindingAccessbinding.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/AsyncUpdateAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/AsyncUpdateAccount.java index ced30bd53f54..ed51ff3716eb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/AsyncUpdateAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/AsyncUpdateAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccount.java index c6285cc38444..7c5f49c13a7f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java index 36160c946332..7c401fb6d351 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/AsyncUpdateAttributionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/AsyncUpdateAttributionSettings.java index 2440b1480e6c..10ee280df838 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/AsyncUpdateAttributionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/AsyncUpdateAttributionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettings.java index 3492bc5bfff3..4a8099798ef5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettingsAttributionsettingsFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettingsAttributionsettingsFieldmask.java index 1004e5b0f360..06d8292fef79 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettingsAttributionsettingsFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateattributionsettings/SyncUpdateAttributionSettingsAttributionsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/AsyncUpdateAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/AsyncUpdateAudience.java index c3c9c4916363..a5767a704702 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/AsyncUpdateAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/AsyncUpdateAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudience.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudience.java index 677f6e9f741d..a4ab312bb1fc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudience.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudience.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudienceAudienceFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudienceAudienceFieldmask.java index 97d37983710a..bdc5e490aff1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudienceAudienceFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateaudience/SyncUpdateAudienceAudienceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/AsyncUpdateBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/AsyncUpdateBigQueryLink.java index e4118be2d57a..9ea65d532df0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/AsyncUpdateBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/AsyncUpdateBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLink.java index 3ae26cc898a5..2d8edefbecbd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLinkBigquerylinkFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLinkBigquerylinkFieldmask.java index 6ba18d1efd08..805198974bd0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLinkBigquerylinkFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatebigquerylink/SyncUpdateBigQueryLinkBigquerylinkFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/AsyncUpdateCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/AsyncUpdateCalculatedMetric.java index a998a9c25ed5..1ddf2c67fe57 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/AsyncUpdateCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/AsyncUpdateCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetric.java index c968152dcb2b..f8d20327ca10 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetricCalculatedmetricFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetricCalculatedmetricFieldmask.java index ad9675e10fa8..0d68ad386dba 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetricCalculatedmetricFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecalculatedmetric/SyncUpdateCalculatedMetricCalculatedmetricFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/AsyncUpdateChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/AsyncUpdateChannelGroup.java index 0c93bf8d07c9..c362fbee0167 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/AsyncUpdateChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/AsyncUpdateChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroup.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroup.java index 294ce481001a..b2499dff1b47 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroup.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroupChannelgroupFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroupChannelgroupFieldmask.java index 4b754ff948b2..33a55a34ada2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroupChannelgroupFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatechannelgroup/SyncUpdateChannelGroupChannelgroupFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java index 105ed9ddca72..83b21920fe10 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java index 75ab3839bf23..edcae049bb60 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java index 5932e0813e37..b0fe473cff40 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java index 8269aceb3d32..f0b6d8d36a01 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java index 9b0e4bbe1b9d..cf363b2e3d8d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java index abaa38b1d2ae..427b94907122 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java index 6885c03f4b8e..be199706362f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java index deced934ec6a..346c87641270 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java index d5337fc707fd..48163942dc73 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/AsyncUpdateDataRedactionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/AsyncUpdateDataRedactionSettings.java index 55f2d62b81b2..a66c7d45f6b2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/AsyncUpdateDataRedactionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/AsyncUpdateDataRedactionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettings.java index 3046dc699077..a086ae4cc9e2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettingsDataredactionsettingsFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettingsDataredactionsettingsFieldmask.java index d4c129a042c2..515bf309208b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettingsDataredactionsettingsFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataredactionsettings/SyncUpdateDataRedactionSettingsDataredactionsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java index 43d78192f15e..f5492d01881b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java index 43edea1b0861..6b62dd7449f2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java index 173e7db10ccd..ab3b3e854daa 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java index 8cb194725f98..c87ba8af08cd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java index e08393767f9e..89ff0a56e4a1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java index 3cef332dff3f..93757f25f5d4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/AsyncUpdateDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/AsyncUpdateDisplayVideo360AdvertiserLink.java index c4c63f09bff2..7c6661c6b607 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/AsyncUpdateDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/AsyncUpdateDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLink.java index 5836d52f73b2..17f923a93a90 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLinkDisplayvideo360AdvertiserlinkFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLinkDisplayvideo360AdvertiserlinkFieldmask.java index 5ac2a1556d2b..4307cc8cb083 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLinkDisplayvideo360AdvertiserlinkFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatedisplayvideo360advertiserlink/SyncUpdateDisplayVideo360AdvertiserLinkDisplayvideo360AdvertiserlinkFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/AsyncUpdateEnhancedMeasurementSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/AsyncUpdateEnhancedMeasurementSettings.java index 1b5dd34da0a3..fce8e7aae2c7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/AsyncUpdateEnhancedMeasurementSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/AsyncUpdateEnhancedMeasurementSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettings.java index ff7a091a8e88..f75e47a830ca 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettingsEnhancedmeasurementsettingsFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettingsEnhancedmeasurementsettingsFieldmask.java index a832affd07c2..697a1c3948b9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettingsEnhancedmeasurementsettingsFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateenhancedmeasurementsettings/SyncUpdateEnhancedMeasurementSettingsEnhancedmeasurementsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/AsyncUpdateEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/AsyncUpdateEventCreateRule.java index e5d005de109a..78ba0f550edc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/AsyncUpdateEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/AsyncUpdateEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRule.java index 04eca31224d2..1b1a0735ee53 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRuleEventcreateruleFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRuleEventcreateruleFieldmask.java index 11b34548190a..233373608a93 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRuleEventcreateruleFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventcreaterule/SyncUpdateEventCreateRuleEventcreateruleFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/AsyncUpdateEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/AsyncUpdateEventEditRule.java index ed81b9d9256d..9ddbd5297b1e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/AsyncUpdateEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/AsyncUpdateEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRule.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRule.java index 8735f3d9c814..8e78d978c187 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRule.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRuleEventeditruleFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRuleEventeditruleFieldmask.java index 5b275e0a3d5a..22cf0660dbcd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRuleEventeditruleFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateeventeditrule/SyncUpdateEventEditRuleEventeditruleFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/AsyncUpdateExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/AsyncUpdateExpandedDataSet.java index c205fa489c4a..978b48222b7f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/AsyncUpdateExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/AsyncUpdateExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSet.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSet.java index aa89d80608e9..414213c7058d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSet.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSetExpandeddatasetFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSetExpandeddatasetFieldmask.java index c992b45e950d..161a37a6ff20 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSetExpandeddatasetFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateexpandeddataset/SyncUpdateExpandedDataSetExpandeddatasetFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java index 47d6d28f0877..696b6435093e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java index b992b059fff7..6ff29ef47fcb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java index 662c067f94e7..810939dc9b42 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/AsyncUpdateGoogleSignalsSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/AsyncUpdateGoogleSignalsSettings.java index de4b10c4ef90..f97616914306 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/AsyncUpdateGoogleSignalsSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/AsyncUpdateGoogleSignalsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettings.java index fd7271591833..bf16f399e23e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettingsGooglesignalssettingsFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettingsGooglesignalssettingsFieldmask.java index 883c3c5cc467..fd744318cac1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettingsGooglesignalssettingsFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updategooglesignalssettings/SyncUpdateGoogleSignalsSettingsGooglesignalssettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java index 1789b2840322..c9ee036a80cf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java index 05cf362a9de2..b04b87963844 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java index 15613c1e90a1..499ce6158274 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java index 8018fb513de6..fbe7d91a6ce9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java index 485727fb316a..431f0bc4283c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java index cf64c63794df..05912f007c71 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/AsyncUpdateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/AsyncUpdateProperty.java index a9016bafd7e8..45050798a549 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/AsyncUpdateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/AsyncUpdateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdateProperty.java index 42932ab05acb..9f244d7bf283 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java index e18f09fbaa22..92666c10f656 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/AsyncUpdateReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/AsyncUpdateReportingDataAnnotation.java index db9c50b5e40f..dc9bd631d138 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/AsyncUpdateReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/AsyncUpdateReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotation.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotation.java index 490b6507b20c..ff550d3592ba 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotation.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotationReportingdataannotationFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotationReportingdataannotationFieldmask.java index a92624e5417a..cf4a46e2c9f5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotationReportingdataannotationFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingdataannotation/SyncUpdateReportingDataAnnotationReportingdataannotationFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/AsyncUpdateSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/AsyncUpdateSearchAds360Link.java index e668ba917bad..ec580f7ae552 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/AsyncUpdateSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/AsyncUpdateSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360Link.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360Link.java index 826e78563952..8c36c3f2715b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360Link.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360Link.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360LinkSearchads360LinkFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360LinkSearchads360LinkFieldmask.java index 96f0ea19627d..db6e17c7949e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360LinkSearchads360LinkFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesearchads360link/SyncUpdateSearchAds360LinkSearchads360LinkFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/AsyncUpdateSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/AsyncUpdateSKAdNetworkConversionValueSchema.java index b78be5312b6b..debfd8738c64 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/AsyncUpdateSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/AsyncUpdateSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchema.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchema.java index 17d3ec016dcb..5bb95a9d933a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchema.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaFieldmask.java index 94f52d17f9e6..358508ac3a8a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updateskadnetworkconversionvalueschema/SyncUpdateSKAdNetworkConversionValueSchemaSkadnetworkconversionvalueschemaFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/AsyncUpdateSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/AsyncUpdateSubpropertyEventFilter.java index a30df51ecb04..c9e5a29848d0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/AsyncUpdateSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/AsyncUpdateSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilter.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilter.java index dbefff8404c3..4b5f70ba59a5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilter.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilterSubpropertyeventfilterFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilterSubpropertyeventfilterFieldmask.java index 24c62e8ae672..4fabd184f02c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilterSubpropertyeventfilterFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertyeventfilter/SyncUpdateSubpropertyEventFilterSubpropertyeventfilterFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/AsyncUpdateSubpropertySyncConfig.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/AsyncUpdateSubpropertySyncConfig.java index e72efb0753c4..f70e52a56364 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/AsyncUpdateSubpropertySyncConfig.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/AsyncUpdateSubpropertySyncConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfig.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfig.java index bc9c6aaebee1..711af3b8e7a1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfig.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfigSubpropertysyncconfigFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfigSubpropertysyncconfigFieldmask.java index f56c1bf95020..681858cbcb80 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfigSubpropertysyncconfigFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatesubpropertysyncconfig/SyncUpdateSubpropertySyncConfigSubpropertysyncconfigFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservicesettings/getaccount/SyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservicesettings/getaccount/SyncGetAccount.java index edbaf22e3c03..c3afa29df26b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservicesettings/getaccount/SyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservicesettings/getaccount/SyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java index 93bb420b1cd2..f928887ed953 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java index d054463c4d20..927a8a763acc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/AsyncAcknowledgeUserDataCollection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java index 2be24d391e00..b7b469e83af3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/acknowledgeuserdatacollection/SyncAcknowledgeUserDataCollection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java index 13fec9e79404..3f811736bfa7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/AsyncArchiveCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java index ab41cfad2a8d..415166c03431 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java index cad3c65d94c1..eb16bfe68d4c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionCustomdimensionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java index 79390dc28c4a..6a6c451a8789 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustomdimension/SyncArchiveCustomDimensionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java index 655c17b9b64c..8de102ecf29e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/AsyncArchiveCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java index 353f0dfd1405..62e087011251 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java index 040681c4186e..4931617048f6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricCustommetricname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java index b7845bf338b3..6e3aece300ef 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/archivecustommetric/SyncArchiveCustomMetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java index a43b3370303c..6d4620e5a0b6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetEndpoint.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetEndpoint.java index f790e92576f5..8083479d5341 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetEndpoint.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java index 4d8fe8a3daab..99c01380985e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java index d67e96a89d5b..80f3967f6f9f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/AsyncCreateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java index af21154c61ac..27e27ceed25c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java index 19b33f1e37da..4f3a566cd5e0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventPropertynameConversionevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java index f6dc27653be9..f25b1274019c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createconversionevent/SyncCreateConversionEventStringConversionevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java index 17185556e525..9cfb0cde3b91 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/AsyncCreateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java index 27c17002499c..f964d10e9004 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java index 8922066a4449..660220e4db0c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionPropertynameCustomdimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java index ed96ca2bd131..e1a4492ceb49 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustomdimension/SyncCreateCustomDimensionStringCustomdimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java index 1dfb0e72b622..3f2e8db98156 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/AsyncCreateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java index 9f52dca1d99b..ac9fed6f2b1a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java index 1ddeef1bb534..86510af9f4c9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricPropertynameCustommetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java index 031ca85179f8..63178fc88757 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createcustommetric/SyncCreateCustomMetricStringCustommetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/AsyncCreateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/AsyncCreateDataStream.java index cf47eda93ed2..e316d24256af 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/AsyncCreateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/AsyncCreateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStream.java index 978760b2c415..418e13109ec7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java index 9dee3e9badb2..0e4cb44dd9e5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamPropertynameDatastream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java index 7de529b71fb7..a7bd96bc0985 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createdatastream/SyncCreateDataStreamStringDatastream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java index 4cc4eb1a2955..b74753dfe155 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/AsyncCreateFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java index 9278d6464b13..b252a668fa91 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java index 5e2602edf483..6e6252298d32 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkPropertynameFirebaselink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java index a3b4008ec281..4e6db936e0ff 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createfirebaselink/SyncCreateFirebaseLinkStringFirebaselink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java index 954a4f52db28..1656e3716b6d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/AsyncCreateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java index c428c5c5a219..cd7a82a2372e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java index cdbceb04d360..d9ce35e9496c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkPropertynameGoogleadslink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java index 66f5d31a1c38..f005c7f15ec7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/creategoogleadslink/SyncCreateGoogleAdsLinkStringGoogleadslink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java index 2d462e99fd88..f990125eb230 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/AsyncCreateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java index 43d25de9eef6..e1ec80ab0788 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java index 3ed128622e5b..834324658123 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventPropertynameKeyevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java index d3fde31abff6..48b1ee607034 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createkeyevent/SyncCreateKeyEventStringKeyevent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java index bf8af1bf666f..754ffc224366 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/AsyncCreateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java index 51dee216925d..72fd1edc1159 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java index 8e264a0b0afb..f9d27e86a1e3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretDatastreamnameMeasurementprotocolsecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java index eafca53e46f9..a605bd9b7d5c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createmeasurementprotocolsecret/SyncCreateMeasurementProtocolSecretStringMeasurementprotocolsecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/AsyncCreateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/AsyncCreateProperty.java index 0d0aefdb6d64..e1995f93a869 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/AsyncCreateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/AsyncCreateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreateProperty.java index 9d1f78e39ee9..4276f6f57bba 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java index 564265a0732a..d30442cfb113 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/createproperty/SyncCreatePropertyProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java index 6a08fdc74abd..bd9b2e08157e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/AsyncDeleteAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccount.java index 8ebdbb3a39d3..f78ac36c7df9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java index adf6c156a54e..e1f2f59d692d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountAccountname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java index 9ee0b20b388a..a0d8f04dd170 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteaccount/SyncDeleteAccountString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java index 4b5e51780a88..52dc37af50af 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/AsyncDeleteConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java index ecceda12cfd6..22771f02ba94 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java index f79054899f18..7fd7ab3d0448 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventConversioneventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java index e691376e96ea..c7b53187ae5e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteconversionevent/SyncDeleteConversionEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java index 17c8bb9be89a..0fead37cce2d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/AsyncDeleteDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java index d705821b134e..e4c64c84f86c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java index ee8c473a2f70..1e16d22f0982 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java index 344b49b24911..17795dd283fd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletedatastream/SyncDeleteDataStreamString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java index 7044aacd1c46..080333f55a4c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/AsyncDeleteFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java index 8514b6aea80f..60bff62b1294 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java index 8e1ed5257147..6d585537cfe2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkFirebaselinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java index c2e691a6971b..6fee1306ad33 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletefirebaselink/SyncDeleteFirebaseLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java index 487d36dadd28..1d7a84579a5a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/AsyncDeleteGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java index 18fd9ebb124c..da5c07b9346e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java index f6701cb2fd4a..c8b662cc1c4f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkGoogleadslinkname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java index 50d762db0c42..f95de0b296f4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletegoogleadslink/SyncDeleteGoogleAdsLinkString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java index 6684ef08f49c..d8864dbf130a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/AsyncDeleteKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java index cb73221f06d2..2a536563968e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java index 9bb5639af4d5..ab4e86f30bab 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventKeyeventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java index 0b5f0bda04e9..dbff47cff839 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletekeyevent/SyncDeleteKeyEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java index 4d88e9b91217..c11cf563a90e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/AsyncDeleteMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java index 8b9daa4ba7aa..61226007152f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java index 0e45e5183922..8ac87fd95d6d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretMeasurementprotocolsecretname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java index e32ac4a0f95c..e8256e5cc98f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deletemeasurementprotocolsecret/SyncDeleteMeasurementProtocolSecretString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java index 7387bec782ea..75fc15229802 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/AsyncDeleteProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeleteProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeleteProperty.java index 9efda2863709..d6fe19cf62c1 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeleteProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeleteProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java index e23d2c0aa21c..9d9e7c47864b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java index 84b25b0d013f..aa1b64c8b891 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/deleteproperty/SyncDeletePropertyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/AsyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/AsyncGetAccount.java index 4789a228eae4..02e81519b332 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/AsyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/AsyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccount.java index d8549b6fd048..26860c4ff1cf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountAccountname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountAccountname.java index 61d1d55a6ab4..fcc638c22f33 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountAccountname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountAccountname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountString.java index e63803ef7891..997f0773d4d5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getaccount/SyncGetAccountString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java index f50c96bd1610..d204060b5ec7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/AsyncGetConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java index 76493b557c74..a837f54becdd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java index f2863e695c79..b20541c15f82 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventConversioneventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java index d332f453ef5c..21cb11cf1a1f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getconversionevent/SyncGetConversionEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java index 269afb18b5a8..d49ed6224389 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/AsyncGetCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java index 90cafdc5d598..c25724695383 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java index b38f1a6da488..b78adff800c0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionCustomdimensionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java index 0c4d85296c0f..21796d4930c8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustomdimension/SyncGetCustomDimensionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java index a3ce748aaa45..4ca2cb9a97e9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/AsyncGetCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java index aa35aa9073fb..808e1fbde525 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java index 76b2225005a3..f2faf059ce2e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricCustommetricname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java index 840de2f39936..af7540c8f997 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getcustommetric/SyncGetCustomMetricString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java index 7b2d1387b9c5..78a30e2d6777 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/AsyncGetDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java index 822466dc66ae..56d34b68b60f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java index f45162386f3c..0204f198999f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsDataretentionsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java index e82d499af85a..1184edf82e09 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdataretentionsettings/SyncGetDataRetentionSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java index f32b0cd2e4c8..eab6a0255833 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/AsyncGetDataSharingSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java index 2c2f2ffff888..b10b81bb3c02 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java index 59f64c0192e4..b1e06b36a2af 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsDatasharingsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java index 4b7e436483a3..2caae1791b4b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatasharingsettings/SyncGetDataSharingSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/AsyncGetDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/AsyncGetDataStream.java index 4d6a9adbee83..60e9892073db 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/AsyncGetDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/AsyncGetDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStream.java index bbd94b2393b3..3cd52977abeb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java index 19ae78d0ba0e..1d08acf3edc3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamString.java index 654dd50dc403..f8446a8ad2f7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getdatastream/SyncGetDataStreamString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java index 74904599a67d..26fd0ad4ecea 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/AsyncGetKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java index ce21fcbed976..536981eecde4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java index 1f2465a15b02..ebd8cfbbd1ab 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventKeyeventname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java index c55d0f6080da..6edc6df05076 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getkeyevent/SyncGetKeyEventString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java index 8b62cfbf687b..5a21201305d9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/AsyncGetMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java index 434f7a13ec2d..e2c2cc6565e3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java index e2654ee391c2..767d01abe677 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretMeasurementprotocolsecretname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java index 799c1d7fce4d..da75a4a05afc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getmeasurementprotocolsecret/SyncGetMeasurementProtocolSecretString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/AsyncGetProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/AsyncGetProperty.java index 7d3752748bab..fec939f085e6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/AsyncGetProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/AsyncGetProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetProperty.java index a48c5de04530..fc40dd03a2a0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java index 9de7423bdd61..e23864d23082 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyString.java index d9763f484a0d..56a3bcc51b43 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/getproperty/SyncGetPropertyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccounts.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccounts.java index f0122ed15eeb..4028342f16ee 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccounts.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccounts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java index cd8439fc42f6..ccb5181db494 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/AsyncListAccountsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/SyncListAccounts.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/SyncListAccounts.java index e2eb2fe96630..65b61a978feb 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/SyncListAccounts.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccounts/SyncListAccounts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java index 9643f94b2af3..acdf411e03c9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummaries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java index ed58251deb92..8cdb4394efca 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/AsyncListAccountSummariesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java index d00e7d963406..858c5356b34d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listaccountsummaries/SyncListAccountSummaries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java index 04a594067610..bc7aa4db0940 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java index 269aa577f5ca..20ef41eb31bf 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/AsyncListConversionEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEvents.java index f52a9448b6cf..ab1eb0e2a254 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java index 62ba1f9cc07b..0b15a7f82573 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java index 17305be045b4..1e82e981d3d4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listconversionevents/SyncListConversionEventsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java index 704d5e3bf241..9ad475699c25 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java index 6c4549c4b242..1907ecd80cfd 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/AsyncListCustomDimensionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java index aceca0420912..6341d96a340e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java index e396e99e0382..c879504dd5ac 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java index 9636e860fb30..5f2aaad030ed 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustomdimensions/SyncListCustomDimensionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java index 129e0ce11557..cfe2c9a8d199 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java index 16d3b3417099..6f947f288be7 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/AsyncListCustomMetricsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java index 5e43c0388aef..0d10c87748fa 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java index 642bbd18ac64..cfadab392b44 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java index 3762a3e2958d..220711966f11 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listcustommetrics/SyncListCustomMetricsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreams.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreams.java index 62bb11d61c28..20a44bbc5073 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreams.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java index 239745dc3375..5890b78086ee 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/AsyncListDataStreamsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreams.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreams.java index 87564a7d7f10..0cc1638239b3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreams.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreams.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java index 9725646739c0..ab906406a89c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java index 89fcac7bc415..36a482d2d482 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listdatastreams/SyncListDataStreamsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java index a664657d2195..1d4bd352169b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java index 08d03885bbeb..889fce3bd490 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/AsyncListFirebaseLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java index 485da5c78e15..a400f6bb9a6a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java index 147accd77261..58242ac0269f 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java index 252b616ee5b5..9f29f3ba616e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listfirebaselinks/SyncListFirebaseLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java index 4f0dbddf60ca..127892e32b28 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java index b2325fedb87f..2e51442dd433 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/AsyncListGoogleAdsLinksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java index 2b76e70e5679..71b1aa6b7a17 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java index 198edc3e3673..716ff9e7f200 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java index 4fe1bca3c4c1..b50b4c6b6dce 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listgoogleadslinks/SyncListGoogleAdsLinksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java index 758fee1ca8b3..bf6355652f36 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java index c38591cf4f41..04f3a5dbd74a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/AsyncListKeyEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEvents.java index e88067b2551f..aeefe3f98c66 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java index af64abe6c3c6..70855653baf9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java index 9e0487fc311f..b57c3f41fafe 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listkeyevents/SyncListKeyEventsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java index ef68d95e33f2..fa843b7647b2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecrets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java index 403f97c19349..e2ee51bf84a9 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/AsyncListMeasurementProtocolSecretsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java index 67344fae57e0..1f4d754ed966 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecrets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java index 44dfb8d7ff96..4ef52bab5106 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsDatastreamname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java index cba00eb7e6ce..66deef4f43f2 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listmeasurementprotocolsecrets/SyncListMeasurementProtocolSecretsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListProperties.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListProperties.java index b9263a5d98f8..72908e6fc4a6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListProperties.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java index 730144732684..7888216c25d6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/AsyncListPropertiesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/SyncListProperties.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/SyncListProperties.java index 0e3092dbc61a..d6e452e9a5ba 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/SyncListProperties.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/listproperties/SyncListProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java index ef388be05f36..990f640a0819 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/AsyncProvisionAccountTicket.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java index 85a037e26c60..aad458c3c92d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/provisionaccountticket/SyncProvisionAccountTicket.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java index c2524812dab5..cb83292385a6 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/AsyncRunAccessReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/SyncRunAccessReport.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/SyncRunAccessReport.java index 701e0454cf2d..9c8cda080104 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/SyncRunAccessReport.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/runaccessreport/SyncRunAccessReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java index 319a216ae77d..88b4753b457e 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java index 645afdd7935b..e8664ceaf8de 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/AsyncSearchChangeHistoryEventsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java index 0c83d4630719..227813a06935 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/searchchangehistoryevents/SyncSearchChangeHistoryEvents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/AsyncUpdateAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/AsyncUpdateAccount.java index 96a9bd5330e6..281d397299a8 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/AsyncUpdateAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/AsyncUpdateAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccount.java index 57fa8f18639f..8f86cde69a5a 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java index 045c251df025..e5d452603d8c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateaccount/SyncUpdateAccountAccountFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java index 60c00f2e2cc3..3e4ac670a04c 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/AsyncUpdateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java index cb7615bbe061..f2c6fc0ad5b3 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java index 24b90b6f90e2..316a3721c584 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateconversionevent/SyncUpdateConversionEventConversioneventFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java index 96dae788c3b2..045e2120fbc0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/AsyncUpdateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java index 76eb5f572981..607edf3959f0 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java index 48cf0cf95924..6d773dff43ad 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustomdimension/SyncUpdateCustomDimensionCustomdimensionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java index c5d037b82b87..e6c7d510c928 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/AsyncUpdateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java index 9e4f6c76a186..33ac2afa6196 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java index e82b5948d18e..2735186e04ef 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatecustommetric/SyncUpdateCustomMetricCustommetricFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java index 3e0636a63118..3c1349fc3b41 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/AsyncUpdateDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java index 3a4a2278b2a3..907e29154b08 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java index 81031f0834a2..aa442708d901 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedataretentionsettings/SyncUpdateDataRetentionSettingsDataretentionsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java index 662233665a25..38cbccbeb0c5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/AsyncUpdateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java index b36e4c341846..faaa949bf28d 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java index 31867b0e71b9..7bb3ca2d0371 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatedatastream/SyncUpdateDataStreamDatastreamFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java index 4ea9622d13a1..05df8c23a0bc 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/AsyncUpdateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java index 007e281012ee..0d496de60034 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLink.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java index 6128b809a83a..b6ec185d3f30 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updategoogleadslink/SyncUpdateGoogleAdsLinkGoogleadslinkFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java index 72ead86ba6ce..da9e36523ff4 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/AsyncUpdateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java index 2f074b22cdaf..b4443a13428b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java index 5e255c23875d..5a60f153b853 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatekeyevent/SyncUpdateKeyEventKeyeventFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java index bb9c3d4e7cec..412d40943486 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/AsyncUpdateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java index 27ecdfd8e6d1..dba96a921811 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java index c98cbaf6d44d..46cfc36ca223 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updatemeasurementprotocolsecret/SyncUpdateMeasurementProtocolSecretMeasurementprotocolsecretFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/AsyncUpdateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/AsyncUpdateProperty.java index 6e51db084e87..9eb632496a92 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/AsyncUpdateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/AsyncUpdateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdateProperty.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdateProperty.java index 6070d2eaad1d..ef03d3370d2b 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdateProperty.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdateProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java index 5091c59c9a37..4d763cb35b96 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservice/updateproperty/SyncUpdatePropertyPropertyFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservicesettings/getaccount/SyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservicesettings/getaccount/SyncGetAccount.java index 32c6ec52ae95..321ba72ae1a5 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservicesettings/getaccount/SyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/analyticsadminservicesettings/getaccount/SyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java index c8b17f315625..d15ca33e6552 100644 --- a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java +++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1beta/stub/analyticsadminservicestubsettings/getaccount/SyncGetAccount.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/CHANGELOG.md b/java-analytics-data/CHANGELOG.md index 8ca9d7bbcebf..604b71456e14 100644 --- a/java-analytics-data/CHANGELOG.md +++ b/java-analytics-data/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.93.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.92.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.89.0 (2025-10-21) ### Dependencies diff --git a/java-analytics-data/README.md b/java-analytics-data/README.md index e0c0ad4f73dc..70f47f76e65a 100644 --- a/java-analytics-data/README.md +++ b/java-analytics-data/README.md @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.analytics google-analytics-data - 0.89.0 + 0.92.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.analytics:google-analytics-data:0.89.0' +implementation 'com.google.analytics:google-analytics-data:0.92.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.analytics" % "google-analytics-data" % "0.89.0" +libraryDependencies += "com.google.analytics" % "google-analytics-data" % "0.92.0" ``` ## Authentication @@ -175,32 +175,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://developers.google.com/analytics/trusted-testing/analytics-data [javadocs]: https://cloud.google.com/java/docs/reference/google-analytics-data/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.analytics/google-analytics-data.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-data/0.89.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-data/0.92.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-analytics-data/google-analytics-data-bom/pom.xml b/java-analytics-data/google-analytics-data-bom/pom.xml index 0d75a349d97d..40f337c18146 100644 --- a/java-analytics-data/google-analytics-data-bom/pom.xml +++ b/java-analytics-data/google-analytics-data-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.analytics google-analytics-data-bom - 0.92.0-SNAPSHOT + 0.93.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,27 +27,27 @@ com.google.analytics google-analytics-data - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc grpc-google-analytics-data-v1beta - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc grpc-google-analytics-data-v1alpha - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc proto-google-analytics-data-v1beta - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc proto-google-analytics-data-v1alpha - 0.92.0-SNAPSHOT + 0.93.0 diff --git a/java-analytics-data/google-analytics-data/pom.xml b/java-analytics-data/google-analytics-data/pom.xml index 0d9886dc3b65..64bc27f96a92 100644 --- a/java-analytics-data/google-analytics-data/pom.xml +++ b/java-analytics-data/google-analytics-data/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.analytics google-analytics-data - 0.92.0-SNAPSHOT + 0.93.0 jar Google Analytics Data provides programmatic methods to access report data in Google Analytics App+Web properties. com.google.analytics google-analytics-data-parent - 0.92.0-SNAPSHOT + 0.93.0 google-analytics-data diff --git a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClient.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClient.java index 038ba0edbd40..50c335897e5d 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClient.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataSettings.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataSettings.java index b0e4cae445ee..b18e3b420043 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataSettings.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -87,8 +87,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/package-info.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/package-info.java index 38c606dbb1d7..dc8114c24058 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/package-info.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStub.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStub.java index d2e332db1884..cbc33d099e7a 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStub.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStubSettings.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStubSettings.java index d16d35daa1d8..21659bd7f7a6 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStubSettings.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/AlphaAnalyticsDataStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -135,8 +135,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataCallableFactory.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataCallableFactory.java index 9e028c730af7..0007e67d873b 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataCallableFactory.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataStub.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataStub.java index 6764ed5bcf65..4d0a0c88ff22 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataStub.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/GrpcAlphaAnalyticsDataStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataCallableFactory.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataCallableFactory.java index d6ba25abf90d..5d933ba6ac27 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataCallableFactory.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataStub.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataStub.java index 5dde5d8df660..fc8f801213da 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataStub.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClient.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClient.java index 52ed6fb88649..719398201823 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClient.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataSettings.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataSettings.java index 2e64863006a1..aeca237072c0 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataSettings.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/package-info.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/package-info.java index e3fd8f6852ae..a9a151aa8bcf 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/package-info.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStub.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStub.java index efe8f4ae6420..0665297d9723 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStub.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStubSettings.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStubSettings.java index 4f09d8743778..afaa11fb66d2 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStubSettings.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/BetaAnalyticsDataStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -128,8 +128,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataCallableFactory.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataCallableFactory.java index 09933ac3362d..88219d6befb7 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataCallableFactory.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataStub.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataStub.java index e60694a303b7..4c73f06a3ec5 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataStub.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/GrpcBetaAnalyticsDataStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataCallableFactory.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataCallableFactory.java index f10ce7ae1659..519a2e10532c 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataCallableFactory.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataStub.java b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataStub.java index 1fbb9f49dd93..d33e37c0cfa4 100644 --- a/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataStub.java +++ b/java-analytics-data/google-analytics-data/src/main/java/com/google/analytics/data/v1beta/stub/HttpJsonBetaAnalyticsDataStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientHttpJsonTest.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientHttpJsonTest.java index bd808269aca3..cae281d9a3ed 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientHttpJsonTest.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientTest.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientTest.java index 38b9da242b58..8044314a9c4b 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientTest.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsData.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsData.java index 15a1707483a1..8ed35b6992aa 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsData.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsDataImpl.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsDataImpl.java index 76dcd2f3bbb8..05352f92f8c2 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsDataImpl.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1alpha/MockAlphaAnalyticsDataImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientHttpJsonTest.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientHttpJsonTest.java index b201f16cfed0..ec385455cf3d 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientHttpJsonTest.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientTest.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientTest.java index 827b2a319045..55470f8e7c9c 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientTest.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/BetaAnalyticsDataClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsData.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsData.java index 16c4c38f7946..09d2df4ce7be 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsData.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsDataImpl.java b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsDataImpl.java index 82f24a226556..df2694beccf1 100644 --- a/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsDataImpl.java +++ b/java-analytics-data/google-analytics-data/src/test/java/com/google/analytics/data/v1beta/MockBetaAnalyticsDataImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/grpc-google-analytics-data-v1alpha/pom.xml b/java-analytics-data/grpc-google-analytics-data-v1alpha/pom.xml index 3c14c85f6fe8..501e10112a0b 100644 --- a/java-analytics-data/grpc-google-analytics-data-v1alpha/pom.xml +++ b/java-analytics-data/grpc-google-analytics-data-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-analytics-data-v1alpha - 0.92.0-SNAPSHOT + 0.93.0 grpc-google-analytics-data-v1alpha GRPC library for google-analytics-data com.google.analytics google-analytics-data-parent - 0.92.0-SNAPSHOT + 0.93.0 diff --git a/java-analytics-data/grpc-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataGrpc.java b/java-analytics-data/grpc-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataGrpc.java index 41d4552c61bf..bf1b05fc2ef9 100644 --- a/java-analytics-data/grpc-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataGrpc.java +++ b/java-analytics-data/grpc-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AlphaAnalyticsDataGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/grpc-google-analytics-data-v1beta/pom.xml b/java-analytics-data/grpc-google-analytics-data-v1beta/pom.xml index ae336dc61bde..e92da3c4bc65 100644 --- a/java-analytics-data/grpc-google-analytics-data-v1beta/pom.xml +++ b/java-analytics-data/grpc-google-analytics-data-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-analytics-data-v1beta - 0.92.0-SNAPSHOT + 0.93.0 grpc-google-analytics-data-v1beta GRPC library for grpc-google-analytics-data-v1beta com.google.analytics google-analytics-data-parent - 0.92.0-SNAPSHOT + 0.93.0 diff --git a/java-analytics-data/grpc-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataGrpc.java b/java-analytics-data/grpc-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataGrpc.java index b00962513a4c..fce70dc40935 100644 --- a/java-analytics-data/grpc-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataGrpc.java +++ b/java-analytics-data/grpc-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BetaAnalyticsDataGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/pom.xml b/java-analytics-data/pom.xml index a8e87445ac52..d0db52572dea 100644 --- a/java-analytics-data/pom.xml +++ b/java-analytics-data/pom.xml @@ -4,7 +4,7 @@ com.google.analytics google-analytics-data-parent pom - 0.92.0-SNAPSHOT + 0.93.0 Google Analytics Data Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,27 +29,27 @@ com.google.analytics google-analytics-data - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc proto-google-analytics-data-v1alpha - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc grpc-google-analytics-data-v1alpha - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc proto-google-analytics-data-v1beta - 0.92.0-SNAPSHOT + 0.93.0 com.google.api.grpc grpc-google-analytics-data-v1beta - 0.92.0-SNAPSHOT + 0.93.0 diff --git a/java-analytics-data/proto-google-analytics-data-v1alpha/pom.xml b/java-analytics-data/proto-google-analytics-data-v1alpha/pom.xml index 33118ae6f66c..0417a13cfab5 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/pom.xml +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-analytics-data-v1alpha - 0.92.0-SNAPSHOT + 0.93.0 proto-google-analytics-data-v1alpha Proto library for google-analytics-data com.google.analytics google-analytics-data-parent - 0.92.0-SNAPSHOT + 0.93.0 diff --git a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AnalyticsDataApiProto.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AnalyticsDataApiProto.java index 1cf239d071da..fe243eb0563b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AnalyticsDataApiProto.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AnalyticsDataApiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimension.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimension.java index 4b5e6c55bc6a..6ec6a8f4f378 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimension.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionOrBuilder.java index 421497873e63..324332f36e35 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValue.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValue.java index 48e9ffb0de55..58bab3358ab3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValueOrBuilder.java index b98dbc9bd1ac..1eab25085a33 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceDimensionValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceList.java index 7d8a87dfc06b..65e0ff4877d0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadata.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadata.java index 81df1d28c461..306aae9fce22 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadataOrBuilder.java index 8e0b26892602..c684f6eb093c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListName.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListName.java index 4fa3939e5664..a96e34e79181 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListName.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListOrBuilder.java index 38096b6b75d5..da554226dfa6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRow.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRow.java index 5088f16a51cd..a8258356860f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRow.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRowOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRowOrBuilder.java index bc9610279f82..48ab628e2e5b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRowOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/AudienceRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilter.java index 18a11221f31d..a99fa1b552ae 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilterOrBuilder.java index cef6d632eadf..24b2cd2872c7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/BetweenFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Cohort.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Cohort.java index cca40ad6cc78..c436d5c6f895 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Cohort.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Cohort.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortOrBuilder.java index bf1174c82ad4..822c4948af69 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettings.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettings.java index 133d9b4b96c5..6f7768877164 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettings.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettingsOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettingsOrBuilder.java index 2f736ae9bb19..245ca6a03802 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettingsOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortReportSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpec.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpec.java index 2fe0bb995f79..f47f10dea0b7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpec.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpecOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpecOrBuilder.java index 83dc732457ca..6e4a7e7ad299 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpecOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRange.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRange.java index a7acbb307a32..8915e7356e73 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRange.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRangeOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRangeOrBuilder.java index dba334544b0c..86751bae8123 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRangeOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CohortsRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequest.java index 8013bc9f5dbb..04c484a2747c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequestOrBuilder.java index b2ca974f76f3..799a319e8035 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateAudienceListRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequest.java index f2cb3fbf6e72..cf5fef1f0372 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequestOrBuilder.java index a5332d4dc806..2c270f636bea 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateRecurringAudienceListRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequest.java index df01294e0459..4965a1891619 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequestOrBuilder.java index b221625b8c1f..d72a3f9f392b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/CreateReportTaskRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRange.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRange.java index a4e447d43aa6..3cc579f339c0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRange.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRangeOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRangeOrBuilder.java index 4d83e66546e8..9d4b916ab6bf 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRangeOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DateRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Dimension.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Dimension.java index 66773f2c428e..33372a967e4a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Dimension.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Dimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpression.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpression.java index c12925c27b34..7e8847f2c854 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpressionOrBuilder.java index 5eb430a71ccf..7e8604113aab 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeader.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeader.java index dc9a371fad7e..1ad64290f557 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeader.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeaderOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeaderOrBuilder.java index 42295f7de713..038c71505fbb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeaderOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionOrBuilder.java index a12758084337..f8868c07792d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValue.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValue.java index 4b49d24860fe..0f5f7e3c6262 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValueOrBuilder.java index 9d34312ce628..5a2d656b8997 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilter.java index b167a9a92f3a..79119334c431 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilterOrBuilder.java index d62c2f39a407..ec139abe5ce5 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EmptyFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventCriteriaScoping.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventCriteriaScoping.java index 941e905e531a..7c6f7ad93657 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventCriteriaScoping.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventCriteriaScoping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventExclusionDuration.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventExclusionDuration.java index 84d5be3db6ef..0a5d5fdfa2dd 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventExclusionDuration.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventExclusionDuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegment.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegment.java index cb34c36faca8..e900c696a8dc 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegment.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroup.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroup.java index f4df703125e2..7d15b1de789a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroup.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroupOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroupOrBuilder.java index e13116ac5511..9894863c31b9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroupOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentConditionGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteria.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteria.java index e8417ba67720..e23e610fe2d0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteria.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteria.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteriaOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteriaOrBuilder.java index 34c006fccf4b..82062501ed66 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteriaOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentCriteriaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusion.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusion.java index 58445c65911d..1ba386ee76f2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusion.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusionOrBuilder.java index 9f3ac192c0cf..6c4c6e29a4fc 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentExclusionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentOrBuilder.java index 39b846244ede..84310997ae55 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/EventSegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Filter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Filter.java index 7e822eb0cd41..847ab3c85f9c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Filter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Filter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpression.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpression.java index de6ddf8bc22d..851fdec1e1a6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionList.java index 479f33fa061c..83bbaff59ca1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionListOrBuilder.java index bfb596168174..eab29d13959a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionOrBuilder.java index c89c44d4728c..bd7b057bd6a6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterOrBuilder.java index 7a146ed4fe1c..0fc6440fdbad 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Funnel.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Funnel.java index 1df88dc6b460..4342740e0f1f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Funnel.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Funnel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdown.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdown.java index eaa12110f54e..94a763634835 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdown.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdown.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdownOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdownOrBuilder.java index 74875b9ab2d9..60c6860391a6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdownOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelBreakdownOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilter.java index 1d64017a59d1..61260fe11dc4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilterOrBuilder.java index 24c7eb8d3f19..8e9bb7c29a4c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelEventFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilter.java index a1925ebd057a..0724b2f5592f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilterOrBuilder.java index 3d022df5bac6..e7f85b826d3f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFieldFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpression.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpression.java index 0b920af61393..a32c87026635 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionList.java index 8b06a83abf02..544a3591408e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionListOrBuilder.java index 789860be6666..52a0ab39d0a2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionOrBuilder.java index a3c33472e579..fd203af24019 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextAction.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextAction.java index 4097a3c9adcd..aae4b01b4024 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextAction.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextActionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextActionOrBuilder.java index 13ed7058aa3c..811b6cb6549f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextActionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelNextActionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelOrBuilder.java index b02c3882f06e..dd9043bfd797 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilter.java index b64543642e71..1bf937d01cab 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpression.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpression.java index 701685f8ad4e..a754353e7fc3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionList.java index 302e3bff7db8..f0ffe2bf77fb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionListOrBuilder.java index fa0760882135..fbf91bc26bb0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionOrBuilder.java index 6ea6cb3be40a..746725f483c6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterOrBuilder.java index ec4f6e2b4e56..614e6a8ef8ed 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelParameterFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadata.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadata.java index 731005c0b7f3..d0302fe0bb29 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadataOrBuilder.java index eace096b4504..42c16ed418d7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelResponseMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStep.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStep.java index be35c721c017..50d80a3dc105 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStep.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStep.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStepOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStepOrBuilder.java index e3a8e38b0061..e9794f094018 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStepOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelStepOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReport.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReport.java index eb7abe0a1223..3910440d50e0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReport.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReportOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReportOrBuilder.java index bb401fd7764e..19b7623f96a9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReportOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FunnelSubReportOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequest.java index 47d6bb719fe4..f161f46a51b9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequestOrBuilder.java index d331918b0929..ed58138e1c5b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetAudienceListRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequest.java index d735a75fdf46..5a2230326c94 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequestOrBuilder.java index caa38d767352..c6c50c046dd3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetPropertyQuotasSnapshotRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequest.java index c5e2ec91c357..bf2a6d945399 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequestOrBuilder.java index c99c4803a5bb..2c35ca4542b2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetRecurringAudienceListRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequest.java index 98a68af583e0..f7cdff45ad6d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequestOrBuilder.java index fb25bb45d84a..24679e0bbc43 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/GetReportTaskRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilter.java index 9e0d8e473e5b..40fb5c27ff83 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilterOrBuilder.java index 744621be96db..3c02c1314976 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/InListFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequest.java index d4b9da3171e5..65a048feda12 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequestOrBuilder.java index 58460e2669dd..92f896d32aca 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponse.java index 7ed89cff2665..ce5f3be0b9c0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponseOrBuilder.java index 101880eb2104..849425256e84 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListAudienceListsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequest.java index a070884029c4..5358469b4236 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequestOrBuilder.java index c9330dbcc99a..762487af7b11 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponse.java index 9e2c21f0118a..d8e3b9387867 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponseOrBuilder.java index d88f3ce7931d..693d537c144d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListRecurringAudienceListsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequest.java index c01609df7a7f..4b10009ec920 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequestOrBuilder.java index 8562c44a3706..28bcd916389c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponse.java index 417927f37552..da96b8aa1547 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponseOrBuilder.java index 483228cc48a0..cb19a43972f3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ListReportTasksResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Metric.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Metric.java index 3934d2af7480..4ff682ba40f9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Metric.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Metric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricAggregation.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricAggregation.java index 440df1fde00a..5de5fde38e95 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricAggregation.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricAggregation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeader.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeader.java index 11e6abdcaa57..ff7b588eeff6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeader.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeaderOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeaderOrBuilder.java index e08fb454ce06..d7dd48ab1253 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeaderOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricOrBuilder.java index 644cd11883bd..56a677071b90 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricType.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricType.java index 58ac34e5f725..7c9a94e5b07a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricType.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValue.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValue.java index 425723c6c364..730df191c8c1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValueOrBuilder.java index 28e20b6301ca..963854276679 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilter.java index fd0b821f644b..9dee86911a20 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilterOrBuilder.java index b75695d31812..5d9e41d71dd4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValue.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValue.java index 384b277c5368..d773c92448ed 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValueOrBuilder.java index 7b85c5a7a00b..d94f2bf29248 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderBy.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderBy.java index 99c1b0498290..f0e594f5d24d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderBy.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderBy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderByOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderByOrBuilder.java index 18aebf567ea2..dd974d98e02f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderByOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/OrderByOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyName.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyName.java index ed9a1584cd8a..4cff2388e8eb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyName.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuota.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuota.java index 30eafcd5dc6e..4d233658b228 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuota.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuota.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotaOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotaOrBuilder.java index b9b9f7f54e74..c9ca250e67cc 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotaOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshot.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshot.java index 11bd0f4d2234..863571c70217 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshot.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshot.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotName.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotName.java index 1aac6dce57a9..d7519aec120d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotName.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotOrBuilder.java index 5bbca2f28768..97746ff292d7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/PropertyQuotasSnapshotOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequest.java index 3cddc45dff68..782fb43317ea 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequestOrBuilder.java index e78da8767fa3..799b0bfa12ea 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponse.java index 5798398e902a..d9477ea033d3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponseOrBuilder.java index 9dda8ff5d80a..f6aa00ec022f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryAudienceListResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequest.java index 99f0ea6f9b68..92600ce08b72 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequestOrBuilder.java index fb5a5654b9f3..66c8168e96f8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponse.java index a9c0c93d43cf..10d9cdfba7cb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponseOrBuilder.java index 646dfc7262b2..f517b0c86058 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QueryReportTaskResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatus.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatus.java index bfecc393c462..0eda8b2464a4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatus.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatusOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatusOrBuilder.java index 6ca12df80b39..8cb29ee5cc6b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatusOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/QuotaStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceList.java index e2797817db73..9a136ac5ce5c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListName.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListName.java index eff80ec5c7bf..4bf98392596a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListName.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListOrBuilder.java index 2a28f9eb48f4..5fc12bfa1ea4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RecurringAudienceListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTask.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTask.java index 850d01bc365a..5c95f845116c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTask.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadata.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadata.java index 7a416134e9f3..9c9ee44af200 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadataOrBuilder.java index b6e026edb8b4..aa82a3903143 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskName.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskName.java index 8b6a760df10e..2952d9e8eb2b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskName.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskOrBuilder.java index 353e1925f6fb..f13b7f3cb774 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportTaskOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportingApiProto.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportingApiProto.java index e9b75c4f59aa..cf574b04d93c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportingApiProto.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ReportingApiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaData.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaData.java index e57ceb5dd8ed..035c9a99e5f9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaData.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaDataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaDataOrBuilder.java index af147fc1a053..c8ec527fa31e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaDataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/ResponseMetaDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RestrictedMetricType.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RestrictedMetricType.java index 2f516c2a6b2e..528dafb4e386 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RestrictedMetricType.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RestrictedMetricType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Row.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Row.java index 15498bdf6ba6..f6f5ba887dd1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Row.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Row.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RowOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RowOrBuilder.java index 8fb74603c484..090e49372398 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RowOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequest.java index 5ac209d1ba41..590cc37d8d33 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequestOrBuilder.java index 7aa08e1dcbf9..89885518626c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponse.java index 0d763aa8b260..ec8b12af5ac8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponseOrBuilder.java index ccc3154ac01c..59b78897d507 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/RunFunnelReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingLevel.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingLevel.java index 4ac3654df882..3ea3da9b58e6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingLevel.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadata.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadata.java index 5de3fec2b09d..a2ff16d6d24f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadataOrBuilder.java index 23d93b30448f..52d1d273585d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SamplingMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Segment.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Segment.java index 8020b70b2f4e..462f51f67b3f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Segment.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Segment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilter.java index 0783458b2c6a..0c7eb45e5887 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilterOrBuilder.java index fe6c73d441a0..ccecd7a99734 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentEventFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilter.java index f6081e8723d7..ad2ac57575b9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpression.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpression.java index c44a9411af87..1c082a52ef95 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionList.java index 7840ee2de897..bdb4986a8a39 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionListOrBuilder.java index a143bd25d797..fcab74d53c72 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionOrBuilder.java index 7f9531ba6d05..a4c732016b79 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterOrBuilder.java index 5a4ad39a88fa..0d089842c8ae 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScoping.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScoping.java index dfc72d5245c6..c4747b0b8257 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScoping.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScoping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScopingOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScopingOrBuilder.java index ec677269dd85..6bb32a2a36b7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScopingOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentFilterScopingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentOrBuilder.java index 74f39b9489ca..956933d36109 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilter.java index b97ed2ddc1f5..7e45df735777 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpression.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpression.java index 39c3bd712f54..71746d4fc3f2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionList.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionList.java index e880b089908c..abede9e545c8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionList.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionListOrBuilder.java index 840d73cda143..a938ac9b382f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionOrBuilder.java index 31d242928971..229cef1d039b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterOrBuilder.java index 4161491ea238..f41b4161df28 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScoping.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScoping.java index 087cdd1da5d2..765ebe3663b2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScoping.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScoping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScopingOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScopingOrBuilder.java index bb1077625596..eff1ffa5769d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScopingOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SegmentParameterFilterScopingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionCriteriaScoping.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionCriteriaScoping.java index 17ec3e1b5773..fa8cbf23825f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionCriteriaScoping.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionCriteriaScoping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionExclusionDuration.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionExclusionDuration.java index 8955692c9bd2..f28ecfa5bb4f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionExclusionDuration.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionExclusionDuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegment.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegment.java index fc0b3896175d..0f5818d65fc2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegment.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroup.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroup.java index 7aa761903110..da98cdd69e30 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroup.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroupOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroupOrBuilder.java index 4cf356406c05..d33b98c3143b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroupOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentConditionGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteria.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteria.java index adb35d934e2b..d2f10b44da24 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteria.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteria.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteriaOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteriaOrBuilder.java index 843c5ac6e5ff..150caecba578 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteriaOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentCriteriaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusion.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusion.java index 5dc7c8055d98..5b8199b75d6e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusion.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusionOrBuilder.java index b1df2128bde1..98b36055cbe8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentExclusionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentOrBuilder.java index be0b64869e23..077e8958ff20 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SessionSegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequest.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequest.java index 9b54248a79f5..04c812ceb06f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequestOrBuilder.java index c34830bc2be3..41109acb99ba 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponse.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponse.java index c68ec2fa83e1..bc6c7c891811 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponseOrBuilder.java index 4abcedf8c9d9..892d167918ab 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/SheetExportAudienceListResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilter.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilter.java index d64cd5a195e6..ff185b0e647e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilter.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilterOrBuilder.java index b0acb5f3c061..3fadda4e469f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/StringFilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserCriteriaScoping.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserCriteriaScoping.java index d53ba4f19f9e..9b888a0a9917 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserCriteriaScoping.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserCriteriaScoping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserExclusionDuration.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserExclusionDuration.java index 06a80110db0d..dc4a08ffe426 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserExclusionDuration.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserExclusionDuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegment.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegment.java index 0dd92edb1550..0795c6387d80 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegment.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroup.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroup.java index 2690b71f5e1c..e9590ceb5af1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroup.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroupOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroupOrBuilder.java index 958e8dbdfd94..2c1957aedbd5 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroupOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentConditionGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteria.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteria.java index e1da81962701..d1b34e20b832 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteria.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteria.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteriaOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteriaOrBuilder.java index 5c19ae507808..e95ce99d9540 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteriaOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentCriteriaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusion.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusion.java index 89c43e22137e..15ce4638174d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusion.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusionOrBuilder.java index febae040f2ca..9cc7a647478f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentExclusionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentOrBuilder.java index 71f6d2e6b1da..3dc2829ee9a0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroup.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroup.java index 3c79817ad8d0..f80e72fac4d8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroup.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroup.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroupOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroupOrBuilder.java index 2afab13c11d7..c2c1e10fa73a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroupOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSegmentSequenceGroupOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStep.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStep.java index 278eb45fdb0f..13f21e98b4b8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStep.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStep.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStepOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStepOrBuilder.java index 3b3d71470b64..fc3570e26e18 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStepOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/UserSequenceStepOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotification.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotification.java index 994131d28072..dc16af7a41f6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotification.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotification.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotificationOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotificationOrBuilder.java index 5b4fc7604bd8..945b17e8edf7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotificationOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/WebhookNotificationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/pom.xml b/java-analytics-data/proto-google-analytics-data-v1beta/pom.xml index 7a020808f809..834f81f6ec48 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/pom.xml +++ b/java-analytics-data/proto-google-analytics-data-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-analytics-data-v1beta - 0.92.0-SNAPSHOT + 0.93.0 proto-google-analytics-data-v1beta PROTO library for proto-google-analytics-data-v1beta com.google.analytics google-analytics-data-parent - 0.92.0-SNAPSHOT + 0.93.0 diff --git a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AnalyticsDataApiProto.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AnalyticsDataApiProto.java index 20c5a6a990ff..50fa47c690cb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AnalyticsDataApiProto.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AnalyticsDataApiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimension.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimension.java index b61688d33f05..58b11bf65dec 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimension.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionOrBuilder.java index 9008f16a7acf..4542df81b6dc 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValue.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValue.java index 919043b346b1..b9dbdf131cf4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValueOrBuilder.java index 6de8150fa39f..5eade06f49d1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceDimensionValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExport.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExport.java index a2154278d01a..88a0ad6740e9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExport.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadata.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadata.java index fc6ed3128c91..25ef2dc12ac8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadataOrBuilder.java index 2a269f790a3a..379d8033070c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportName.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportName.java index a23dad926c52..4783a9e1cf64 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportName.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportOrBuilder.java index e027456de0ce..97accb839acf 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceExportOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRow.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRow.java index b0823ed53e6a..12ab657b99f8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRow.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRowOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRowOrBuilder.java index 8c149a5a30b4..436c5bd6ec06 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRowOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/AudienceRowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequest.java index 39802ca7fe71..4c3b7140313a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequestOrBuilder.java index f10beed184f0..bd9f5d372c0d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponse.java index 076dd55b8a6f..5930ef2972f8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponseOrBuilder.java index a51aa777123d..0384cd465802 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunPivotReportsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequest.java index 0cd46de73589..fed054c25213 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequestOrBuilder.java index 40e8294199a3..dfa7353c7f0f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponse.java index 212574ef73f6..b40b205685df 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponseOrBuilder.java index cb995e60bb38..849ee0837d14 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/BatchRunReportsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequest.java index 458835057af1..afb1c2842a06 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequestOrBuilder.java index c631184757dc..a3940322fb72 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponse.java index 745cee7a5a77..83aa04469b25 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponseOrBuilder.java index 38125acec5a9..82d91be6b2fa 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CheckCompatibilityResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Cohort.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Cohort.java index a1bbc7b5eb75..6377d981b452 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Cohort.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Cohort.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortOrBuilder.java index c4e702669f27..63b65f5bc4ba 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettings.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettings.java index d2f0662cc1de..f976a9133053 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettings.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettingsOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettingsOrBuilder.java index 2e9125d1d277..5ffe136f8f59 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettingsOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortReportSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpec.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpec.java index 2accd1db7efb..92405b3fd466 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpec.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpecOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpecOrBuilder.java index cb680ac74231..f0b391c46427 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpecOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRange.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRange.java index 849dbfd18d4e..94d9b7919317 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRange.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRangeOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRangeOrBuilder.java index 8b4ff5962b5c..c72da3d49556 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRangeOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CohortsRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Comparison.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Comparison.java index 2e6534c424a4..33faa9dda65c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Comparison.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Comparison.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadata.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadata.java index 28b78b165f4d..b27a967b2609 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadataOrBuilder.java index 03e32e63e67a..ba66849c3708 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonOrBuilder.java index d4749eac97a3..4860b66a93b5 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ComparisonOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Compatibility.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Compatibility.java index af5bc1c5c360..972aa8d24a60 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Compatibility.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Compatibility.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequest.java index 1f2aa20751a3..e7f24d74b54c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequestOrBuilder.java index 2a63b6e55c0f..07381ea59cef 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/CreateAudienceExportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRange.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRange.java index 9dd048d12982..3c42cfac5937 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRange.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRangeOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRangeOrBuilder.java index aa3139335ac8..dec0b2950c70 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRangeOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DateRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Dimension.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Dimension.java index 8b33d84338dd..e7effde46aa6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Dimension.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Dimension.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibility.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibility.java index 096aa3ad6944..36f00847ba90 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibility.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibility.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibilityOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibilityOrBuilder.java index 3e55cf6a44f3..6114771fe71b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibilityOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionCompatibilityOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpression.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpression.java index fc14be2dec81..2c1fcad33938 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpressionOrBuilder.java index f774304025eb..d00c1e8195f1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeader.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeader.java index 259397b5d82d..4be3766e7f18 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeader.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeaderOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeaderOrBuilder.java index fd91fdff6fce..2c0d3dd55e44 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeaderOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadata.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadata.java index b207cecb3d29..608bb04be822 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadataOrBuilder.java index 45774d645c05..58cf3ce960f9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionOrBuilder.java index 6d56ffa38874..56a3614e7257 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValue.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValue.java index 2d7f2648effc..ff83ba79ead2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValueOrBuilder.java index c16c486a1755..143281fc18ef 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Filter.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Filter.java index a1574b1ca417..028d4c237088 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Filter.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Filter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpression.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpression.java index a97b964c70bd..1cc2be186106 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpression.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionList.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionList.java index dfeddcb25eba..6eed01bc9d35 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionList.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionListOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionListOrBuilder.java index b90486a9b9c9..f08502341354 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionListOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionOrBuilder.java index 5b9c1cd1a102..fa3201899186 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterExpressionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterOrBuilder.java index 340d8e8687cb..e2b2417244bf 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/FilterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequest.java index fc06e4f413cb..4710879a933f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequestOrBuilder.java index a956ce2b077c..9556ef468dfb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetAudienceExportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequest.java index 6e42e76ed7e6..aee3706a143e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequestOrBuilder.java index 3db591677263..eb7de0334174 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/GetMetadataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequest.java index 983ff14625fb..0256676fe69c 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequestOrBuilder.java index e55a420c2ad7..236be66f78e3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponse.java index de20992d3f8b..d4a919cba0ea 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponseOrBuilder.java index df960942966f..2847f6e40765 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ListAudienceExportsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metadata.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metadata.java index 199fcde7b5e8..6bfbdbfe9cc3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataName.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataName.java index d7b3f9b8c4ad..51a020ca13f2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataName.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataOrBuilder.java index 76cf6e25fd1b..a62d479e6fc9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metric.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metric.java index ecaad8daf770..260c116f556a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metric.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Metric.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricAggregation.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricAggregation.java index eb260514fa03..507ef416b826 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricAggregation.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricAggregation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibility.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibility.java index 46be88e18374..1e157226861a 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibility.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibility.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibilityOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibilityOrBuilder.java index 1df71ce99262..7c1f76bc7fc4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibilityOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricCompatibilityOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeader.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeader.java index 262a8e463f3b..2a208a540585 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeader.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeaderOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeaderOrBuilder.java index 5b2c15ef0a9b..88089e2133e7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeaderOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadata.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadata.java index b66c8d04ebc0..fd354e2b68a9 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadataOrBuilder.java index 255b01447bcb..20e54edfa101 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricOrBuilder.java index 69b2bde61348..edda0df36634 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricType.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricType.java index 763459742aea..2d68c624b5d6 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricType.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValue.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValue.java index 0522ff99a3c8..6c0116ff65bf 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValueOrBuilder.java index 75c1578dc61f..63e6ba69e3b1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MetricValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRange.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRange.java index c046ffe3f38b..0aeb351ad201 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRange.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRangeOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRangeOrBuilder.java index ef18df975f14..369eed420bc7 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRangeOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/MinuteRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValue.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValue.java index 539a885bd087..5187c3565da2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValue.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValueOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValueOrBuilder.java index 6bffe53976b2..a794f570ac25 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValueOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/NumericValueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderBy.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderBy.java index 648cd71c595a..84066cfee98e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderBy.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderBy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderByOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderByOrBuilder.java index c574d7d6a1bc..e0203cbbea0d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderByOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/OrderByOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Pivot.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Pivot.java index 70f519af8dfc..74fa591b94b1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Pivot.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Pivot.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeader.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeader.java index 6c774749196a..598ea6720e79 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeader.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeaderOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeaderOrBuilder.java index 64191b69e767..852f8d32e0c2 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeaderOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotDimensionHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeader.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeader.java index 37ec80dff7d7..fc14e6928644 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeader.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeaderOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeaderOrBuilder.java index b7e79776d335..b2b17532d37d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeaderOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotHeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotOrBuilder.java index 3e82323f4404..7645107974ae 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PivotOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyName.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyName.java index 8aed44c90776..e145f372389d 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyName.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuota.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuota.java index deace81a7228..72a6e71c60ac 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuota.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuota.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuotaOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuotaOrBuilder.java index 3e1fae917c4a..c817dcf7df26 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuotaOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/PropertyQuotaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequest.java index aab7144eacea..81630403aed8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequestOrBuilder.java index e26897227807..67ef8b03b54f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponse.java index 7a4ff0f16d11..142ddb2c581b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponseOrBuilder.java index 35bbca2994af..0405a8b54ed4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QueryAudienceExportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatus.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatus.java index 804dbd748de5..15a393f66812 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatus.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatusOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatusOrBuilder.java index 13eb3232b391..18c570aa73c3 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatusOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/QuotaStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ReportingApiProto.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ReportingApiProto.java index 4900bd8ea691..857e983b4662 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ReportingApiProto.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ReportingApiProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaData.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaData.java index 767c946ccf9d..43dddf8c1840 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaData.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaDataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaDataOrBuilder.java index 15215ae51993..d8865d4520b1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaDataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ResponseMetaDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RestrictedMetricType.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RestrictedMetricType.java index 26ec0d470e7d..d43826ebc27b 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RestrictedMetricType.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RestrictedMetricType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Row.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Row.java index 5c33cc410956..f53166688efb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Row.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/Row.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RowOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RowOrBuilder.java index 36cd9340fbd1..57984db10861 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RowOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequest.java index d1dc2b4f1039..8646c28dafbb 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequestOrBuilder.java index 7eaa0ff37df7..d00ee2ef454e 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponse.java index c7dbff9cca44..8f8677449cb8 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponseOrBuilder.java index 62ae5f0b3872..805777347943 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunPivotReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequest.java index 9b6405808acd..e9a04127bef4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequestOrBuilder.java index a76de6d79c5c..91e1c5ccf9ec 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponse.java index 38f042bea6a3..ccb36baebaf1 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponseOrBuilder.java index f8a1e81d7d56..332e75722506 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunRealtimeReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequest.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequest.java index d87d335109f3..d53b517e9a1f 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequest.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequestOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequestOrBuilder.java index 8bc143cb2619..ae2766106258 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequestOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponse.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponse.java index 8a14d66ca7c0..1dc57e8c29d0 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponse.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponseOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponseOrBuilder.java index 361731118700..25c6d7beb1b4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponseOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/RunReportResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadata.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadata.java index dca8b70904cb..cd643f38c837 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadata.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadataOrBuilder.java b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadataOrBuilder.java index 4ece07b7d512..abbaa9fe1ec4 100644 --- a/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadataOrBuilder.java +++ b/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/SamplingMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetCredentialsProvider.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetCredentialsProvider.java index 01bc91444467..605c92c5cb4a 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetCredentialsProvider.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetEndpoint.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetEndpoint.java index c84c925840e7..751176d64510 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetEndpoint.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java index c79dbee712ee..50d2535b29cb 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceList.java index 01cc903afa69..5a325440199b 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceListLRO.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceListLRO.java index 434f32d16518..7b8beeab3962 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceListLRO.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/AsyncCreateAudienceListLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceList.java index 21844df50d4c..0c210c01f565 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListPropertynameAudiencelist.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListPropertynameAudiencelist.java index eeaf1e11cf99..975c4d070e04 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListPropertynameAudiencelist.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListPropertynameAudiencelist.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListStringAudiencelist.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListStringAudiencelist.java index 98b6dadc58b9..dad3411d3cea 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListStringAudiencelist.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createaudiencelist/SyncCreateAudienceListStringAudiencelist.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/AsyncCreateRecurringAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/AsyncCreateRecurringAudienceList.java index 0aa583048c20..49dff8e9d8fb 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/AsyncCreateRecurringAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/AsyncCreateRecurringAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceList.java index edf81efe576b..2b8ce3ee059c 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListPropertynameRecurringaudiencelist.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListPropertynameRecurringaudiencelist.java index 7808de4171da..ca5baf4d24f7 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListPropertynameRecurringaudiencelist.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListPropertynameRecurringaudiencelist.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListStringRecurringaudiencelist.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListStringRecurringaudiencelist.java index c76e547ca619..3be983bb9708 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListStringRecurringaudiencelist.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createrecurringaudiencelist/SyncCreateRecurringAudienceListStringRecurringaudiencelist.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTask.java index 4f2aecf069da..db5c213b2f62 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTaskLRO.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTaskLRO.java index 9b7faffbdcd0..c755c0ea65bd 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTaskLRO.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/AsyncCreateReportTaskLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTask.java index 64f8588ebb5b..ccb99f32db41 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskPropertynameReporttask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskPropertynameReporttask.java index 3cc8d0e7804d..9b5aced32f4b 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskPropertynameReporttask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskPropertynameReporttask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskStringReporttask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskStringReporttask.java index 9a3568d58752..6ed648365045 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskStringReporttask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/createreporttask/SyncCreateReportTaskStringReporttask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/AsyncGetAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/AsyncGetAudienceList.java index fd7a3c2990f3..6467802586a1 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/AsyncGetAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/AsyncGetAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceList.java index b55ae4acdd29..06838bdfacb9 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListAudiencelistname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListAudiencelistname.java index eb3baa51930e..4cd194117173 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListAudiencelistname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListAudiencelistname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListString.java index 56d6fbf20481..a74e888d6cf8 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getaudiencelist/SyncGetAudienceListString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/AsyncGetPropertyQuotasSnapshot.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/AsyncGetPropertyQuotasSnapshot.java index 033a39a61af3..70a9568c38b9 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/AsyncGetPropertyQuotasSnapshot.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/AsyncGetPropertyQuotasSnapshot.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshot.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshot.java index c633e0e418eb..ac4f2ee61bb4 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshot.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshot.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotPropertyquotassnapshotname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotPropertyquotassnapshotname.java index c4c04d36ab96..5f7749f01673 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotPropertyquotassnapshotname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotPropertyquotassnapshotname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotString.java index b4cd01e634da..883f8ff6739a 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getpropertyquotassnapshot/SyncGetPropertyQuotasSnapshotString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/AsyncGetRecurringAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/AsyncGetRecurringAudienceList.java index a9bf78ffe204..ed238e76db38 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/AsyncGetRecurringAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/AsyncGetRecurringAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceList.java index 4f99a8822464..7a02bd554d61 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListRecurringaudiencelistname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListRecurringaudiencelistname.java index 44886f2105a8..842dc54e6917 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListRecurringaudiencelistname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListRecurringaudiencelistname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListString.java index 6108488b5bd3..83d232ea75f3 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getrecurringaudiencelist/SyncGetRecurringAudienceListString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/AsyncGetReportTask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/AsyncGetReportTask.java index b547d56a6ebe..6a291ada24ce 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/AsyncGetReportTask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/AsyncGetReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTask.java index 42f424a5371a..7a7d53132c46 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskReporttaskname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskReporttaskname.java index cb7d7bddb9d7..cfbd8e16c594 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskReporttaskname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskReporttaskname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskString.java index ba1d20cfbb8c..ef21145a6c2c 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/getreporttask/SyncGetReportTaskString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceLists.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceLists.java index 34e4906edbc6..385c957d166c 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceLists.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceLists.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceListsPaged.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceListsPaged.java index d20127fc028b..3d80ae993154 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceListsPaged.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/AsyncListAudienceListsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceLists.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceLists.java index 70f7d1c15198..298dea1e0859 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceLists.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceLists.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsPropertyname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsPropertyname.java index 368ad9684092..db20c4acaafb 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsPropertyname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsString.java index 9822d33bdbef..d683c920941c 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listaudiencelists/SyncListAudienceListsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceLists.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceLists.java index a00ac268c75a..0f74d0d31639 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceLists.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceLists.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceListsPaged.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceListsPaged.java index 2aa5a388f55f..855cb963a195 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceListsPaged.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/AsyncListRecurringAudienceListsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceLists.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceLists.java index 757bc03874db..12c3be4a924a 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceLists.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceLists.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsPropertyname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsPropertyname.java index b0a1942c45a4..c4736790d556 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsPropertyname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsString.java index d28e98b2e997..e3475e4c2e37 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listrecurringaudiencelists/SyncListRecurringAudienceListsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasks.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasks.java index 53639bac411d..0877cc2785ee 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasks.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasksPaged.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasksPaged.java index 24a0484ce32a..6c1f9a823e57 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasksPaged.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/AsyncListReportTasksPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasks.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasks.java index dc64e5265f1a..f67a781ca366 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasks.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasks.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksPropertyname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksPropertyname.java index b7984b97dc3d..f96791a7a4c7 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksPropertyname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksString.java index b976bf2826dd..154bdbf18a63 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/listreporttasks/SyncListReportTasksString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/AsyncQueryAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/AsyncQueryAudienceList.java index eae79ee519e6..70b9dbebad31 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/AsyncQueryAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/AsyncQueryAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceList.java index 85208afdb9d9..ec73607eafb2 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceListString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceListString.java index 2f3cf698fd8a..3b7ab8b03473 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceListString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryaudiencelist/SyncQueryAudienceListString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/AsyncQueryReportTask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/AsyncQueryReportTask.java index 0ed5b44fb203..a006fc50c461 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/AsyncQueryReportTask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/AsyncQueryReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTask.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTask.java index f1f4ead4376f..8bd9f88f9d8b 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTask.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTaskString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTaskString.java index 6be7e8c540bc..22f208f28514 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTaskString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/queryreporttask/SyncQueryReportTaskString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/AsyncRunFunnelReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/AsyncRunFunnelReport.java index 985b80c90244..d0a2634ef875 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/AsyncRunFunnelReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/AsyncRunFunnelReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/SyncRunFunnelReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/SyncRunFunnelReport.java index 18ea4bd174ba..d2b76f3f5a55 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/SyncRunFunnelReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/runfunnelreport/SyncRunFunnelReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/AsyncSheetExportAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/AsyncSheetExportAudienceList.java index 7d4a3cce6458..6e1df485402b 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/AsyncSheetExportAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/AsyncSheetExportAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceList.java index 80879afc29af..bedeae9d0739 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListAudiencelistname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListAudiencelistname.java index f6346168601a..16a83313e42d 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListAudiencelistname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListAudiencelistname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListString.java index 59bc358a7bdc..d2d7e3acfe21 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdata/sheetexportaudiencelist/SyncSheetExportAudienceListString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/createaudiencelist/SyncCreateAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/createaudiencelist/SyncCreateAudienceList.java index 6007f9ead9e3..5cd3d941473c 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/createaudiencelist/SyncCreateAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/createaudiencelist/SyncCreateAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/runfunnelreport/SyncRunFunnelReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/runfunnelreport/SyncRunFunnelReport.java index 58cb0102caa5..dbecbe1d7a9e 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/runfunnelreport/SyncRunFunnelReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/alphaanalyticsdatasettings/runfunnelreport/SyncRunFunnelReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/createaudiencelist/SyncCreateAudienceList.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/createaudiencelist/SyncCreateAudienceList.java index a8de8a493837..5b2e8280b6ae 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/createaudiencelist/SyncCreateAudienceList.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/createaudiencelist/SyncCreateAudienceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/runfunnelreport/SyncRunFunnelReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/runfunnelreport/SyncRunFunnelReport.java index d2650ca9d639..5f187a2f5e46 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/runfunnelreport/SyncRunFunnelReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1alpha/stub/alphaanalyticsdatastubsettings/runfunnelreport/SyncRunFunnelReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/AsyncBatchRunPivotReports.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/AsyncBatchRunPivotReports.java index cc8cb2c5b24e..2e6f87b8f936 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/AsyncBatchRunPivotReports.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/AsyncBatchRunPivotReports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/SyncBatchRunPivotReports.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/SyncBatchRunPivotReports.java index b865b1d4e203..a573d8d8d6b6 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/SyncBatchRunPivotReports.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunpivotreports/SyncBatchRunPivotReports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/AsyncBatchRunReports.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/AsyncBatchRunReports.java index e086c1c4b3cf..f9576e01a4cf 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/AsyncBatchRunReports.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/AsyncBatchRunReports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/SyncBatchRunReports.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/SyncBatchRunReports.java index 893e01c03e45..e5a4ad636dba 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/SyncBatchRunReports.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/batchrunreports/SyncBatchRunReports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/AsyncCheckCompatibility.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/AsyncCheckCompatibility.java index 894836e757c7..cc5cc5a3a1cc 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/AsyncCheckCompatibility.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/AsyncCheckCompatibility.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/SyncCheckCompatibility.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/SyncCheckCompatibility.java index 40e12f7b05c7..e525fa11461b 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/SyncCheckCompatibility.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/checkcompatibility/SyncCheckCompatibility.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetCredentialsProvider.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetCredentialsProvider.java index 0f7fa008cd60..943eb42bd1e3 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetCredentialsProvider.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetEndpoint.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetEndpoint.java index 6c4f99efdb07..91cd58187ccc 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetEndpoint.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java index 8d0c30be86d1..a0dc6b89be03 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExport.java index dae04151bdc4..3dcdd50a9f80 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExportLRO.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExportLRO.java index 7b8e9f021137..97625f228313 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExportLRO.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/AsyncCreateAudienceExportLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExport.java index 1e33b3a78f8e..ac9a534796d2 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportPropertynameAudienceexport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportPropertynameAudienceexport.java index 2a677a937453..157e5300ef1e 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportPropertynameAudienceexport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportPropertynameAudienceexport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportStringAudienceexport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportStringAudienceexport.java index 934b9d6f510c..5be403774972 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportStringAudienceexport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/createaudienceexport/SyncCreateAudienceExportStringAudienceexport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/AsyncGetAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/AsyncGetAudienceExport.java index d8087993d45b..1624d95a3b94 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/AsyncGetAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/AsyncGetAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExport.java index 50855158d489..ca880c7b52be 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportAudienceexportname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportAudienceexportname.java index 96884132984c..d36fa3751ce2 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportAudienceexportname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportAudienceexportname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportString.java index addefffd5297..84f43648f1ff 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getaudienceexport/SyncGetAudienceExportString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/AsyncGetMetadata.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/AsyncGetMetadata.java index 9a267483e4f3..4ad936c622b2 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/AsyncGetMetadata.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/AsyncGetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadata.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadata.java index 23ff2cf44a5e..fe6384ec1c73 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadata.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataMetadataname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataMetadataname.java index 328ad2f065ba..b7c6f5848bfb 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataMetadataname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataMetadataname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataString.java index 920542661b9b..9f2bf79d3596 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/getmetadata/SyncGetMetadataString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExports.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExports.java index dbe4c21a132a..8a121aa29144 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExports.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExportsPaged.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExportsPaged.java index c37be33a0384..f548be84fb68 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExportsPaged.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/AsyncListAudienceExportsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExports.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExports.java index 5004e31ca709..28236a6c0951 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExports.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExports.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsPropertyname.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsPropertyname.java index 50f7a898fbee..5b1251473df8 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsPropertyname.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsPropertyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsString.java index 0d2c47742720..169092e2db37 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/listaudienceexports/SyncListAudienceExportsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/AsyncQueryAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/AsyncQueryAudienceExport.java index b226c08eac3f..e6dbd044b647 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/AsyncQueryAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/AsyncQueryAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExport.java index 9c6ede96cd44..0ad2faba727e 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExportString.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExportString.java index 8de1cec4708f..12c9f16f1c97 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExportString.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/queryaudienceexport/SyncQueryAudienceExportString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/AsyncRunPivotReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/AsyncRunPivotReport.java index eae7872dcb36..0f081f79d378 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/AsyncRunPivotReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/AsyncRunPivotReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/SyncRunPivotReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/SyncRunPivotReport.java index 4d58a81f6a61..86bf99112a14 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/SyncRunPivotReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runpivotreport/SyncRunPivotReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/AsyncRunRealtimeReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/AsyncRunRealtimeReport.java index 214985223fd9..09a25ac1cbab 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/AsyncRunRealtimeReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/AsyncRunRealtimeReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/SyncRunRealtimeReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/SyncRunRealtimeReport.java index 9f72e4f3ed7b..ebeeab05a398 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/SyncRunRealtimeReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runrealtimereport/SyncRunRealtimeReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/AsyncRunReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/AsyncRunReport.java index d36e14f19535..602647d0853b 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/AsyncRunReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/AsyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/SyncRunReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/SyncRunReport.java index 7a1b7c5049e3..1f479e9960c8 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/SyncRunReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdata/runreport/SyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/createaudienceexport/SyncCreateAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/createaudienceexport/SyncCreateAudienceExport.java index 252b4591e521..8ee8072c9610 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/createaudienceexport/SyncCreateAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/createaudienceexport/SyncCreateAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/runreport/SyncRunReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/runreport/SyncRunReport.java index fbea0dccc5a1..2b6f63e7cf47 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/runreport/SyncRunReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/betaanalyticsdatasettings/runreport/SyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/createaudienceexport/SyncCreateAudienceExport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/createaudienceexport/SyncCreateAudienceExport.java index 1eb064250085..cfbd1d986351 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/createaudienceexport/SyncCreateAudienceExport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/createaudienceexport/SyncCreateAudienceExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/runreport/SyncRunReport.java b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/runreport/SyncRunReport.java index a2a9dd62bb6a..0b6d22b4f26d 100644 --- a/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/runreport/SyncRunReport.java +++ b/java-analytics-data/samples/snippets/generated/com/google/analytics/data/v1beta/stub/betaanalyticsdatastubsettings/runreport/SyncRunReport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/CHANGELOG.md b/java-analyticshub/CHANGELOG.md index f8da17431105..c57fff745a29 100644 --- a/java-analyticshub/CHANGELOG.md +++ b/java-analyticshub/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.79.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.78.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.75.0 (2025-10-21) ### Dependencies diff --git a/java-analyticshub/README.md b/java-analyticshub/README.md index 1969433ddd67..a09e14ead8de 100644 --- a/java-analyticshub/README.md +++ b/java-analyticshub/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-analyticshub - 0.75.0 + 0.78.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-analyticshub:0.75.0' +implementation 'com.google.cloud:google-cloud-analyticshub:0.78.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-analyticshub" % "0.75.0" +libraryDependencies += "com.google.cloud" % "google-cloud-analyticshub" % "0.78.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/bigquery/TBD [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-analyticshub/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-analyticshub.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-analyticshub/0.75.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-analyticshub/0.78.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-analyticshub/google-cloud-analyticshub-bom/pom.xml b/java-analyticshub/google-cloud-analyticshub-bom/pom.xml index 752689b55394..b0030cd2e1af 100644 --- a/java-analyticshub/google-cloud-analyticshub-bom/pom.xml +++ b/java-analyticshub/google-cloud-analyticshub-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-analyticshub-bom - 0.78.0-SNAPSHOT + 0.79.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-analyticshub - 0.78.0-SNAPSHOT + 0.79.0 com.google.api.grpc grpc-google-cloud-analyticshub-v1 - 0.78.0-SNAPSHOT + 0.79.0 com.google.api.grpc proto-google-cloud-analyticshub-v1 - 0.78.0-SNAPSHOT + 0.79.0 diff --git a/java-analyticshub/google-cloud-analyticshub/pom.xml b/java-analyticshub/google-cloud-analyticshub/pom.xml index 50de3626c10c..fb784d19dd43 100644 --- a/java-analyticshub/google-cloud-analyticshub/pom.xml +++ b/java-analyticshub/google-cloud-analyticshub/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-analyticshub - 0.78.0-SNAPSHOT + 0.79.0 jar Google Analytics Hub API Analytics Hub API TBD com.google.cloud google-cloud-analyticshub-parent - 0.78.0-SNAPSHOT + 0.79.0 google-cloud-analyticshub diff --git a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClient.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClient.java index d4ae52994cd5..06472a38390b 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClient.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceSettings.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceSettings.java index e9acb0285e20..46f1f8595f6d 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceSettings.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/package-info.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/package-info.java index 0da5d8588085..17228b991e84 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/package-info.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStub.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStub.java index 8952ea721972..879a8de708d1 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStub.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStubSettings.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStubSettings.java index d1fef13693eb..c4f14406d209 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStubSettings.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/AnalyticsHubServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -158,8 +158,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceCallableFactory.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceCallableFactory.java index e1bdcd234d92..8610c7e06809 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceCallableFactory.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceStub.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceStub.java index 0cd4782bdd7d..bc9e9236ad2f 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceStub.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/GrpcAnalyticsHubServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceCallableFactory.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceCallableFactory.java index 0c2d8e992353..3af0e3d4f6e8 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceCallableFactory.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceStub.java b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceStub.java index 327d8a357d9e..d1640ea615dc 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceStub.java +++ b/java-analyticshub/google-cloud-analyticshub/src/main/java/com/google/cloud/bigquery/analyticshub/v1/stub/HttpJsonAnalyticsHubServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientHttpJsonTest.java b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientHttpJsonTest.java index 7ef77c6af325..ff64ef9d8e10 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientHttpJsonTest.java +++ b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientTest.java b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientTest.java index 17ae4955b201..2ff401425081 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientTest.java +++ b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubService.java b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubService.java index bc29b2df8a26..66c8b2a61db5 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubService.java +++ b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubServiceImpl.java b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubServiceImpl.java index 2fbe4f0301f5..39577510b621 100644 --- a/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubServiceImpl.java +++ b/java-analyticshub/google-cloud-analyticshub/src/test/java/com/google/cloud/bigquery/analyticshub/v1/MockAnalyticsHubServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/grpc-google-cloud-analyticshub-v1/pom.xml b/java-analyticshub/grpc-google-cloud-analyticshub-v1/pom.xml index f649e8828ca1..51ca453ac04d 100644 --- a/java-analyticshub/grpc-google-cloud-analyticshub-v1/pom.xml +++ b/java-analyticshub/grpc-google-cloud-analyticshub-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-analyticshub-v1 - 0.78.0-SNAPSHOT + 0.79.0 grpc-google-cloud-analyticshub-v1 GRPC library for google-cloud-analyticshub com.google.cloud google-cloud-analyticshub-parent - 0.78.0-SNAPSHOT + 0.79.0 diff --git a/java-analyticshub/grpc-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceGrpc.java b/java-analyticshub/grpc-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceGrpc.java index 2af8f1dad21d..dae8b53fca91 100644 --- a/java-analyticshub/grpc-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceGrpc.java +++ b/java-analyticshub/grpc-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/pom.xml b/java-analyticshub/pom.xml index 9f592a414085..2aa1f506e26d 100644 --- a/java-analyticshub/pom.xml +++ b/java-analyticshub/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-analyticshub-parent pom - 0.78.0-SNAPSHOT + 0.79.0 Google Analytics Hub API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-analyticshub - 0.78.0-SNAPSHOT + 0.79.0 com.google.api.grpc grpc-google-cloud-analyticshub-v1 - 0.78.0-SNAPSHOT + 0.79.0 com.google.api.grpc proto-google-cloud-analyticshub-v1 - 0.78.0-SNAPSHOT + 0.79.0 diff --git a/java-analyticshub/proto-google-cloud-analyticshub-v1/pom.xml b/java-analyticshub/proto-google-cloud-analyticshub-v1/pom.xml index 3cdf84971a49..7a5dc85e33bb 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/pom.xml +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-analyticshub-v1 - 0.78.0-SNAPSHOT + 0.79.0 proto-google-cloud-analyticshub-v1 Proto library for google-cloud-analyticshub com.google.cloud google-cloud-analyticshub-parent - 0.78.0-SNAPSHOT + 0.79.0 diff --git a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubProto.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubProto.java index 081188468446..0da8bddc19e7 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubProto.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/AnalyticsHubProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequest.java index 14eb2d9357e0..4437c921ee8a 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequestOrBuilder.java index 736e7474e7b4..1daca65f62c9 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ApproveQueryTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfig.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfig.java index 18f1fd591b47..ff3161355742 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfig.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfigOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfigOrBuilder.java index 69d400a65369..b5c0843da293 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfigOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/BigQueryConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfig.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfig.java index 9dae27e9ee62..1b10b58458f2 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfig.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfigOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfigOrBuilder.java index 171843d601ef..b585e25c07ae 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfigOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CloudStorageConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequest.java index 701531c4126e..095212df3975 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequestOrBuilder.java index 51dc26500817..c620a8308544 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateDataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequest.java index 6378443533ec..ddca4e97a5de 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequestOrBuilder.java index 665799319cb6..1fee5f0eaf00 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateListingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequest.java index 215d0e4fc19f..9d63d37eec77 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequestOrBuilder.java index 6b40c7759073..4c9ae24fa860 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/CreateQueryTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchange.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchange.java index b4f6eb6a5653..996da58736da 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchange.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeName.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeName.java index c9b62544559d..8ee17c73b8a4 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeName.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeOrBuilder.java index 58e37506124f..489499645bb5 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataExchangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProvider.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProvider.java index c32979f275db..608a5a27130c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProvider.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProviderOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProviderOrBuilder.java index cc097a5541fe..5825add0bbeb 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProviderOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DataProviderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicy.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicy.java index 9fecd5bc7b6c..a60022859577 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicy.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicyOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicyOrBuilder.java index 5c661488541c..ef2b73b34b31 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicyOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeadLetterPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequest.java index 28a8de31bcfb..cfe0f44579d6 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequestOrBuilder.java index 655bc1c163b7..a2cdf638fe94 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteDataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequest.java index 3b9b4b893b57..416deeb0cce3 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequestOrBuilder.java index 0170272b206f..95acccf19334 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteListingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequest.java index f93ce2c56b08..b86b53a287fe 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequestOrBuilder.java index 0137b5c108f7..3eac1a086c62 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteQueryTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequest.java index d307afe65f76..7c20bbd8043e 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequestOrBuilder.java index 4848800199e3..527d84d8d57e 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DeleteSubscriptionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDataset.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDataset.java index 4b4d5fc15ae3..da059f9ad871 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDataset.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetOrBuilder.java index 59341a54e0a9..671df9ea008a 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReference.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReference.java index ac59a27d1c9e..79dcb4b59e93 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReference.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReferenceOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReferenceOrBuilder.java index 0403f808754e..b19838bf04a9 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReferenceOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationDatasetReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscription.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscription.java index 73c09e17906c..b0373aaf3711 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscription.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscriptionOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscriptionOrBuilder.java index bd056fc1ff97..0af6ea400440 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscriptionOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DestinationPubSubSubscriptionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DiscoveryType.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DiscoveryType.java index 8492ab2912ac..f06ca218e4af 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DiscoveryType.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/DiscoveryType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicy.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicy.java index 6b3b2dcbb98d..d9002637d498 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicy.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicyOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicyOrBuilder.java index ba12d36b084c..976e8c2ce7f8 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicyOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ExpirationPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequest.java index 8393f97811c0..e205479f1616 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequestOrBuilder.java index 18eb38d89f14..9fe70269ea51 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetDataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequest.java index 2bc41c057853..36d70f7628da 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequestOrBuilder.java index c886f4932d69..9a1a7f4df766 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetListingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequest.java index 7c0b3188248d..1046cedb78d3 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequestOrBuilder.java index a859185ac9b4..743627db10d2 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetQueryTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequest.java index d78c5610baa6..3deaabe63e9c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequestOrBuilder.java index e9157f8e0f72..ce3dcd9bf9b1 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/GetSubscriptionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDF.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDF.java index bedaca209df5..6ef4e9de767b 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDF.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDF.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDFOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDFOrBuilder.java index b24467000e68..f73409782796 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDFOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/JavaScriptUDFOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequest.java index 494d626d0d78..7f713710c040 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequestOrBuilder.java index da7b220deb9f..652c7f562737 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponse.java index a3b2d04d5849..fe2f2801af12 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponseOrBuilder.java index e61a9669304b..5d5a8dc9a710 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListDataExchangesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequest.java index 958edf261ace..847c41634627 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequestOrBuilder.java index fa830ed552eb..1da11503570f 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponse.java index 5b47eac10b49..4c10edfa3092 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponseOrBuilder.java index 9c8904a3b259..cb050724d2e7 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListListingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequest.java index 2b3bcd690f85..019a4c284fb7 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequestOrBuilder.java index 32f0753fb250..35f011d5131c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponse.java index 940274ee788a..db9e6b29fb4c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponseOrBuilder.java index fb6ee169c628..fa0d4a01a0f2 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListOrgDataExchangesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequest.java index b454b80662ec..3ba12ba824a1 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequestOrBuilder.java index b19c69910d9f..824d5ee0f680 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponse.java index c0bc079bd783..398c81ebd3ac 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponseOrBuilder.java index 6d6a1bf65de0..09bc64130672 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListQueryTemplatesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequest.java index bc9eac3e925b..8ac25c56ce08 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequestOrBuilder.java index ea5b2ec9be3e..b7eba696eb8f 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponse.java index c8c59ebfac78..4f5945245fdd 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponseOrBuilder.java index 358b767a4ae6..f570343b7e44 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSharedResourceSubscriptionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequest.java index a681019505f3..474b22c05104 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequestOrBuilder.java index 862650e3318d..99ad4dd53f1f 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponse.java index 5eb9562bac25..4d1d63d0f10c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponseOrBuilder.java index 3639c6d73a69..d7a2912b8da5 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListSubscriptionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Listing.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Listing.java index bed599114043..635a7a1e3cb4 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Listing.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Listing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingName.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingName.java index 9721c813fdcf..aee39d5eb642 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingName.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingOrBuilder.java index bd8368947897..12bf43841ecd 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/ListingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/LocationName.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/LocationName.java index fd7ec9ae46af..fec3425c469c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/LocationName.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransform.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransform.java index 6443a846a5db..aa98029801f0 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransform.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransform.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransformOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransformOrBuilder.java index 8c175b6ea86d..9b541c3a183a 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransformOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/MessageTransformOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadata.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadata.java index 8142f8cf0b84..fa903423901e 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadata.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadataOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadataOrBuilder.java index a16217d050a4..8754c7cc9bd8 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadataOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscription.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscription.java index d9a241f28359..34c36e94075f 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscription.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscriptionOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscriptionOrBuilder.java index 35717172f3f3..bbdac7f3a467 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscriptionOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubSubSubscriptionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Publisher.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Publisher.java index 00648f8f4e39..e1bf562f66c2 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Publisher.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Publisher.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PublisherOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PublisherOrBuilder.java index fbb6bfded5fa..7cc6401f9145 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PublisherOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PublisherOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubsubProto.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubsubProto.java index e4414483bdec..02b36dafb964 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubsubProto.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PubsubProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfig.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfig.java index ec1f3a4f2716..399c1658057f 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfig.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfigOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfigOrBuilder.java index 607ef248e068..a7546d02609a 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfigOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/PushConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplate.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplate.java index 40697bda6eb8..6c6e110542ce 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplate.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateName.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateName.java index 734d0d8ef584..b2a0bb42ad86 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateName.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateOrBuilder.java index 6b4e120aa431..cf7b4a38b5a4 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/QueryTemplateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequest.java index 162fe0d2c19e..31c61f9aca36 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequestOrBuilder.java index 0b43029dbd7e..352da00e6bb4 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponse.java index e05c961bbfae..2a3e3706b267 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponseOrBuilder.java index ae77660565bb..03452481de22 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RefreshSubscriptionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicy.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicy.java index 62bd24d86f82..88a9676a51e4 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicy.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicyOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicyOrBuilder.java index fbca33a90c51..c1eb31c6edcc 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicyOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RetryPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequest.java index 7ddfcc0d6271..30512cc02ca2 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequestOrBuilder.java index 86328a9d4a50..c0ea8d981d7c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponse.java index fc123486d315..9de5b79c26c2 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponseOrBuilder.java index e3c1e8d9ae4a..8e36b2a9de3b 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RevokeSubscriptionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Routine.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Routine.java index 8aacea8efb67..75e6c9f0ee1b 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Routine.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Routine.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RoutineOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RoutineOrBuilder.java index 7cc55d6c4fb0..d23f2a559a7a 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RoutineOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/RoutineOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharedResourceType.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharedResourceType.java index 8d4df4c6f1e9..394dae948f96 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharedResourceType.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharedResourceType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfig.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfig.java index 780a45f5f139..be8969bf65fa 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfig.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfigOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfigOrBuilder.java index 5bceeab88f61..226c86a06729 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfigOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SharingEnvironmentConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfig.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfig.java index eff58919c563..43aafcc5336f 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfig.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfigOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfigOrBuilder.java index 1b15f70f1c37..72ff49f39fe7 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfigOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/StoredProcedureConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequest.java index 8f0eb217becd..06716e8c4d71 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequestOrBuilder.java index 85882110a2cc..0e510b2a53ef 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubmitQueryTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequest.java index 0c78a4292d4e..06fa40d8c2c9 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequestOrBuilder.java index 56bf280436c4..eb366791ec37 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponse.java index 902455dff3d5..3a830bbdd038 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponseOrBuilder.java index 5ef486e9aef5..3eaa83edc005 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeDataExchangeResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequest.java index e8082dc86a50..bddf35c809b4 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequestOrBuilder.java index 9b385eb85279..4dd2da63b51c 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponse.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponse.java index cc635f7efcaa..4958238e8ce3 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponse.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponseOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponseOrBuilder.java index 5d47f3e6f8b0..c47721c5ede0 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponseOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscribeListingResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Subscription.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Subscription.java index 06bec6c464e3..9c79575ec43b 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Subscription.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/Subscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionName.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionName.java index 0337e5648cf0..9214068a4873 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionName.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionOrBuilder.java index a0eefd56f377..ae4448209d97 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/SubscriptionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequest.java index d1cb87fdb7d9..680caae5319a 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequestOrBuilder.java index a28eec8b5a50..ff4fb279b683 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateDataExchangeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequest.java index 6d82b780495d..b6e73cea6836 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequestOrBuilder.java index e0821d7cca56..a77ca9a8f51b 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateListingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequest.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequest.java index a0a3b6df0cb6..d00b470ef542 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequest.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequestOrBuilder.java b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequestOrBuilder.java index 14540ad1efcf..33b97cc086aa 100644 --- a/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequestOrBuilder.java +++ b/java-analyticshub/proto-google-cloud-analyticshub-v1/src/main/java/com/google/cloud/bigquery/analyticshub/v1/UpdateQueryTemplateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/AsyncApproveQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/AsyncApproveQueryTemplate.java index df3259b30edb..a0d29ab1ea36 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/AsyncApproveQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/AsyncApproveQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplate.java index 512e6a177e4f..a0a9cb659a3a 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateQuerytemplatename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateQuerytemplatename.java index 20368e4af212..58367e21c9c8 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateQuerytemplatename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateQuerytemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateString.java index f7659753822a..a1f62855589f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/approvequerytemplate/SyncApproveQueryTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetCredentialsProvider.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetCredentialsProvider.java index fe4e04a32297..c79a3f58fb2a 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetEndpoint.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetEndpoint.java index 5c8eacc62c3d..0c8c74e3f467 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetEndpoint.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateUseHttpJsonTransport.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateUseHttpJsonTransport.java index 907d5f728b8e..2e4023caae08 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/AsyncCreateDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/AsyncCreateDataExchange.java index 75c8790cc789..04e37d4a9efc 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/AsyncCreateDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/AsyncCreateDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchange.java index be98e202bfc8..bffa0ad047b6 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeLocationnameDataexchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeLocationnameDataexchange.java index 1c525e85ae7f..76eb95758e90 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeLocationnameDataexchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeLocationnameDataexchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeStringDataexchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeStringDataexchange.java index 46c019722df4..07a15a6ec7c2 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeStringDataexchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createdataexchange/SyncCreateDataExchangeStringDataexchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/AsyncCreateListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/AsyncCreateListing.java index 0498a21be420..1499b2d69d9d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/AsyncCreateListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/AsyncCreateListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListing.java index 769e44aa86d4..473238790207 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingDataexchangenameListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingDataexchangenameListing.java index f4244e3f72ad..608c68dafd1b 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingDataexchangenameListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingDataexchangenameListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingStringListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingStringListing.java index 5707c3431693..531da29aabdb 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingStringListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createlisting/SyncCreateListingStringListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/AsyncCreateQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/AsyncCreateQueryTemplate.java index 9376c587d8c9..db1e7ea17950 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/AsyncCreateQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/AsyncCreateQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplate.java index 0f5cfd85149e..50c7d4bcd017 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateDataexchangenameQuerytemplateString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateDataexchangenameQuerytemplateString.java index 8e9fc55213ef..d7018ffbd701 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateDataexchangenameQuerytemplateString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateDataexchangenameQuerytemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateStringQuerytemplateString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateStringQuerytemplateString.java index 9cb13add29a1..f521ae95ad76 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateStringQuerytemplateString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/createquerytemplate/SyncCreateQueryTemplateStringQuerytemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/AsyncDeleteDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/AsyncDeleteDataExchange.java index 687731cdc562..50fe0aa2e6de 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/AsyncDeleteDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/AsyncDeleteDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchange.java index 52c31862c9ca..4c1feadbf56d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeDataexchangename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeDataexchangename.java index 3beddc914c40..8f16f3e44b04 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeDataexchangename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeDataexchangename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeString.java index 4713fd03f1e1..4a19893b1ece 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletedataexchange/SyncDeleteDataExchangeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/AsyncDeleteListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/AsyncDeleteListing.java index bb9fc791591c..546e9df786c1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/AsyncDeleteListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/AsyncDeleteListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListing.java index aa1048c44112..13722e29e02c 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingListingname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingListingname.java index 3f7e84965041..359d9b72477f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingListingname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingListingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingString.java index f8de5ba50fc5..2457f7b816a9 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletelisting/SyncDeleteListingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/AsyncDeleteQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/AsyncDeleteQueryTemplate.java index 8a0d0c0e3a0c..6becad64d7c3 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/AsyncDeleteQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/AsyncDeleteQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplate.java index 220d2f468774..0a04f2b02c48 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateQuerytemplatename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateQuerytemplatename.java index dbc3b32834f0..6ef20a926412 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateQuerytemplatename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateQuerytemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateString.java index ab44139eaa4c..9d56480aa77c 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletequerytemplate/SyncDeleteQueryTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscription.java index 9dd41ab3fe2d..d7e5684eead1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscriptionLRO.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscriptionLRO.java index cac2aa78f15d..d104d66fccdf 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscriptionLRO.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/AsyncDeleteSubscriptionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscription.java index c4e48bbcc4f2..3f87ef92cbf8 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionString.java index 52322da029e1..3abd2c906eae 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionSubscriptionname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionSubscriptionname.java index 174bfcb39e34..ea42bb4dcdb9 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionSubscriptionname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/deletesubscription/SyncDeleteSubscriptionSubscriptionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/AsyncGetDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/AsyncGetDataExchange.java index 641f48c7bf69..ff2c935239cc 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/AsyncGetDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/AsyncGetDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchange.java index 3f090b21dca8..4761d2ca2c1f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeDataexchangename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeDataexchangename.java index 40b1671b1f5a..0dbe80b7a9e2 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeDataexchangename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeDataexchangename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeString.java index 257239cee987..4d1f2ec28d5e 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getdataexchange/SyncGetDataExchangeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/AsyncGetIamPolicy.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/AsyncGetIamPolicy.java index 9d2c62470976..82bacb132cbd 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/AsyncGetIamPolicy.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/SyncGetIamPolicy.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/SyncGetIamPolicy.java index 1e451caa21ea..94d582360080 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/SyncGetIamPolicy.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/AsyncGetListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/AsyncGetListing.java index c5ae7cc15f58..aa8879870ea6 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/AsyncGetListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/AsyncGetListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListing.java index e44ea783421e..dd6098b869ec 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingListingname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingListingname.java index 3e5efaf78e1a..645d06200127 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingListingname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingListingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingString.java index 5518d8cee7a0..15614b13ae8d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getlisting/SyncGetListingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/AsyncGetQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/AsyncGetQueryTemplate.java index c04f48355932..761ecf3864da 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/AsyncGetQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/AsyncGetQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplate.java index 3906978fb602..12721b7952fd 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateQuerytemplatename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateQuerytemplatename.java index c5a8c176e1bb..ad00efb32660 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateQuerytemplatename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateQuerytemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateString.java index b7b56ddca883..1d9038a52ab7 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getquerytemplate/SyncGetQueryTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/AsyncGetSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/AsyncGetSubscription.java index 1acb9346ade8..230ac0eaeb05 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/AsyncGetSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/AsyncGetSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscription.java index 74de528845d3..80554b83b68f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionString.java index 40895d4819fa..840f8ec985d9 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionSubscriptionname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionSubscriptionname.java index fce2fbf4bb15..ffa37365bc1c 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionSubscriptionname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/getsubscription/SyncGetSubscriptionSubscriptionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchanges.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchanges.java index a9e67aa230fc..b06fcfff0d9d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchanges.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchanges.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchangesPaged.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchangesPaged.java index 88aabf8c9b9e..feed5065b98b 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchangesPaged.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/AsyncListDataExchangesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchanges.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchanges.java index 0b1b860c23c4..b0063f9dad8f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchanges.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchanges.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesLocationname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesLocationname.java index 1c1b830325d7..df2e8ad5c8f3 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesLocationname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesString.java index abaad926c66c..a2ee6ff36055 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listdataexchanges/SyncListDataExchangesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListings.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListings.java index 5e3709544d7c..f21eb51439c7 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListings.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListingsPaged.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListingsPaged.java index d4b6ed48f0c4..52d00c24b050 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListingsPaged.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/AsyncListListingsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListings.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListings.java index c88e3f12061f..4a4fbba816c3 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListings.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsDataexchangename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsDataexchangename.java index 43d8a5f37aac..63faca297f7a 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsDataexchangename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsDataexchangename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsString.java index 5d54a3cc9061..bffb2233f8b1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listlistings/SyncListListingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchanges.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchanges.java index 5c3e1adb6a83..10d9ce6bdebe 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchanges.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchanges.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchangesPaged.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchangesPaged.java index 96d08ce35701..bd7043bf4f74 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchangesPaged.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/AsyncListOrgDataExchangesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchanges.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchanges.java index 7fa4d404fe6c..3a0db7e5b0de 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchanges.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchanges.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchangesString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchangesString.java index 0114647be5fe..18a0b5879bc5 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchangesString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listorgdataexchanges/SyncListOrgDataExchangesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplates.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplates.java index 39ccc6fefc47..b22c7faaefc0 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplates.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplatesPaged.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplatesPaged.java index 802de3f0525e..ff40d9accb89 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplatesPaged.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/AsyncListQueryTemplatesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplates.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplates.java index fe5dd0f05068..c594aded68ee 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplates.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesDataexchangename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesDataexchangename.java index 7c283a70d6f0..77f84564727b 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesDataexchangename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesDataexchangename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesString.java index bc1321b9fac6..a309a10512e6 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listquerytemplates/SyncListQueryTemplatesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptions.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptions.java index d1c357585f6c..6e8796543ad3 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptions.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptionsPaged.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptionsPaged.java index 5d432adc9d1f..56142868d7e8 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptionsPaged.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/AsyncListSharedResourceSubscriptionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptions.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptions.java index 0cb03d2c577a..10a9d34ac084 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptions.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsResourcename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsResourcename.java index 0230d4317018..6feba0f2a81f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsResourcename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsResourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsString.java index f44ffcc702a4..51dc5f6cdcc1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsharedresourcesubscriptions/SyncListSharedResourceSubscriptionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptions.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptions.java index 72d71ace0e9e..12ecaabf1b8e 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptions.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptionsPaged.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptionsPaged.java index cddd2cfac999..71b56f687066 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptionsPaged.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/AsyncListSubscriptionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptions.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptions.java index e29977af69c9..6a2cce31f3ab 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptions.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsLocationname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsLocationname.java index 179df9939ec0..b61107c2b9b1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsLocationname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsString.java index 645405e937ba..97fd54d1bd43 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/listsubscriptions/SyncListSubscriptionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscription.java index 8904c6852ca7..81d2e7c6f59d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscriptionLRO.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscriptionLRO.java index 5663933e7f4c..c015942b5281 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscriptionLRO.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/AsyncRefreshSubscriptionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscription.java index 24eeeae6495e..71c700cd3640 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionString.java index 79d33a00da5f..f7406e361b6d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionSubscriptionname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionSubscriptionname.java index 25eb47926493..1d981d10165b 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionSubscriptionname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/refreshsubscription/SyncRefreshSubscriptionSubscriptionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/AsyncRevokeSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/AsyncRevokeSubscription.java index b8aa7c184ea3..3335ecc52be8 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/AsyncRevokeSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/AsyncRevokeSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscription.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscription.java index a039cc75a00b..9561313d4de6 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscription.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionString.java index 0ed008453f3e..fa980cc74040 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionSubscriptionname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionSubscriptionname.java index 3acc92fc3720..6b37f7e145ca 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionSubscriptionname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/revokesubscription/SyncRevokeSubscriptionSubscriptionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/AsyncSetIamPolicy.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/AsyncSetIamPolicy.java index 85de49d25deb..666fe2b251db 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/AsyncSetIamPolicy.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/SyncSetIamPolicy.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/SyncSetIamPolicy.java index fa2a9e8ec7f6..b87a750b6fbe 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/SyncSetIamPolicy.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/AsyncSubmitQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/AsyncSubmitQueryTemplate.java index 36c8e80dab46..78c018b983b4 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/AsyncSubmitQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/AsyncSubmitQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplate.java index 607391519cb4..838a160375a1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateQuerytemplatename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateQuerytemplatename.java index 71b41a7d513c..d54476c6d3f9 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateQuerytemplatename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateQuerytemplatename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateString.java index 2f513f5129bd..6001f6f4c830 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/submitquerytemplate/SyncSubmitQueryTemplateString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchange.java index 30167cdeb0fc..b92d783a8455 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchangeLRO.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchangeLRO.java index 8c51d6fc2a6b..bd053b46c372 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchangeLRO.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/AsyncSubscribeDataExchangeLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchange.java index 660411189f96..64fe0ce6a34f 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeDataexchangename.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeDataexchangename.java index 4dc82dc71025..1642a3b01aa9 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeDataexchangename.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeDataexchangename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeString.java index 6b494c66bef6..9c2471148212 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribedataexchange/SyncSubscribeDataExchangeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/AsyncSubscribeListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/AsyncSubscribeListing.java index 6c6d99f680ea..abc92e4667e1 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/AsyncSubscribeListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/AsyncSubscribeListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListing.java index 017bc616b806..c9ec7b20ebc8 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingListingname.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingListingname.java index 5f4c97cc69fc..2e7f14c77d05 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingListingname.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingListingname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingString.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingString.java index 5fe75ae1ccb8..20b7f75db185 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingString.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/subscribelisting/SyncSubscribeListingString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/AsyncTestIamPermissions.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/AsyncTestIamPermissions.java index 8dc29ce07753..7e634f32253c 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/AsyncTestIamPermissions.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/SyncTestIamPermissions.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/SyncTestIamPermissions.java index 059a6558fb7a..23caca816aad 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/SyncTestIamPermissions.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/AsyncUpdateDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/AsyncUpdateDataExchange.java index a2cca6ff0034..1551523cc073 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/AsyncUpdateDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/AsyncUpdateDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchange.java index 8aeea1e5630a..6759d662df06 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchangeDataexchangeFieldmask.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchangeDataexchangeFieldmask.java index bd34dc382dc1..5fe0f6f1dab2 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchangeDataexchangeFieldmask.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatedataexchange/SyncUpdateDataExchangeDataexchangeFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/AsyncUpdateListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/AsyncUpdateListing.java index 8b3eb0b86722..4779065d7f04 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/AsyncUpdateListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/AsyncUpdateListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListing.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListing.java index 1c6434d844f6..f1da5885ca5b 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListing.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListing.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListingListingFieldmask.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListingListingFieldmask.java index e9254fc63ce4..24f74e5fb455 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListingListingFieldmask.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatelisting/SyncUpdateListingListingFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/AsyncUpdateQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/AsyncUpdateQueryTemplate.java index b8b79f286913..47f7ed2675e4 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/AsyncUpdateQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/AsyncUpdateQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplate.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplate.java index 3324d9d9e610..a61995c85161 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplate.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplateQuerytemplateFieldmask.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplateQuerytemplateFieldmask.java index bb87b82b7d9f..0446ab935497 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplateQuerytemplateFieldmask.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservice/updatequerytemplate/SyncUpdateQueryTemplateQuerytemplateFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/getdataexchange/SyncGetDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/getdataexchange/SyncGetDataExchange.java index 0facf1cc46ec..ebd10a770b08 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/getdataexchange/SyncGetDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/getdataexchange/SyncGetDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/subscribedataexchange/SyncSubscribeDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/subscribedataexchange/SyncSubscribeDataExchange.java index 25a7903f289b..a0d6b629c89d 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/subscribedataexchange/SyncSubscribeDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/analyticshubservicesettings/subscribedataexchange/SyncSubscribeDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/getdataexchange/SyncGetDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/getdataexchange/SyncGetDataExchange.java index e96375296395..6a47196bc583 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/getdataexchange/SyncGetDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/getdataexchange/SyncGetDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/subscribedataexchange/SyncSubscribeDataExchange.java b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/subscribedataexchange/SyncSubscribeDataExchange.java index cd66c6f44fbc..287247bb32f6 100644 --- a/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/subscribedataexchange/SyncSubscribeDataExchange.java +++ b/java-analyticshub/samples/snippets/generated/com/google/cloud/bigquery/analyticshub/v1/stub/analyticshubservicestubsettings/subscribedataexchange/SyncSubscribeDataExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/CHANGELOG.md b/java-api-gateway/CHANGELOG.md index a37e018ec432..ceb00a72a1b8 100644 --- a/java-api-gateway/CHANGELOG.md +++ b/java-api-gateway/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 2.82.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 2.81.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 2.78.0 (2025-10-21) ### Dependencies diff --git a/java-api-gateway/README.md b/java-api-gateway/README.md index 706af3f75a38..e9424f87a6d2 100644 --- a/java-api-gateway/README.md +++ b/java-api-gateway/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-api-gateway - 2.78.0 + 2.81.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-api-gateway:2.78.0' +implementation 'com.google.cloud:google-cloud-api-gateway:2.81.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-api-gateway" % "2.78.0" +libraryDependencies += "com.google.cloud" % "google-cloud-api-gateway" % "2.81.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/api-gateway/docs [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-api-gateway/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-api-gateway.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-api-gateway/2.78.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-api-gateway/2.81.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-api-gateway/google-cloud-api-gateway-bom/pom.xml b/java-api-gateway/google-cloud-api-gateway-bom/pom.xml index dc3009c82187..5b8457bd1f29 100644 --- a/java-api-gateway/google-cloud-api-gateway-bom/pom.xml +++ b/java-api-gateway/google-cloud-api-gateway-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-api-gateway-bom - 2.81.0-SNAPSHOT + 2.82.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-api-gateway - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-api-gateway-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-api-gateway-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-api-gateway/google-cloud-api-gateway/pom.xml b/java-api-gateway/google-cloud-api-gateway/pom.xml index be74d88cdd85..483983e0632f 100644 --- a/java-api-gateway/google-cloud-api-gateway/pom.xml +++ b/java-api-gateway/google-cloud-api-gateway/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-api-gateway - 2.81.0-SNAPSHOT + 2.82.0 jar Google API Gateway API Gateway enables you to provide secure access to your backend services through a well-defined REST API that is consistent across all of your services, regardless of the service implementation. Clients consume your REST APIS to implement standalone apps for a mobile device or tablet, through apps running in a browser, or through any other type of app that can make a request to an HTTP endpoint. com.google.cloud google-cloud-api-gateway-parent - 2.81.0-SNAPSHOT + 2.82.0 google-cloud-api-gateway diff --git a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClient.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClient.java index a2d72232cf38..1bdd0594cd6a 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClient.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceSettings.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceSettings.java index b38eff2feaa9..1d334ed30440 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceSettings.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -87,8 +87,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/package-info.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/package-info.java index aaaf5731fe1a..4d4b8d8d2218 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/package-info.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStub.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStub.java index 56f32b3aa517..1d17076d3d1f 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStub.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStubSettings.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStubSettings.java index 294b3b0149a4..e032f4d750aa 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStubSettings.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/ApiGatewayServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -131,8 +131,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceCallableFactory.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceCallableFactory.java index 9a2d7bea91be..467506929064 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceCallableFactory.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceStub.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceStub.java index 65ad1366fbea..d11ca6f45020 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceStub.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/GrpcApiGatewayServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceCallableFactory.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceCallableFactory.java index d52a63be2bc7..0980598b77ae 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceCallableFactory.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceStub.java b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceStub.java index facddb966677..f6575ee512e9 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceStub.java +++ b/java-api-gateway/google-cloud-api-gateway/src/main/java/com/google/cloud/apigateway/v1/stub/HttpJsonApiGatewayServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientHttpJsonTest.java b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientHttpJsonTest.java index 8951ff3c4de9..36f4d818444d 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientHttpJsonTest.java +++ b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientTest.java b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientTest.java index 9b0bb6a00abe..5595d373d94c 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientTest.java +++ b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/ApiGatewayServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayService.java b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayService.java index 395d15de6fb0..f7d22b2b3f09 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayService.java +++ b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayServiceImpl.java b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayServiceImpl.java index 4ed18475bb35..6fe25a2b9be1 100644 --- a/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayServiceImpl.java +++ b/java-api-gateway/google-cloud-api-gateway/src/test/java/com/google/cloud/apigateway/v1/MockApiGatewayServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/grpc-google-cloud-api-gateway-v1/pom.xml b/java-api-gateway/grpc-google-cloud-api-gateway-v1/pom.xml index 4b14382642be..731b96163c6e 100644 --- a/java-api-gateway/grpc-google-cloud-api-gateway-v1/pom.xml +++ b/java-api-gateway/grpc-google-cloud-api-gateway-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-api-gateway-v1 - 2.81.0-SNAPSHOT + 2.82.0 grpc-google-cloud-api-gateway-v1 GRPC library for google-cloud-api-gateway com.google.cloud google-cloud-api-gateway-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-api-gateway/grpc-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceGrpc.java b/java-api-gateway/grpc-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceGrpc.java index 5f22633c213c..128e45f7daaf 100644 --- a/java-api-gateway/grpc-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceGrpc.java +++ b/java-api-gateway/grpc-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiGatewayServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/pom.xml b/java-api-gateway/pom.xml index bfb84414263e..e713718a9d08 100644 --- a/java-api-gateway/pom.xml +++ b/java-api-gateway/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-api-gateway-parent pom - 2.81.0-SNAPSHOT + 2.82.0 Google API Gateway Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-api-gateway - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-api-gateway-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-api-gateway-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-api-gateway/proto-google-cloud-api-gateway-v1/pom.xml b/java-api-gateway/proto-google-cloud-api-gateway-v1/pom.xml index 2e115b903cf0..b5be90b1d587 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/pom.xml +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-api-gateway-v1 - 2.81.0-SNAPSHOT + 2.82.0 proto-google-cloud-api-gateway-v1 Proto library for google-cloud-api-gateway com.google.cloud google-cloud-api-gateway-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Api.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Api.java index 041d871e7156..8d3fdbeec37b 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Api.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Api.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfig.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfig.java index 39c8b1314b36..7ba57633e82a 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfig.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigName.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigName.java index 064237732bfc..0c4bfcdadde2 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigName.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigOrBuilder.java index 82ffd4f5f6ec..ce27a24d86fa 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiName.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiName.java index 2ff0fc9d8fd6..781ef745f11f 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiName.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiOrBuilder.java index 6d7bb3fadb37..f9c3057ead8e 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApiOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Apigateway.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Apigateway.java index aeaed9816c83..2b98cbad410c 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Apigateway.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Apigateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApigatewayService.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApigatewayService.java index 1a37b68622a8..597641c81358 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApigatewayService.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ApigatewayService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequest.java index 2b5f6b997acc..1e5805e1ec4d 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequestOrBuilder.java index 49682f120590..541d24b936ee 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequest.java index b8975d452b36..561f52fa38dd 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequestOrBuilder.java index 06ffe8ffb723..ea3a5bef960f 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequest.java index 7605a4b662a1..fdb6588dd5c9 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequestOrBuilder.java index 6747d3522dd7..709b422e635f 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/CreateGatewayRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequest.java index 5195ec490b51..2f63cf2d384a 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequestOrBuilder.java index 43a4257bc7d6..a7756bed95bf 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequest.java index 5738020b68d7..7d75af51af3f 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequestOrBuilder.java index c7416d944a05..ec5aff38473a 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequest.java index 6220dfa1ec42..a808ccb884d9 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequestOrBuilder.java index ea8f41848f9c..a9f694fe9f11 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/DeleteGatewayRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Gateway.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Gateway.java index bbed5c741086..fc0ff87d01ad 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Gateway.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/Gateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayName.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayName.java index e07ec07172ac..31e3284f725e 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayName.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayOrBuilder.java index f9734aca5a21..a64427676c8e 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GatewayOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequest.java index da6830ec88d2..dfdf0c620142 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequestOrBuilder.java index 834ff851fe68..49c4d255c363 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequest.java index 34d4ca613e19..64792fb0ab03 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequestOrBuilder.java index 25e8bc65d32c..6bf9855cd103 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequest.java index 5931875d760b..517b3bed00b5 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequestOrBuilder.java index 02bbe2e7d043..a9e12a8e66cc 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/GetGatewayRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequest.java index 7616b012ca39..2b17b775a5a1 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequestOrBuilder.java index 36dfd786a744..aa1af6f6ac72 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponse.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponse.java index b61677a6cb1d..a2fb38cec6f6 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponse.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponseOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponseOrBuilder.java index 17c3d057eaba..ff209f59b5bd 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponseOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApiConfigsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequest.java index f26cf89604f6..32a96d3da160 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequestOrBuilder.java index 10d57deb1be9..3d4e16c7b9dd 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponse.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponse.java index 41aaa0f9c8eb..d942b1e6b9c5 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponse.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponseOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponseOrBuilder.java index 507717c6c4d7..b55732829f66 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponseOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListApisResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequest.java index 262b8c8a9037..e730c5aa06d5 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequestOrBuilder.java index 364206a0b876..9cfc4c5bda7a 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponse.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponse.java index f014a51879b2..702b06d0e852 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponse.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponseOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponseOrBuilder.java index aa0ec76e4a59..ec5bce6bd9a3 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponseOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/ListGatewaysResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/LocationName.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/LocationName.java index d268d00c1e48..75048b1cc5dc 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/LocationName.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadata.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadata.java index cddd696f6116..b19ac4e21ee9 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadata.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadataOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadataOrBuilder.java index d4ac023b2bea..a78b088889da 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadataOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequest.java index 9ec6e221d6c5..c769f7e692e2 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequestOrBuilder.java index e5a2d99e9013..0ed0633e1fe6 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequest.java index 6a27a8097824..fffb06345341 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequestOrBuilder.java index f780843ed3be..c39758bc3150 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequest.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequest.java index f25db010d635..6f59ecdaaea1 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequest.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequestOrBuilder.java b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequestOrBuilder.java index 702025af9220..97bf616d8f4b 100644 --- a/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequestOrBuilder.java +++ b/java-api-gateway/proto-google-cloud-api-gateway-v1/src/main/java/com/google/cloud/apigateway/v1/UpdateGatewayRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetCredentialsProvider.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetCredentialsProvider.java index 859e0b6b3770..f50254b91046 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetEndpoint.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetEndpoint.java index eae92bc5d808..088738889766 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetEndpoint.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateUseHttpJsonTransport.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateUseHttpJsonTransport.java index eabab50e036d..651a2046b4be 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApi.java index e3ba85c2b98c..3568a6dbaa83 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApiLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApiLRO.java index 4ccc8cc30b8a..1cdf27e16a48 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApiLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/AsyncCreateApiLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApi.java index 96d8d317aec4..22cebfd059b8 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiLocationnameApiString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiLocationnameApiString.java index 56dfc04607b2..1b3963f9d6b7 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiLocationnameApiString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiLocationnameApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiStringApiString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiStringApiString.java index d07d128b0215..eb22f18a1ba4 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiStringApiString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapi/SyncCreateApiStringApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfig.java index 940cc6ec1d1c..126f5d8dd811 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfigLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfigLRO.java index cf1e6f33bd58..37d3e79dccd3 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfigLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/AsyncCreateApiConfigLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfig.java index 830b5c969f7a..3b9f1488fc61 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigApinameApiconfigString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigApinameApiconfigString.java index fefb2d120824..4dfbc7bef7f8 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigApinameApiconfigString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigApinameApiconfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigStringApiconfigString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigStringApiconfigString.java index b25134016a4c..3b096ef832b0 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigStringApiconfigString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/createapiconfig/SyncCreateApiConfigStringApiconfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGateway.java index 71197b667619..9cb77dc83c4d 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGatewayLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGatewayLRO.java index 479d9aab1f3d..2c2c695f5870 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGatewayLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/AsyncCreateGatewayLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGateway.java index 48da5d853765..9789754fe26e 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayLocationnameGatewayString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayLocationnameGatewayString.java index 4bda16dbc513..654b100539ed 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayLocationnameGatewayString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayLocationnameGatewayString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayStringGatewayString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayStringGatewayString.java index e93b206f101a..e1daa6515b99 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayStringGatewayString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/creategateway/SyncCreateGatewayStringGatewayString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApi.java index 118100f98b1e..d97b31ed1d0f 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApiLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApiLRO.java index 0480be5c88ff..e96a229d8139 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApiLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/AsyncDeleteApiLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApi.java index 098e88713e48..eb56ef57c259 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiApiname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiApiname.java index ad4629522be9..c5666f8d1765 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiApiname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiString.java index a78a02c7acf7..50ac51690dd8 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapi/SyncDeleteApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfig.java index df84530b8d72..603e0f7f53fa 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfigLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfigLRO.java index f812153981d3..1d2e125778ce 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfigLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/AsyncDeleteApiConfigLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfig.java index a0a590a3b13f..9ce923c3b01b 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigApiconfigname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigApiconfigname.java index 3f940698885f..1db55f44f3d9 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigApiconfigname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigApiconfigname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigString.java index 240fd495034d..98da989f7e92 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deleteapiconfig/SyncDeleteApiConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGateway.java index 0873b3237f1f..35957464d31d 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGatewayLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGatewayLRO.java index 8b06577f59cc..dca3dd114c5e 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGatewayLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/AsyncDeleteGatewayLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGateway.java index c8c514d831a8..09763903c05b 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayGatewayname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayGatewayname.java index 923b8aad9c14..d534308a556f 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayGatewayname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayGatewayname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayString.java index a936312c1f71..9e75c67e218a 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/deletegateway/SyncDeleteGatewayString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/AsyncGetApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/AsyncGetApi.java index 9511771ed0df..efcf13a0e326 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/AsyncGetApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/AsyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApi.java index 5c4ac5013f6f..b9cd5dc4dd1d 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiApiname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiApiname.java index a2cd50e2bc95..e322fe23acfb 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiApiname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiString.java index f78271fd9e0e..a6a3fbfee5e7 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapi/SyncGetApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/AsyncGetApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/AsyncGetApiConfig.java index c2b5c76e1229..cef29c69efa6 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/AsyncGetApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/AsyncGetApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfig.java index d715d917b683..53d7ff988307 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigApiconfigname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigApiconfigname.java index 50114d5029a6..f636883c5987 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigApiconfigname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigApiconfigname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigString.java index e53c41229578..ccc6fe7ceb7e 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getapiconfig/SyncGetApiConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/AsyncGetGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/AsyncGetGateway.java index e8b636b3f382..0bd793f6c670 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/AsyncGetGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/AsyncGetGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGateway.java index 3c05aeeb0da2..1dad9bce824d 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayGatewayname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayGatewayname.java index 0fe5f517289c..ca0f2a70d716 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayGatewayname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayGatewayname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayString.java index 63450c1b4a8b..86ae79b93e0a 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/getgateway/SyncGetGatewayString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigs.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigs.java index 12a7ae50ef7c..b246e266e931 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigs.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigsPaged.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigsPaged.java index ef3211534b8d..7c536265c389 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigsPaged.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/AsyncListApiConfigsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigs.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigs.java index 7838a0e1b8d0..197e702ce9c5 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigs.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsApiname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsApiname.java index 51d8af4f067a..b3d8cfa67a12 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsApiname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsString.java index ed7517de1079..5f77e6bc86b1 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapiconfigs/SyncListApiConfigsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApis.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApis.java index 91ab4d9e9c95..55e1e42b95f3 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApis.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApisPaged.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApisPaged.java index 2c5df93e75fe..538594874b24 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApisPaged.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/AsyncListApisPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApis.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApis.java index ac65c0ce886d..ed93878f1ba7 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApis.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisLocationname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisLocationname.java index c7b2b45a667a..c126083a7045 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisLocationname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisString.java index 5ffd23abfed7..d1f31499f190 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listapis/SyncListApisString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGateways.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGateways.java index 704a206d3e44..21c5f8403f61 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGateways.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGateways.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGatewaysPaged.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGatewaysPaged.java index 4b852e0a9b75..5477e8c783fd 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGatewaysPaged.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/AsyncListGatewaysPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGateways.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGateways.java index 038ae8ab39eb..81b4e6a34bfd 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGateways.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGateways.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysLocationname.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysLocationname.java index 0210f1c4a980..4e9590130f6d 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysLocationname.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysString.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysString.java index 2fc018567a2c..93e61b600b49 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysString.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/listgateways/SyncListGatewaysString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApi.java index 45219ed3b417..7ba3e0903b6b 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApiLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApiLRO.java index 7315d0b47982..cfedd45bfc8b 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApiLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/AsyncUpdateApiLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApi.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApi.java index c080f0ee650a..5095b68eeb45 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApi.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApiApiFieldmask.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApiApiFieldmask.java index 34d1ccb61dd5..bc4a829e5fd1 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApiApiFieldmask.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapi/SyncUpdateApiApiFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfig.java index dc7846104ec0..8efdd024b4b8 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfigLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfigLRO.java index 1b7bdb27a469..8a1bda629807 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfigLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/AsyncUpdateApiConfigLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfig.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfig.java index fc90fcfe2a3e..13ced9244820 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfig.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfigApiconfigFieldmask.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfigApiconfigFieldmask.java index 1b3e8c7946d1..4cfd43a1d25a 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfigApiconfigFieldmask.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updateapiconfig/SyncUpdateApiConfigApiconfigFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGateway.java index f04d22d4e525..e55926939335 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGatewayLRO.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGatewayLRO.java index 9c71cded28c3..00e91c4189c4 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGatewayLRO.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/AsyncUpdateGatewayLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGateway.java index e6d7298144a8..a2e3190a7b06 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGatewayGatewayFieldmask.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGatewayGatewayFieldmask.java index dba0b0808bc9..9b062dd3b9b2 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGatewayGatewayFieldmask.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservice/updategateway/SyncUpdateGatewayGatewayFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/creategateway/SyncCreateGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/creategateway/SyncCreateGateway.java index e728c6452522..9190d5c855ed 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/creategateway/SyncCreateGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/creategateway/SyncCreateGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/getgateway/SyncGetGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/getgateway/SyncGetGateway.java index 108c11e29fb5..fd3ecff63494 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/getgateway/SyncGetGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/apigatewayservicesettings/getgateway/SyncGetGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/creategateway/SyncCreateGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/creategateway/SyncCreateGateway.java index 63dd2f90f82a..e43a77d8681e 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/creategateway/SyncCreateGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/creategateway/SyncCreateGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/getgateway/SyncGetGateway.java b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/getgateway/SyncGetGateway.java index da98fc5f2ecf..c66f5c947d53 100644 --- a/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/getgateway/SyncGetGateway.java +++ b/java-api-gateway/samples/snippets/generated/com/google/cloud/apigateway/v1/stub/apigatewayservicestubsettings/getgateway/SyncGetGateway.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/CHANGELOG.md b/java-apigee-connect/CHANGELOG.md index 8ad7640b3775..5c1ba01ee49b 100644 --- a/java-apigee-connect/CHANGELOG.md +++ b/java-apigee-connect/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 2.82.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 2.81.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 2.78.0 (2025-10-21) ### Dependencies diff --git a/java-apigee-connect/README.md b/java-apigee-connect/README.md index 7c98cc5dfcce..ce1a78f59e27 100644 --- a/java-apigee-connect/README.md +++ b/java-apigee-connect/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-apigee-connect - 2.78.0 + 2.81.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-apigee-connect:2.78.0' +implementation 'com.google.cloud:google-cloud-apigee-connect:2.81.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-apigee-connect" % "2.78.0" +libraryDependencies += "com.google.cloud" % "google-cloud-apigee-connect" % "2.81.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/apigee/docs/hybrid/v1.3/apigee-connect/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-apigee-connect/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-apigee-connect.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apigee-connect/2.78.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apigee-connect/2.81.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-apigee-connect/google-cloud-apigee-connect-bom/pom.xml b/java-apigee-connect/google-cloud-apigee-connect-bom/pom.xml index f626db3e8eb4..2d8dabf840f2 100644 --- a/java-apigee-connect/google-cloud-apigee-connect-bom/pom.xml +++ b/java-apigee-connect/google-cloud-apigee-connect-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-apigee-connect-bom - 2.81.0-SNAPSHOT + 2.82.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-apigee-connect - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-apigee-connect-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-apigee-connect-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-apigee-connect/google-cloud-apigee-connect/pom.xml b/java-apigee-connect/google-cloud-apigee-connect/pom.xml index c1c408fa2681..ff8a69471540 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/pom.xml +++ b/java-apigee-connect/google-cloud-apigee-connect/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-apigee-connect - 2.81.0-SNAPSHOT + 2.82.0 jar Google Apigee Connect Apigee Connect allows the Apigee hybrid management plane to connect securely to the MART service in the runtime plane without requiring you to expose the MART endpoint on the internet. com.google.cloud google-cloud-apigee-connect-parent - 2.81.0-SNAPSHOT + 2.82.0 google-cloud-apigee-connect diff --git a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClient.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClient.java index 7492c30b72f3..e9e1cef5dd06 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClient.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceSettings.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceSettings.java index e8e9875d6235..9e275523cfc8 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceSettings.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConnectionServiceSettings extends ClientSettings { diff --git a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherClient.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherClient.java index 02c84e5db868..f3cd1b0dc68f 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherClient.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherSettings.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherSettings.java index 25398b7b77d2..d13fceca874c 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherSettings.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/TetherSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TetherSettings extends ClientSettings { diff --git a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/package-info.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/package-info.java index 827527c6fccd..94766422aad9 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/package-info.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStub.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStub.java index 39bb5223fff1..c1235c18367d 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStub.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStubSettings.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStubSettings.java index 3559d4ba6736..80d20af5168f 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStubSettings.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/ConnectionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,8 +104,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConnectionServiceStubSettings extends StubSettings { diff --git a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceCallableFactory.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceCallableFactory.java index b2f884b71b5e..5bbbfc3b1aa1 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceCallableFactory.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceStub.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceStub.java index 93dc6f97d2dd..1426f41c9ab0 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceStub.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcConnectionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherCallableFactory.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherCallableFactory.java index 7815dd482fb6..e9720bc945fd 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherCallableFactory.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherStub.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherStub.java index bdf24d80b8b9..396579ae685a 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherStub.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/GrpcTetherStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceCallableFactory.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceCallableFactory.java index 16494fc699dd..06e53d47b717 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceCallableFactory.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceStub.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceStub.java index 40d6598f40d4..7231a3afe334 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceStub.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/HttpJsonConnectionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStub.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStub.java index 0669f4654fa3..affda077bafa 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStub.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStubSettings.java b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStubSettings.java index 915aa005bf43..31a644c09564 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStubSettings.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/main/java/com/google/cloud/apigeeconnect/v1/stub/TetherStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TetherStubSettings extends StubSettings { diff --git a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientHttpJsonTest.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientHttpJsonTest.java index f0d407e45a39..8b797c7de20c 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientHttpJsonTest.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientTest.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientTest.java index e70f1c000f1f..daa3a2db2738 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientTest.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionService.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionService.java index 342a7081cb88..3546e1b2d012 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionService.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionServiceImpl.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionServiceImpl.java index 6dc865c8c922..2d7d9bd98e7c 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionServiceImpl.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockConnectionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTether.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTether.java index d24fc9488164..fa2de3231c55 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTether.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTether.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTetherImpl.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTetherImpl.java index 8161f3b2e8f6..3a350e0fe05f 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTetherImpl.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/MockTetherImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/TetherClientTest.java b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/TetherClientTest.java index f4c6319899b2..32427e9a43c4 100644 --- a/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/TetherClientTest.java +++ b/java-apigee-connect/google-cloud-apigee-connect/src/test/java/com/google/cloud/apigeeconnect/v1/TetherClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/pom.xml b/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/pom.xml index bb3d538c0636..4d8a953cd1b9 100644 --- a/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/pom.xml +++ b/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-apigee-connect-v1 - 2.81.0-SNAPSHOT + 2.82.0 grpc-google-cloud-apigee-connect-v1 GRPC library for google-cloud-apigee-connect com.google.cloud google-cloud-apigee-connect-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceGrpc.java b/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceGrpc.java index acc2d555c745..80f1d8eca399 100644 --- a/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceGrpc.java +++ b/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherGrpc.java b/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherGrpc.java index 79bf550eacee..1a18fa47e2b4 100644 --- a/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherGrpc.java +++ b/java-apigee-connect/grpc-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/pom.xml b/java-apigee-connect/pom.xml index 1e783fd36c52..be027833ed81 100644 --- a/java-apigee-connect/pom.xml +++ b/java-apigee-connect/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-apigee-connect-parent pom - 2.81.0-SNAPSHOT + 2.82.0 Google Apigee Connect Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-apigee-connect - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-apigee-connect-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-apigee-connect-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/pom.xml b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/pom.xml index 7adbbcfeb15c..a9dceec93f3f 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/pom.xml +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-apigee-connect-v1 - 2.81.0-SNAPSHOT + 2.82.0 proto-google-cloud-apigee-connect-v1 Proto library for google-cloud-apigee-connect com.google.cloud google-cloud-apigee-connect-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Action.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Action.java index 960527581909..6c60f0b4f964 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Action.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Action.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Cluster.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Cluster.java index d102ad3b480d..5918ad6901b4 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Cluster.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Cluster.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ClusterOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ClusterOrBuilder.java index eca242cbb337..a910da4ef632 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ClusterOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ClusterOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Connection.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Connection.java index 388467c07dc4..35049fd5d219 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Connection.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Connection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionOrBuilder.java index f275c9a73558..108568ccd09f 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionProto.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionProto.java index 02dd87ad7459..cf9acf8ea76a 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionProto.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ConnectionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequest.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequest.java index c21cb96ce578..61fc3a2c854f 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequest.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequestOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequestOrBuilder.java index 9eaf940e19e2..954c5c177ef4 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequestOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponse.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponse.java index 313659b0e6cd..6751577f8d18 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponse.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponseOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponseOrBuilder.java index 1aba72897094..ec2404d434e8 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponseOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EgressResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EndpointName.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EndpointName.java index e5a6e1681c6e..16bf12e1638c 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EndpointName.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/EndpointName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Header.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Header.java index 54283db22646..c2cf8fbcb259 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Header.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Header.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HeaderOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HeaderOrBuilder.java index 33b2112b7927..b9b59b5e6e8b 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HeaderOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HeaderOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequest.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequest.java index 6fae6cfc0188..2ea27be40669 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequest.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequestOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequestOrBuilder.java index cee1d7d7f58f..5109f8037579 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequestOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponse.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponse.java index 43809e680735..d9475cd5ed72 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponse.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponseOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponseOrBuilder.java index cb9527da77ea..c64ea2af9cb8 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponseOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/HttpResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequest.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequest.java index 34743dda0038..b632512bad83 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequest.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequestOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequestOrBuilder.java index da4f73bc7a7e..60fc1c9c3fce 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequestOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponse.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponse.java index 55698c494348..c5ba2aeb8470 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponse.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponseOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponseOrBuilder.java index 740aca58a59f..28561211dbb3 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponseOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ListConnectionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Payload.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Payload.java index b0fb6bcc4bb7..5a18b1d951a3 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Payload.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Payload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/PayloadOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/PayloadOrBuilder.java index 016700d6d8db..3b6878b80279 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/PayloadOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/PayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Scheme.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Scheme.java index bebb536e2fb7..659988e17a86 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Scheme.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Scheme.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfo.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfo.java index 73248f8a3440..90c62ad3b567 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfo.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfoOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfoOrBuilder.java index 7f87d78e7db1..53b60d9eddb9 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfoOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/StreamInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherEndpoint.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherEndpoint.java index e84de4f27a4c..4c3169d23eb9 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherEndpoint.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherProto.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherProto.java index 3cb7c1500c55..589fb49b6da8 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherProto.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/TetherProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Url.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Url.java index 13d9134a3c84..a30eb728d9fd 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Url.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/Url.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/UrlOrBuilder.java b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/UrlOrBuilder.java index fcfd98636d22..35082d82eb62 100644 --- a/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/UrlOrBuilder.java +++ b/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/UrlOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetCredentialsProvider.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetCredentialsProvider.java index 1ef20f475053..6b97bdb97bba 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetEndpoint.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetEndpoint.java index 25794b66a02a..39b07f3dac23 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetEndpoint.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateUseHttpJsonTransport.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateUseHttpJsonTransport.java index abb84e6af668..35090796b9d1 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnections.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnections.java index 2d55d14102d5..a22cc5f86f42 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnections.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnections.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnectionsPaged.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnectionsPaged.java index 9c38656d4116..66dd55cc1d12 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnectionsPaged.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/AsyncListConnectionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnections.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnections.java index 42e41fe24128..aeb37a7a6832 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnections.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnections.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsEndpointname.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsEndpointname.java index 540e75161f23..038115c151de 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsEndpointname.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsEndpointname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsString.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsString.java index a49206c524a1..f041d297b7e4 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsString.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservice/listconnections/SyncListConnectionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservicesettings/listconnections/SyncListConnections.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservicesettings/listconnections/SyncListConnections.java index 6bb23aecb57b..aa40ecd19e06 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservicesettings/listconnections/SyncListConnections.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/connectionservicesettings/listconnections/SyncListConnections.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/connectionservicestubsettings/listconnections/SyncListConnections.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/connectionservicestubsettings/listconnections/SyncListConnections.java index f1ccf3c9a356..e37f2d55759c 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/connectionservicestubsettings/listconnections/SyncListConnections.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/connectionservicestubsettings/listconnections/SyncListConnections.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/tetherstubsettings/egress/SyncEgress.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/tetherstubsettings/egress/SyncEgress.java index 9284d7d52592..e896d782dd4b 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/tetherstubsettings/egress/SyncEgress.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/stub/tetherstubsettings/egress/SyncEgress.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetCredentialsProvider.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetCredentialsProvider.java index 44b2fe12b6a2..f032aa5d4f19 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetCredentialsProvider.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetEndpoint.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetEndpoint.java index c6db2c5f82f3..e71f551c6c05 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetEndpoint.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/egress/AsyncEgress.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/egress/AsyncEgress.java index 1d35b19e0a5d..25a7fd6a4196 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/egress/AsyncEgress.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tether/egress/AsyncEgress.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tethersettings/egress/SyncEgress.java b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tethersettings/egress/SyncEgress.java index d02f095dd335..fd928692c1ec 100644 --- a/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tethersettings/egress/SyncEgress.java +++ b/java-apigee-connect/samples/snippets/generated/com/google/cloud/apigeeconnect/v1/tethersettings/egress/SyncEgress.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/CHANGELOG.md b/java-apigee-registry/CHANGELOG.md index b818c5fc7365..f9e4494e8b81 100644 --- a/java-apigee-registry/CHANGELOG.md +++ b/java-apigee-registry/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.82.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.81.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.78.0 (2025-10-21) ### Dependencies diff --git a/java-apigee-registry/README.md b/java-apigee-registry/README.md index 19998999e7c7..4fa13de44abd 100644 --- a/java-apigee-registry/README.md +++ b/java-apigee-registry/README.md @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-apigee-registry - 0.78.0 + 0.81.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-apigee-registry:0.78.0' +implementation 'com.google.cloud:google-cloud-apigee-registry:0.81.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-apigee-registry" % "0.78.0" +libraryDependencies += "com.google.cloud" % "google-cloud-apigee-registry" % "0.81.0" ``` ## Authentication @@ -175,32 +175,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/apigee/docs/api-hub/get-started-registry-api [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-apigee-registry/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-apigee-registry.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apigee-registry/0.78.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apigee-registry/0.81.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-apigee-registry/google-cloud-apigee-registry-bom/pom.xml b/java-apigee-registry/google-cloud-apigee-registry-bom/pom.xml index 0113757c3921..1627a17a27a4 100644 --- a/java-apigee-registry/google-cloud-apigee-registry-bom/pom.xml +++ b/java-apigee-registry/google-cloud-apigee-registry-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-apigee-registry-bom - 0.81.0-SNAPSHOT + 0.82.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-apigee-registry - 0.81.0-SNAPSHOT + 0.82.0 com.google.api.grpc grpc-google-cloud-apigee-registry-v1 - 0.81.0-SNAPSHOT + 0.82.0 com.google.api.grpc proto-google-cloud-apigee-registry-v1 - 0.81.0-SNAPSHOT + 0.82.0 diff --git a/java-apigee-registry/google-cloud-apigee-registry/pom.xml b/java-apigee-registry/google-cloud-apigee-registry/pom.xml index 14eb3a67ebf8..039e5275b6eb 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/pom.xml +++ b/java-apigee-registry/google-cloud-apigee-registry/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-apigee-registry - 0.81.0-SNAPSHOT + 0.82.0 jar Google Registry API Registry API allows teams to upload and share machine-readable descriptions of APIs that are in use and in development. com.google.cloud google-cloud-apigee-registry-parent - 0.81.0-SNAPSHOT + 0.82.0 google-cloud-apigee-registry diff --git a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningClient.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningClient.java index 598958b8ab6b..5b4525f8af49 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningClient.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningSettings.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningSettings.java index 73c6e65c0576..4a0433104dbc 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningSettings.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryClient.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryClient.java index a6102805006b..11e48c95ef04 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryClient.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistrySettings.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistrySettings.java index 01c195249c66..534bdd4dd220 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistrySettings.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/RegistrySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RegistrySettings extends ClientSettings { diff --git a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/package-info.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/package-info.java index 716b95b3bfc3..4afa476cda24 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/package-info.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningCallableFactory.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningCallableFactory.java index a8fc3403cb6b..e4c3c90f13c8 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningCallableFactory.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningStub.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningStub.java index f77812f53073..2552763b8332 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningStub.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcProvisioningStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryCallableFactory.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryCallableFactory.java index 158594c4d737..12186c2094f8 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryCallableFactory.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryStub.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryStub.java index f1f0f5c248d7..142dd69a6279 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryStub.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/GrpcRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningCallableFactory.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningCallableFactory.java index ba12ea6a57a0..896a82b0366e 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningCallableFactory.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningStub.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningStub.java index 6d69e5a92d89..474c01dfa32d 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningStub.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonProvisioningStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryCallableFactory.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryCallableFactory.java index 4e1c84fdabe9..fb291d22b0bc 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryCallableFactory.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryStub.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryStub.java index 25e24a06cce1..bec2dae56934 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryStub.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/HttpJsonRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStub.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStub.java index 50a35e976097..be452f85b65c 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStub.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStubSettings.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStubSettings.java index 89c95a78bb96..a954470212e6 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStubSettings.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/ProvisioningStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -121,8 +121,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStub.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStub.java index 096626c9b763..be9f49d2bbec 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStub.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStubSettings.java b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStubSettings.java index fac5feb1d826..66930f5941c4 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStubSettings.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/main/java/com/google/cloud/apigeeregistry/v1/stub/RegistryStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -165,8 +165,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RegistryStubSettings extends StubSettings { diff --git a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicy.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicy.java index c893afcd418f..6582b50e24e7 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicy.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicyImpl.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicyImpl.java index d66bdb8ce68f..d8c44876e12e 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicyImpl.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocations.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocations.java index 3dbd3bd94ad4..853fa34e2a22 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocations.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocationsImpl.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocationsImpl.java index 43810a51f3b0..ab60a1009f22 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocationsImpl.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioning.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioning.java index cf86ced0a492..85a8a7333859 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioning.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioningImpl.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioningImpl.java index 7f0c4badbed5..c283747037ac 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioningImpl.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockProvisioningImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistry.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistry.java index 1ec1349f9519..3f95c853f7d2 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistry.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistryImpl.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistryImpl.java index a4f194b168ab..435602211b16 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistryImpl.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/MockRegistryImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientHttpJsonTest.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientHttpJsonTest.java index 9054323ed1b9..355e527833ac 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientHttpJsonTest.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientTest.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientTest.java index 7ff325c836b0..21579ccaad9c 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientTest.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/ProvisioningClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientHttpJsonTest.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientHttpJsonTest.java index 7f5e09222774..d6797aadfd64 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientHttpJsonTest.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientTest.java b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientTest.java index cbc8aa3e2f9e..2cf55b385d0b 100644 --- a/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientTest.java +++ b/java-apigee-registry/google-cloud-apigee-registry/src/test/java/com/google/cloud/apigeeregistry/v1/RegistryClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/pom.xml b/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/pom.xml index 4032e871a8c1..e656a9178cbc 100644 --- a/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/pom.xml +++ b/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-apigee-registry-v1 - 0.81.0-SNAPSHOT + 0.82.0 grpc-google-cloud-apigee-registry-v1 GRPC library for google-cloud-apigee-registry com.google.cloud google-cloud-apigee-registry-parent - 0.81.0-SNAPSHOT + 0.82.0 diff --git a/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningGrpc.java b/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningGrpc.java index 44e762e1591c..7237ea0ad516 100644 --- a/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningGrpc.java +++ b/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryGrpc.java b/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryGrpc.java index 11faff74df88..fd8025611259 100644 --- a/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryGrpc.java +++ b/java-apigee-registry/grpc-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/pom.xml b/java-apigee-registry/pom.xml index 8164e29803c0..a7e1006a0f06 100644 --- a/java-apigee-registry/pom.xml +++ b/java-apigee-registry/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-apigee-registry-parent pom - 0.81.0-SNAPSHOT + 0.82.0 Google Registry API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-apigee-registry - 0.81.0-SNAPSHOT + 0.82.0 com.google.api.grpc grpc-google-cloud-apigee-registry-v1 - 0.81.0-SNAPSHOT + 0.82.0 com.google.api.grpc proto-google-cloud-apigee-registry-v1 - 0.81.0-SNAPSHOT + 0.82.0 diff --git a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/pom.xml b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/pom.xml index 6841c45c5b67..f7f14a4d16e1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/pom.xml +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-apigee-registry-v1 - 0.81.0-SNAPSHOT + 0.82.0 proto-google-cloud-apigee-registry-v1 Proto library for google-cloud-apigee-registry com.google.cloud google-cloud-apigee-registry-parent - 0.81.0-SNAPSHOT + 0.82.0 diff --git a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Api.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Api.java index 0bb9cc8d9bce..421d97f489aa 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Api.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Api.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeployment.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeployment.java index bd2e0f36be43..12fe68cb60f7 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeployment.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentName.java index cba45f84b5ac..7dd955748e55 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentOrBuilder.java index e1f0bdee2b6a..9f54d3c53aa7 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiDeploymentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiName.java index bf53ec77a305..6341a19c05f1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiOrBuilder.java index 590dabb46101..a99d4b90c3e5 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpec.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpec.java index db30c88d9b40..52ab7669a700 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpec.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecName.java index 8008f1f7dd93..1652ea966178 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecOrBuilder.java index e1985f3ca9d6..eb8b56353d98 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersion.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersion.java index c72463c25bd3..4537f5fe25b9 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersion.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionName.java index 436725ba97f7..2da2a2d5574b 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionOrBuilder.java index 231ebda0035e..206adeba8fda 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ApiVersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Artifact.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Artifact.java index 131764ce3ce1..bb8fb29fcd6c 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Artifact.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Artifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactName.java index 41046d9af316..4e4b50e61ab8 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactOrBuilder.java index 71d764c5aabe..818b2da8acec 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequest.java index 02a64ac9f7e7..20d7440dd9de 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequestOrBuilder.java index 4894e446164e..8582c1ad87ed 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequest.java index 173bb1610b45..5defd84bd6d1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequestOrBuilder.java index 7e090c294e29..f13184a4f433 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequest.java index 8421cc4fdf74..b3d20922250d 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequestOrBuilder.java index f8179f66d1f0..1c66a1f866c9 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequest.java index 9af63caa1709..35c50d9d896c 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequestOrBuilder.java index 1e040e2e538d..8c8b3afd79a1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateApiVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequest.java index df28e4881552..1c68318a8b7a 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequestOrBuilder.java index dd648ed19f39..dc6f8968c3dd 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequest.java index 87d960b94f4f..51fb7268fc11 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequestOrBuilder.java index 70802b120ab8..0d94d67e17df 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/CreateInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequest.java index 7c9e6e816562..9fcbec4c3dd7 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequestOrBuilder.java index 4e654f9f9ff0..52bf8b993f3c 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequest.java index 8b670ae80f4b..09adc270a6cb 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequestOrBuilder.java index b63bfeb6addb..d420762daf38 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiDeploymentRevisionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequest.java index a46035162b8e..fa38437f3758 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequestOrBuilder.java index 472e136d5b26..7f97ed346eb0 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequest.java index be7b9985a3e0..904d2bcd854b 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequestOrBuilder.java index 716443a6a658..471202f824df 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequest.java index bf02dbd25f5b..3ecd058b94e0 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequestOrBuilder.java index 864b4d16acfa..9fd6d4e7c3d8 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiSpecRevisionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequest.java index a3ef81c0dd3f..7b7f68dc04ea 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequestOrBuilder.java index a256a565e159..c0144807861b 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteApiVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequest.java index dc13130a936d..3ea0943f0723 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequestOrBuilder.java index 466ac09f8df6..90816cc41694 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequest.java index 435c9e37234d..41dce9ab0525 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequestOrBuilder.java index 44f01b51137a..0bbd804a3bbf 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/DeleteInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequest.java index e145f1ec04f7..4e56f5078c4d 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequestOrBuilder.java index cd50967c7278..e652fa702d95 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequest.java index c8d4becab561..a848220d4350 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequestOrBuilder.java index 821ee1a628b4..38a54743b6c1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequest.java index b75101975663..84d95872ad01 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequestOrBuilder.java index a393752187dd..5db8fab2b6a2 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecContentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequest.java index 08dcb2068707..eec665803329 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequestOrBuilder.java index 2f136fa7161a..9ed9675c6d25 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequest.java index 19f2dc0fb365..7be027d783e8 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequestOrBuilder.java index 440c8ce42fec..a6690efe45bc 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetApiVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequest.java index 7fbeab1ec542..9a346b82adce 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequestOrBuilder.java index 3e07f10b8e97..3129cae71c0b 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactContentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequest.java index 22e528652c22..91bb9fb813bc 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequestOrBuilder.java index 06b07eb06440..0aba7e0babfb 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequest.java index ce51c72cd8c1..63cc2513de52 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequestOrBuilder.java index a12335037c8d..eb3c84ab4c1a 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/GetInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Instance.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Instance.java index 7f3b0a77b085..d60b887eb1ea 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Instance.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/Instance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceName.java index 74b81ff155f5..ec36ab0f357e 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceOrBuilder.java index c3c124b85828..e5450915fa62 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/InstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequest.java index 89e1f339c8b7..834344238a4d 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequestOrBuilder.java index 9297c98495e5..7b25654d8f33 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponse.java index 76505021c54a..ee6bfea33a1d 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponseOrBuilder.java index 79449db136f8..e6f0e013666b 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentRevisionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequest.java index 7b4c7ad11173..43ae2bed2971 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequestOrBuilder.java index bda07d5ff5b2..67cb137e2127 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponse.java index 25bea65ccce0..fc22f51f55ff 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponseOrBuilder.java index 44d49ed05529..db44d6dd79e5 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiDeploymentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequest.java index 5573e3e66d33..1a05d12dfd75 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequestOrBuilder.java index aafe81fc9071..ca43981bd0fd 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponse.java index 4cd6af6dd694..d6ad93bcf175 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponseOrBuilder.java index b0dfc12ef00c..8161b42c5c3c 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecRevisionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequest.java index a4453ca658eb..84034035e173 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequestOrBuilder.java index f3e4a7ea8c8d..7ab8abe31c86 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponse.java index 527888a0e0b4..2814fc0118ad 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponseOrBuilder.java index d4cca8020977..0b3a5220ab54 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiSpecsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequest.java index 2c09867dcccf..141fae45d25e 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequestOrBuilder.java index c1d657cf678c..4b0a9c09658b 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponse.java index d5c0412fe698..c9bceff786b5 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponseOrBuilder.java index 249dd6f86da2..5363e087ca2d 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApiVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequest.java index d98528dafbd4..892217924912 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequestOrBuilder.java index aa819367dbf3..8a86e07f38c5 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponse.java index 32ef588fde7f..8a896163ccc1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponseOrBuilder.java index 5fa7bed1d00c..a29d45161219 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListApisResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequest.java index 434f17949fd6..455bd878b3a6 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequestOrBuilder.java index edb1fd2c856f..c6fb414403aa 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponse.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponse.java index e16d052cc96e..884dfc2677d1 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponse.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponseOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponseOrBuilder.java index a3e4d7c91dc0..57cb17699224 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponseOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ListArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/LocationName.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/LocationName.java index 267a4bd01998..83ae5b3a6b58 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/LocationName.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadata.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadata.java index 2d51b0b86298..7a5697bda7ee 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadata.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadataOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadataOrBuilder.java index f343c1546ff8..ddb6a6e9d91c 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadataOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningServiceProto.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningServiceProto.java index c0b585cafac1..7392ee59a755 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningServiceProto.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ProvisioningServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryModelsProto.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryModelsProto.java index b6ff1ae07400..bbc8d4c16497 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryModelsProto.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryModelsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryServiceProto.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryServiceProto.java index e0d7e6d6f799..5267f0158ff2 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryServiceProto.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RegistryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequest.java index 60dc27e1397d..fd89ba4e147f 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequestOrBuilder.java index 3cebc56be577..096279bcad4d 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/ReplaceArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequest.java index 3176c170fea2..bb5bbf4b1896 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequestOrBuilder.java index 06f63f84f8bd..08649f4ec6cb 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequest.java index 7c0068e47102..ebc6d97f4252 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequestOrBuilder.java index c1853399a173..149465b18156 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/RollbackApiSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequest.java index 48fd8212f330..0f8d01e24b11 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequestOrBuilder.java index 953b7604b029..86cd41b81e73 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiDeploymentRevisionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequest.java index 26d256c2e687..9c45bf229bef 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequestOrBuilder.java index 0819efb7ff87..b71c81d1f362 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/TagApiSpecRevisionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequest.java index b5b964455c55..95bff05ca659 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequestOrBuilder.java index bd75ef3a4afc..c4b1c1e34462 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequest.java index 3e49cb30dc0f..250e19932012 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequestOrBuilder.java index 700e9f9af148..0cfe862c30e7 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequest.java index 250acccf0ba5..4883f5b86816 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequestOrBuilder.java index 53fc300303cc..408121810b9a 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequest.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequest.java index 568c50f9d33c..4fd6a07ad9ef 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequest.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequestOrBuilder.java b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequestOrBuilder.java index 82924777bec4..61a1df4ce59e 100644 --- a/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequestOrBuilder.java +++ b/java-apigee-registry/proto-google-cloud-apigee-registry-v1/src/main/java/com/google/cloud/apigeeregistry/v1/UpdateApiVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetCredentialsProvider.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetCredentialsProvider.java index 5c61216e074e..7678fa4651b4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetCredentialsProvider.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetEndpoint.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetEndpoint.java index 928ed592a73f..e65df9077b61 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetEndpoint.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateUseHttpJsonTransport.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateUseHttpJsonTransport.java index 95f169de1092..e434e172bac0 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateUseHttpJsonTransport.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstance.java index 75bdfdb722bd..ac7c4e2a0361 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstanceLRO.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstanceLRO.java index 1a6665f7a9fd..b65cbfda9b86 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstanceLRO.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/AsyncCreateInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstance.java index 732ae9bd8d28..107b4da42301 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceLocationnameInstanceString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceLocationnameInstanceString.java index 4ef5a908903d..d4569fffbcff 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceLocationnameInstanceString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceLocationnameInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceStringInstanceString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceStringInstanceString.java index df2969a389d3..35e65ef6aac8 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceStringInstanceString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/createinstance/SyncCreateInstanceStringInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstance.java index 9a8c271cf1f7..355e116b3316 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstanceLRO.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstanceLRO.java index 0835125dc8e2..1f38e7850e31 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstanceLRO.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/AsyncDeleteInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstance.java index f60aff106de8..9b2c63af0d3c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceInstancename.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceInstancename.java index 8d7413a1d0a0..df5cb154b4e3 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceInstancename.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceString.java index 282bf48a6898..33059c94dfd5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/deleteinstance/SyncDeleteInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/AsyncGetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/AsyncGetIamPolicy.java index ef6f3d2256f4..a6baadd7815d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/AsyncGetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/SyncGetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/SyncGetIamPolicy.java index 01ed84a63fae..9b70caba7ab0 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/SyncGetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/AsyncGetInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/AsyncGetInstance.java index dd0540cd6124..8f57c2404457 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/AsyncGetInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/AsyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstance.java index 079be5129020..996346128944 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceInstancename.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceInstancename.java index c381955dd058..979bb3b6aee1 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceInstancename.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceInstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceString.java index ab0a708326c0..0fec05d7c75b 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getinstance/SyncGetInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/AsyncGetLocation.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/AsyncGetLocation.java index 05ca8b33e604..6d8c19fdf1a4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/AsyncGetLocation.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/SyncGetLocation.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/SyncGetLocation.java index 66b58d64f357..fa65bf29abb2 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/SyncGetLocation.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocations.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocations.java index 58b5313ba1ec..9e081969c202 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocations.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocationsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocationsPaged.java index 7fb1af9818b8..f0ee80039080 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocationsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/SyncListLocations.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/SyncListLocations.java index baa7184f6cf3..c160d574f2d4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/SyncListLocations.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/AsyncSetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/AsyncSetIamPolicy.java index c06e907414f2..2c370bdb49c6 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/AsyncSetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/SyncSetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/SyncSetIamPolicy.java index 8559449e2573..70f12e8c2198 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/SyncSetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/AsyncTestIamPermissions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/AsyncTestIamPermissions.java index 736d0ce72321..30d0fbafa614 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/AsyncTestIamPermissions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/SyncTestIamPermissions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/SyncTestIamPermissions.java index f2c270af029c..db48516a1919 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/SyncTestIamPermissions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioning/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/createinstance/SyncCreateInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/createinstance/SyncCreateInstance.java index 8e615439e0f7..e7e1ebeac59e 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/createinstance/SyncCreateInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/createinstance/SyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/getinstance/SyncGetInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/getinstance/SyncGetInstance.java index 7c07f488546d..eeaa08a74ffe 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/getinstance/SyncGetInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/provisioningsettings/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetCredentialsProvider.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetCredentialsProvider.java index 0b680e122840..43363278404f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetCredentialsProvider.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetEndpoint.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetEndpoint.java index a7a33d3077d9..d3f11f2df5c9 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetEndpoint.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateUseHttpJsonTransport.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateUseHttpJsonTransport.java index 361844f6530f..543ecf01594b 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateUseHttpJsonTransport.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/AsyncCreateApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/AsyncCreateApi.java index 53f321424bf1..31e2d69b7b48 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/AsyncCreateApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/AsyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApi.java index 395748ef562a..841c7de07490 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiLocationnameApiString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiLocationnameApiString.java index ce24e2d2869e..879880dc1131 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiLocationnameApiString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiLocationnameApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiStringApiString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiStringApiString.java index 183b8a40a75e..c348b4fcc985 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiStringApiString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapi/SyncCreateApiStringApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/AsyncCreateApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/AsyncCreateApiDeployment.java index 96f053dd4b2d..9ab60631a95d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/AsyncCreateApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/AsyncCreateApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeployment.java index 89dc058a6707..20d7ad1277b7 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentApinameApideploymentString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentApinameApideploymentString.java index cfa3311dacce..a8a6aa785283 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentApinameApideploymentString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentApinameApideploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentStringApideploymentString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentStringApideploymentString.java index d588d0aa91e2..15740927b224 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentStringApideploymentString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapideployment/SyncCreateApiDeploymentStringApideploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/AsyncCreateApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/AsyncCreateApiSpec.java index 36ba15c0fe9d..2c3cdd166e5c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/AsyncCreateApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/AsyncCreateApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpec.java index 121ceb9f807a..9b590a2187bd 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecApiversionnameApispecString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecApiversionnameApispecString.java index e06b1be9c105..9144c2d9fa91 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecApiversionnameApispecString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecApiversionnameApispecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecStringApispecString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecStringApispecString.java index fecf53770f72..dc1a75fb2d5f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecStringApispecString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapispec/SyncCreateApiSpecStringApispecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/AsyncCreateApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/AsyncCreateApiVersion.java index 8454e4a5cf47..1af2d0c034ac 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/AsyncCreateApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/AsyncCreateApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersion.java index 0d751d98a5fb..644642bb50c9 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionApinameApiversionString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionApinameApiversionString.java index a6339b88a844..5f055ab84fa1 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionApinameApiversionString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionApinameApiversionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionStringApiversionString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionStringApiversionString.java index 58f3ee360050..a29ce51bc5ca 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionStringApiversionString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createapiversion/SyncCreateApiVersionStringApiversionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/AsyncCreateArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/AsyncCreateArtifact.java index 7a357ecc1a06..4e202bf2ccde 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/AsyncCreateArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/AsyncCreateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifact.java index 88cd1711c412..caec15ad1b45 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApideploymentnameArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApideploymentnameArtifactString.java index b4584bee0f32..dae1d04332b2 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApideploymentnameArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApideploymentnameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApinameArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApinameArtifactString.java index a7a54fe815ce..ead1d37ce4ad 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApinameArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApinameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApispecnameArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApispecnameArtifactString.java index 3fbb4c7017b7..7bb430fd5225 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApispecnameArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApispecnameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApiversionnameArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApiversionnameArtifactString.java index 20b6f98b357b..e094be27128a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApiversionnameArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactApiversionnameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactLocationnameArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactLocationnameArtifactString.java index 8f6abf1c8ac2..02dc7c758283 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactLocationnameArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactLocationnameArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactStringArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactStringArtifactString.java index c19e4e13ac8d..73e278f10ae5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactStringArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/createartifact/SyncCreateArtifactStringArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/AsyncDeleteApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/AsyncDeleteApi.java index 67c7122d04c2..08d9db5309ed 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/AsyncDeleteApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/AsyncDeleteApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApi.java index a8ae3ace4d20..68fae660f5af 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiApiname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiApiname.java index 9485afc7d39c..2bff0fbd57b1 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiApiname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiString.java index a662c4ac5d03..cdcb1b2d3f46 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapi/SyncDeleteApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/AsyncDeleteApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/AsyncDeleteApiDeployment.java index 8d083a93dc6e..5394574fec8d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/AsyncDeleteApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/AsyncDeleteApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeployment.java index e64b78480106..204777f1ab48 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentApideploymentname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentApideploymentname.java index 4eb4aaca9aaf..16890f33d774 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentApideploymentname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentApideploymentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentString.java index a9d328f04708..d6ccd04a0bd5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideployment/SyncDeleteApiDeploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/AsyncDeleteApiDeploymentRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/AsyncDeleteApiDeploymentRevision.java index cc3a3efb1ec5..769509b95b4a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/AsyncDeleteApiDeploymentRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/AsyncDeleteApiDeploymentRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevision.java index ea5a3646404f..1549152b08c1 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionApideploymentname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionApideploymentname.java index fc9350fcdb3e..51d0e5a127c0 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionApideploymentname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionApideploymentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionString.java index 267757ea1853..cde57d85371b 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapideploymentrevision/SyncDeleteApiDeploymentRevisionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/AsyncDeleteApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/AsyncDeleteApiSpec.java index a7e83824e5f1..b2aa5fadc9ae 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/AsyncDeleteApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/AsyncDeleteApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpec.java index cd2b297388aa..8b14eb7a13c9 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecApispecname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecApispecname.java index 2774f8133f5c..c98f1328dd75 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecApispecname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecApispecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecString.java index 173286def150..26c016a32676 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispec/SyncDeleteApiSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/AsyncDeleteApiSpecRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/AsyncDeleteApiSpecRevision.java index 330528ec786a..171dcd16cba3 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/AsyncDeleteApiSpecRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/AsyncDeleteApiSpecRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevision.java index e14d5ce17b41..7f48e601f76d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionApispecname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionApispecname.java index f212a5bf0378..8be08261b62f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionApispecname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionApispecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionString.java index f9569c781614..8ee044e0da97 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapispecrevision/SyncDeleteApiSpecRevisionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/AsyncDeleteApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/AsyncDeleteApiVersion.java index 805b7cfe3f3c..51a66640a270 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/AsyncDeleteApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/AsyncDeleteApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersion.java index 385101300b6a..86d4531633f5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionApiversionname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionApiversionname.java index 60aa7eae18f5..a1e8765273c5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionApiversionname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionApiversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionString.java index c8269ae841f3..9d9a12f2c92d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteapiversion/SyncDeleteApiVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/AsyncDeleteArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/AsyncDeleteArtifact.java index b8c380b3c834..991a6cf5b04c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/AsyncDeleteArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/AsyncDeleteArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifact.java index 923e7b704e07..b9ea4478b89a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactArtifactname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactArtifactname.java index 2952fa4add6b..9613725a94ab 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactArtifactname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactString.java index f6f56b106f80..30f080ed5032 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/deleteartifact/SyncDeleteArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/AsyncGetApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/AsyncGetApi.java index f25423460717..f8ce4ec15e6a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/AsyncGetApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/AsyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApi.java index 8849c32cb096..645078bd8be9 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiApiname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiApiname.java index da13ceff0701..80353ffe0069 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiApiname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiString.java index be1358f7fbad..436fa576373d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapi/SyncGetApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/AsyncGetApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/AsyncGetApiDeployment.java index f8e1319e7e22..f51d2bd513e8 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/AsyncGetApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/AsyncGetApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeployment.java index 6c3b708e025e..65ad3a8740aa 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentApideploymentname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentApideploymentname.java index 87cdd9d391f9..288abf88ce13 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentApideploymentname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentApideploymentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentString.java index 40a250256611..7c5c028a083f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapideployment/SyncGetApiDeploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/AsyncGetApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/AsyncGetApiSpec.java index 652ebd8495c6..e9739cf86fcd 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/AsyncGetApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/AsyncGetApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpec.java index 4676ff8eefa4..e15a6ba55cf7 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecApispecname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecApispecname.java index e44f27abb618..62ac9d40a01e 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecApispecname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecApispecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecString.java index 8caa343f6168..dee248272362 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispec/SyncGetApiSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/AsyncGetApiSpecContents.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/AsyncGetApiSpecContents.java index 2668bad949b8..e95fbe9c214d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/AsyncGetApiSpecContents.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/AsyncGetApiSpecContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContents.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContents.java index 63f9eba45c16..25b437709206 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContents.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsApispecname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsApispecname.java index 49200ffc7102..9ff19b48c707 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsApispecname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsApispecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsString.java index 7b2e080ca5c5..7a8a92b132e5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapispeccontents/SyncGetApiSpecContentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/AsyncGetApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/AsyncGetApiVersion.java index a321637fd713..94d99b79fb9c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/AsyncGetApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/AsyncGetApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersion.java index e4beeaa29516..d9245a1aff32 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionApiversionname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionApiversionname.java index a600c9194ade..2a1a2e213b5a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionApiversionname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionApiversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionString.java index 6fee862b063f..e84d9cee19ee 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getapiversion/SyncGetApiVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/AsyncGetArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/AsyncGetArtifact.java index f30735277477..108a6f3cc03f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/AsyncGetArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/AsyncGetArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifact.java index d5d29f9d9068..83b0871a4a28 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactArtifactname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactArtifactname.java index 8ba9223d3d10..c59f4e6f4d1a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactArtifactname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactString.java index 317b61e49035..4f99969619e5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifact/SyncGetArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/AsyncGetArtifactContents.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/AsyncGetArtifactContents.java index 3d08326f13e9..b0091cc6fe1d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/AsyncGetArtifactContents.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/AsyncGetArtifactContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContents.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContents.java index 0f9afb377a8e..32d5bbbb5507 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContents.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsArtifactname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsArtifactname.java index c5c97c47cd8e..ff64c3af50ec 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsArtifactname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsArtifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsString.java index 4687d34ba120..d1eb49ce2d6b 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getartifactcontents/SyncGetArtifactContentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/AsyncGetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/AsyncGetIamPolicy.java index 9d6bcd5c3687..9e2f0483fccc 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/AsyncGetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/SyncGetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/SyncGetIamPolicy.java index 9c3651c78672..a69fb41cb5c7 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/SyncGetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/AsyncGetLocation.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/AsyncGetLocation.java index cac4878d1dd4..8c0919c9667e 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/AsyncGetLocation.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/SyncGetLocation.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/SyncGetLocation.java index 71f23c1031ce..824dbf7b2a8d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/SyncGetLocation.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisions.java index 03471547b6f6..b30a1bb9364e 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisionsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisionsPaged.java index ad414e2ebd02..2a228023f8c8 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisionsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/AsyncListApiDeploymentRevisionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/SyncListApiDeploymentRevisions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/SyncListApiDeploymentRevisions.java index 241da09cef2c..ac529d9808b2 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/SyncListApiDeploymentRevisions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideploymentrevisions/SyncListApiDeploymentRevisions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeployments.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeployments.java index 2e2cd347fdb7..81a8fc6abfcf 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeployments.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeployments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeploymentsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeploymentsPaged.java index 48343e90449a..29c81844ead4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeploymentsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/AsyncListApiDeploymentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeployments.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeployments.java index 631ae27667e6..cb89e1196aa2 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeployments.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeployments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsApiname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsApiname.java index 876dc577f666..faafbfee5cf0 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsApiname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsString.java index caa7c14b5b2c..739bc022da85 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapideployments/SyncListApiDeploymentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApis.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApis.java index c609d544c1f6..593ccdf640ce 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApis.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApisPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApisPaged.java index 179fe1569147..273708ceb7de 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApisPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/AsyncListApisPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApis.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApis.java index f597e1e50a37..645e93c92f2b 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApis.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisLocationname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisLocationname.java index 7e4d44edfdc1..40109aafbc3c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisLocationname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisString.java index d15b1d8c1c63..afbccfc23fec 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapis/SyncListApisString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisions.java index ea82d28c445d..b6f9bbfbfb04 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisionsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisionsPaged.java index 836cf673e6ff..ca5a1990bd9a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisionsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/AsyncListApiSpecRevisionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/SyncListApiSpecRevisions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/SyncListApiSpecRevisions.java index 6c16d376adcc..ae05f446021c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/SyncListApiSpecRevisions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecrevisions/SyncListApiSpecRevisions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecs.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecs.java index cb2cbd095f4a..807dc74368d5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecs.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecsPaged.java index 57752f3be82b..c7ba8d9c49c4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/AsyncListApiSpecsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecs.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecs.java index be1e16daa34e..0304cf393a52 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecs.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsApiversionname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsApiversionname.java index 29faf1cd2b44..848a4db1638c 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsApiversionname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsApiversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsString.java index 751c5346de43..19063d6f89d4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapispecs/SyncListApiSpecsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersions.java index c950b6659af7..dc817db09f7a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersionsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersionsPaged.java index ffd7c8c56da3..5bda3ce47a62 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersionsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/AsyncListApiVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersions.java index faecc4a86b6d..cffbd51f8861 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsApiname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsApiname.java index 16c59ce96815..ccb6665c2f1a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsApiname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsString.java index 5a4a1ddf3fe0..c45a7c188812 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listapiversions/SyncListApiVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifacts.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifacts.java index 9eb6798c67df..9cf640406e06 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifacts.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifactsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifactsPaged.java index 792b48f6d5e7..5fca2e34ac84 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifactsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/AsyncListArtifactsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifacts.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifacts.java index 5f194972fd31..f1729fa6266d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifacts.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApideploymentname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApideploymentname.java index f5c07ede71ca..dde3a339f14f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApideploymentname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApideploymentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiname.java index 892e8596a409..3b09a256d92a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApispecname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApispecname.java index 737f6534159a..753aa2e4f594 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApispecname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApispecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiversionname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiversionname.java index a008ce7ed96f..b3d1552ed687 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiversionname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsApiversionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsLocationname.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsLocationname.java index 30a5eb7a279e..73e385096acb 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsLocationname.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsString.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsString.java index aa6e8a9d720a..04aa727410fe 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsString.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listartifacts/SyncListArtifactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocations.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocations.java index eef5f9a5af42..8d1946f16748 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocations.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocationsPaged.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocationsPaged.java index e59c0d0059a2..14307dce9841 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocationsPaged.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/SyncListLocations.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/SyncListLocations.java index dcc2e0c86512..a8c473370ee6 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/SyncListLocations.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/AsyncReplaceArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/AsyncReplaceArtifact.java index d17679361639..2ba0fa83fc2a 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/AsyncReplaceArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/AsyncReplaceArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifact.java index 597f33117797..abd55b9edc66 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifactArtifact.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifactArtifact.java index c60b538931b9..3d9800c48675 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifactArtifact.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/replaceartifact/SyncReplaceArtifactArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/AsyncRollbackApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/AsyncRollbackApiDeployment.java index b7c8cb9e8c3e..4cd6344286c0 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/AsyncRollbackApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/AsyncRollbackApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/SyncRollbackApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/SyncRollbackApiDeployment.java index b03daaaff0a6..adaeb0cf404f 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/SyncRollbackApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapideployment/SyncRollbackApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/AsyncRollbackApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/AsyncRollbackApiSpec.java index 34634ff96d73..93c3ef9babd7 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/AsyncRollbackApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/AsyncRollbackApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/SyncRollbackApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/SyncRollbackApiSpec.java index ae38da5bde8a..42f3742e54ec 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/SyncRollbackApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/rollbackapispec/SyncRollbackApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/AsyncSetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/AsyncSetIamPolicy.java index da2d4ce0d4b0..32fbf6e09805 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/AsyncSetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/SyncSetIamPolicy.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/SyncSetIamPolicy.java index af3765525271..a32f6c28a537 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/SyncSetIamPolicy.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/AsyncTagApiDeploymentRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/AsyncTagApiDeploymentRevision.java index 3314859e1bfa..b2815e5aee05 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/AsyncTagApiDeploymentRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/AsyncTagApiDeploymentRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/SyncTagApiDeploymentRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/SyncTagApiDeploymentRevision.java index 574db82bf4b4..872da85fb65b 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/SyncTagApiDeploymentRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapideploymentrevision/SyncTagApiDeploymentRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/AsyncTagApiSpecRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/AsyncTagApiSpecRevision.java index 5e942359a2db..aee320702222 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/AsyncTagApiSpecRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/AsyncTagApiSpecRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/SyncTagApiSpecRevision.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/SyncTagApiSpecRevision.java index 73a110aee63a..7d1d05643400 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/SyncTagApiSpecRevision.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/tagapispecrevision/SyncTagApiSpecRevision.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/AsyncTestIamPermissions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/AsyncTestIamPermissions.java index 0ef871c18fae..d3e531f6d9bd 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/AsyncTestIamPermissions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/SyncTestIamPermissions.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/SyncTestIamPermissions.java index 92dfe75855b5..cea035591dfc 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/SyncTestIamPermissions.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/AsyncUpdateApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/AsyncUpdateApi.java index 9aeb16ea36d6..dbc9edb3dce5 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/AsyncUpdateApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/AsyncUpdateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApi.java index 5df49ed5c7da..fff983f5bc7d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApiApiFieldmask.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApiApiFieldmask.java index 7e9f80695862..a24e17d3b80d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApiApiFieldmask.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapi/SyncUpdateApiApiFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/AsyncUpdateApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/AsyncUpdateApiDeployment.java index 09f264e5f54e..4529dcbb5c48 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/AsyncUpdateApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/AsyncUpdateApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeployment.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeployment.java index 476cdb72cf3d..f43564a9fdc4 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeployment.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeploymentApideploymentFieldmask.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeploymentApideploymentFieldmask.java index f82c34a8052c..d3de48419f4d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeploymentApideploymentFieldmask.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapideployment/SyncUpdateApiDeploymentApideploymentFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/AsyncUpdateApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/AsyncUpdateApiSpec.java index e40581d50711..8108e446c22d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/AsyncUpdateApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/AsyncUpdateApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpec.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpec.java index 09c0abac5640..f87aa6c25f74 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpec.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpecApispecFieldmask.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpecApispecFieldmask.java index ae9e366c4525..2255f83be9df 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpecApispecFieldmask.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapispec/SyncUpdateApiSpecApispecFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/AsyncUpdateApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/AsyncUpdateApiVersion.java index 0600033c7389..0742f2d047a7 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/AsyncUpdateApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/AsyncUpdateApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersion.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersion.java index ff877d0bbfe0..2571d70be226 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersion.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersionApiversionFieldmask.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersionApiversionFieldmask.java index f9b9ec92d988..b7450f67b588 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersionApiversionFieldmask.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registry/updateapiversion/SyncUpdateApiVersionApiversionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registrysettings/getapi/SyncGetApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registrysettings/getapi/SyncGetApi.java index b697eb2cac54..768dfdae5e0d 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registrysettings/getapi/SyncGetApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/registrysettings/getapi/SyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/createinstance/SyncCreateInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/createinstance/SyncCreateInstance.java index db80fb151118..bb40a612aefd 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/createinstance/SyncCreateInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/createinstance/SyncCreateInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/getinstance/SyncGetInstance.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/getinstance/SyncGetInstance.java index 0c7068652758..de2ab642fb87 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/getinstance/SyncGetInstance.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/provisioningstubsettings/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/registrystubsettings/getapi/SyncGetApi.java b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/registrystubsettings/getapi/SyncGetApi.java index e20135b44109..5d0430e6d4e8 100644 --- a/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/registrystubsettings/getapi/SyncGetApi.java +++ b/java-apigee-registry/samples/snippets/generated/com/google/cloud/apigeeregistry/v1/stub/registrystubsettings/getapi/SyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/CHANGELOG.md b/java-apihub/CHANGELOG.md index 702faaf3e554..c82d7e3b6506 100644 --- a/java-apihub/CHANGELOG.md +++ b/java-apihub/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.35.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.34.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.31.0 (2025-10-21) ### Dependencies diff --git a/java-apihub/README.md b/java-apihub/README.md index b140e53d8088..63710d86f7e8 100644 --- a/java-apihub/README.md +++ b/java-apihub/README.md @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-apihub - 0.31.0 + 0.34.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-apihub:0.31.0' +implementation 'com.google.cloud:google-cloud-apihub:0.34.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-apihub" % "0.31.0" +libraryDependencies += "com.google.cloud" % "google-cloud-apihub" % "0.34.0" ``` ## Authentication @@ -175,32 +175,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/apigee/docs/apihub/what-is-api-hub [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-apihub/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-apihub.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apihub/0.31.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apihub/0.34.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-apihub/google-cloud-apihub-bom/pom.xml b/java-apihub/google-cloud-apihub-bom/pom.xml index 7ad2c71da218..7a637e8b8f62 100644 --- a/java-apihub/google-cloud-apihub-bom/pom.xml +++ b/java-apihub/google-cloud-apihub-bom/pom.xml @@ -3,12 +3,12 @@ 4.0.0 com.google.cloud google-cloud-apihub-bom - 0.34.0-SNAPSHOT + 0.35.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -26,12 +26,12 @@ com.google.cloud google-cloud-apihub - 0.34.0-SNAPSHOT + 0.35.0 com.google.api.grpc proto-google-cloud-apihub-v1 - 0.34.0-SNAPSHOT + 0.35.0 diff --git a/java-apihub/google-cloud-apihub/pom.xml b/java-apihub/google-cloud-apihub/pom.xml index 192a992abea5..032a31cd2931 100644 --- a/java-apihub/google-cloud-apihub/pom.xml +++ b/java-apihub/google-cloud-apihub/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-apihub - 0.34.0-SNAPSHOT + 0.35.0 jar Google API hub API API hub API API hub lets you consolidate and organize information about all of the APIs of interest to your organization. API hub lets you capture critical information about APIs that allows developers to discover and evaluate them easily and leverage the work of other teams wherever possible. API platform teams can use API hub to have visibility into and manage their portfolio of APIs. com.google.cloud google-cloud-apihub-parent - 0.34.0-SNAPSHOT + 0.35.0 google-cloud-apihub diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubClient.java index f9db2918d235..4337699c133e 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectClient.java index c64fe27243bd..f519c984aab8 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectSettings.java index 31db14d5f1f9..32b700ca542e 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCollectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateClient.java index b36ceefc2f2d..450c8ddba2ff 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateSettings.java index 0c73e3605cad..432e2c2f4893 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubCurateSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubCurateSettings extends ClientSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesClient.java index acc0d4408329..7f4435915fc1 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesSettings.java index 72b5f3e99676..dcee7bdff3f3 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDependenciesSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -87,8 +87,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubDependenciesSettings extends ClientSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClient.java index af1c6e5ef985..7c0eaaf22c93 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoverySettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoverySettings.java index bd9349bf04d7..79d93184e31b 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoverySettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubDiscoverySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -86,8 +86,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubDiscoverySettings extends ClientSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginClient.java index 70f116457b68..2847deb77c4d 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginSettings.java index 2c3172243691..189b96d162aa 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubPluginSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubSettings.java index d8d2be6f6aa4..63f993ee1fbd 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ApiHubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubSettings extends ClientSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClient.java index 618486ae04b9..3c798c791949 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceSettings.java index 203ebbc127a3..60da568fff10 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -86,8 +86,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class HostProjectRegistrationServiceSettings diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceClient.java index 8c1dae7c5a9c..d3c450f46fe1 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceSettings.java index 6fa309c808a1..1cf5f379cd9a 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/LintingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LintingServiceSettings extends ClientSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningClient.java index 0ee29e6df98a..8f89914982b7 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningSettings.java index f2df2da5157c..26e5ae89185a 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/ProvisioningSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -86,8 +86,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClient.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClient.java index 1725ef1b8ffa..937c175ddad5 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClient.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceSettings.java index eadefba8c165..8255db2db3ef 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -87,8 +87,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RuntimeProjectAttachmentServiceSettings diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/package-info.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/package-info.java index b9ac8a56622b..dc53d702879c 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/package-info.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStub.java index d3e030b633c9..9e2483f31664 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStubSettings.java index 33f6981dd173..aaabf2b00937 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCollectStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,8 +108,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStub.java index 2298d5e91c6e..58bde7fab665 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStubSettings.java index fb952392d1f6..2b6c935cd412 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubCurateStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,8 +108,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubCurateStubSettings extends StubSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStub.java index 3395024a8885..6e64c0f6375f 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStubSettings.java index 82f3b39405c6..26d8310774e1 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDependenciesStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -110,8 +110,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubDependenciesStubSettings extends StubSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStub.java index 2ee0d330789c..7fc6f283f874 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStubSettings.java index 2ea67d64977a..4c732ea2e215 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubDiscoveryStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubDiscoveryStubSettings extends StubSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStub.java index e359e56fa3b7..767ff5b31038 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStubSettings.java index 1ebd3b06dbd1..da6df25c52a7 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubPluginStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -130,8 +130,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStub.java index 002455c791f8..87cbc6c52d57 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStubSettings.java index 59598f936e2d..dd731733946b 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ApiHubStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -164,8 +164,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ApiHubStubSettings extends StubSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStub.java index 60dd4bd43e7e..909dd2a5dd30 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStubSettings.java index fd774ece8396..cd910c9608ad 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HostProjectRegistrationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,8 +108,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class HostProjectRegistrationServiceStubSettings diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCallableFactory.java index 7becd9cd1433..f21349ed94bb 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectCallableFactory.java index 31b24cf7a8fb..853317c229a3 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectStub.java index a2c64dae4448..006f3a10a266 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCollectStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateCallableFactory.java index c60338dc3cb6..77ad786d86e5 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateStub.java index 2151f8e75754..629ca26460f5 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubCurateStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesCallableFactory.java index 5e37b51ce8f5..bd01d3a35ee8 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesStub.java index e687d03d2a2e..67999963a7fe 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDependenciesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryCallableFactory.java index 5d8e392d18b7..866c1a03344f 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryStub.java index ce436f6d30dd..eec69b968167 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubDiscoveryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginCallableFactory.java index 0502b8cbca55..1f49a3fdfb54 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginStub.java index 00e5738ffb64..0f63bb0282bb 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubPluginStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubStub.java index e68561b41274..bdb68f0b9f5c 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonApiHubStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceCallableFactory.java index 8b231bb39ca6..9252699c64cf 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceStub.java index ccb3d78d836f..5715c91449c4 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonHostProjectRegistrationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceCallableFactory.java index 8012d1adde64..e92c6282362b 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceStub.java index da2e3103d47a..ec6f5829b356 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonLintingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningCallableFactory.java index 118a1ba1c78c..1df2bb0148ae 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningStub.java index b22f6b92219a..2d17e5d90e57 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonProvisioningStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceCallableFactory.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceCallableFactory.java index 7abf5f47c0e2..063eef46a88d 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceCallableFactory.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceStub.java index 98bbaec505e1..c88fb9a54db8 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/HttpJsonRuntimeProjectAttachmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStub.java index 5ad8ce0d8908..25145cae7381 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStubSettings.java index f1003bda8299..10913a755bf5 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/LintingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -107,8 +107,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LintingServiceStubSettings extends StubSettings { diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStub.java index 76dd732e5166..a7f27bf18400 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStubSettings.java index 2d5cf8edad1d..e5040cb44db0 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/ProvisioningStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -113,8 +113,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStub.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStub.java index 4177158b44af..aa8a31463c97 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStub.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStubSettings.java b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStubSettings.java index 5381b2dcaa7d..52593b55caf4 100644 --- a/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStubSettings.java +++ b/java-apihub/google-cloud-apihub/src/main/java/com/google/cloud/apihub/v1/stub/RuntimeProjectAttachmentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RuntimeProjectAttachmentServiceStubSettings diff --git a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubClientTest.java index c37f67184e94..900446348e0e 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCollectClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCollectClientTest.java index c97ef6140118..58f1f2e54c95 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCollectClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCollectClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCurateClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCurateClientTest.java index 76c792e1b868..234d74c3d56a 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCurateClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubCurateClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDependenciesClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDependenciesClientTest.java index 7b43650d7d10..37dac5091912 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDependenciesClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDependenciesClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClientTest.java index ca22a6b64f62..d12bcb6dfcac 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubDiscoveryClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubPluginClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubPluginClientTest.java index 89ddcf15c4c1..fdd1c5907854 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubPluginClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ApiHubPluginClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClientTest.java index 89239b307469..c44e7b813d79 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/LintingServiceClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/LintingServiceClientTest.java index 87edf86596ce..879eeb1e1fa5 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/LintingServiceClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/LintingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ProvisioningClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ProvisioningClientTest.java index e5e37e73f323..53a9ab533f5b 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ProvisioningClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/ProvisioningClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClientTest.java b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClientTest.java index 2b93bd3c2b61..6010592486b8 100644 --- a/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClientTest.java +++ b/java-apihub/google-cloud-apihub/src/test/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/pom.xml b/java-apihub/pom.xml index 97ae66ee17c9..f2c2c4e10fea 100644 --- a/java-apihub/pom.xml +++ b/java-apihub/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-apihub-parent pom - 0.34.0-SNAPSHOT + 0.35.0 Google API hub API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,12 +29,12 @@ com.google.cloud google-cloud-apihub - 0.34.0-SNAPSHOT + 0.35.0 com.google.api.grpc proto-google-cloud-apihub-v1 - 0.34.0-SNAPSHOT + 0.35.0 diff --git a/java-apihub/proto-google-cloud-apihub-v1/pom.xml b/java-apihub/proto-google-cloud-apihub-v1/pom.xml index e32a54bbdbbb..b374d7aaf0bb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/pom.xml +++ b/java-apihub/proto-google-cloud-apihub-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-apihub-v1 - 0.34.0-SNAPSHOT + 0.35.0 proto-google-cloud-apihub-v1 Proto library for google-cloud-apihub com.google.cloud google-cloud-apihub-parent - 0.34.0-SNAPSHOT + 0.35.0 diff --git a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadata.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadata.java index 3d2d4e45bbd5..b89bc20cbd55 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadata.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadataOrBuilder.java index d9340cee7216..15ba69b44eb0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/APIMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetail.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetail.java index 4ada0d7db186..57e1867637d0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetail.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetailOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetailOrBuilder.java index 6ce5807bf86d..0917b0ed19d2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetailOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionExecutionDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionType.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionType.java index 3c9b2309d38f..6fd446c06cac 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionType.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ActionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Api.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Api.java index 29a811b69b57..7fb831325451 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Api.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Api.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiData.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiData.java index ff22c008208d..a0493e0b460d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiData.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiDataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiDataOrBuilder.java index 2bb3ebd552a6..82fffdc44757 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiDataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstance.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstance.java index f57c972b793b..374e4c33a635 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstance.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceName.java index 9869709759ca..93e3ee62dca7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceOrBuilder.java index 7c245360ae26..acd8951c0613 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResource.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResource.java index 695cab0e1df4..772599f00fe7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResource.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResourceOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResourceOrBuilder.java index cd0d6d2c88e8..4a7a939daa3c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResourceOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubServiceProto.java index 11974e2946fb..0f19b9b003bf 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiHubServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataList.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataList.java index f283a74eaa64..6d5b919243d9 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataList.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataList.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataListOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataListOrBuilder.java index f0245a18ebf9..3700cccb2dc3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataListOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiMetadataListOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiName.java index 0da2b7e1e7d7..78dabf0d5a68 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperation.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperation.java index 37779d16cfa2..b53982d82172 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperation.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationName.java index 2fffa39a4dc4..265bfbe01136 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationOrBuilder.java index 5b29d7006f4b..c0e50fe4e7ee 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOperationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOrBuilder.java index 60c00cdb7c9a..3580c309c0da 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApiOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetails.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetails.java index eb1ca2c14000..31acdec26fdb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetails.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetailsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetailsOrBuilder.java index 0f42555e4ac1..157d3d7db2e2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetailsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ApplicationIntegrationEndpointDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Attribute.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Attribute.java index 3e6af596c49f..3e4d39c43937 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Attribute.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Attribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeName.java index c0c0a7b56b99..4d76e6ae0151 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeOrBuilder.java index c1fad6c1c204..ecdfbda45662 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValues.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValues.java index a3c669066af9..d60e832dd02c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValues.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValues.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValuesOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValuesOrBuilder.java index bf3afb51f42b..60d3e414c48a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValuesOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AttributeValuesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfig.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfig.java index 76cd16ff65d7..fed7940f00a8 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfig.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfigOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfigOrBuilder.java index b48271754cfd..8d69d441fb8d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfigOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthType.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthType.java index 3f76ba99d5a5..e39cf16e6d8f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthType.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/AuthType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequest.java index 38489cdbab33..3acf7c10d07e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequestOrBuilder.java index d1efb11252f7..5f55e01a6a33 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponse.java index 7c855aa6b3d4..a4edbb4d875e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponseOrBuilder.java index 64fe68b2ab4d..29568f948afd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectApiDataResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectServiceProto.java index a673e0b95b6f..0e7305e3bfba 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectionType.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectionType.java index 2fb146638303..5dcb37eb7f3b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectionType.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CollectionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CommonFieldsProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CommonFieldsProto.java index bde8f5266f27..8917a8806705 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CommonFieldsProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CommonFieldsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOption.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOption.java index 874eec083fa9..a2654ecfb7f0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOption.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOption.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOptionOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOptionOrBuilder.java index e114178f428f..76ad48e91827 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOptionOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigValueOptionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariable.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariable.java index 307b1428556e..acc21238b9e0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariable.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableOrBuilder.java index 4a50ab32eb5e..4d8a8c4d90fe 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplate.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplate.java index e1c5abf986d6..3d70620b737b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplate.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplateOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplateOrBuilder.java index 89cc12816d62..69fc371d0df5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplateOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ConfigVariableTemplateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequest.java index 2b9b3a11d9f0..abd0247c3aee 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequestOrBuilder.java index 6373e2939f5f..4733c50e232f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiHubInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequest.java index d2b4e45d4108..856622f4a83c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequestOrBuilder.java index d985f8f9deaf..fdcc6248fa5e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiOperationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequest.java index edbd89f9fe52..036a97675ad2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequestOrBuilder.java index 50df626dabc6..4d58053cbe88 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequest.java index f02b6e21a902..6a6243131968 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequestOrBuilder.java index 0066d2ab06bb..389c9af98693 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateAttributeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequest.java index e2bd7124f87a..e2b2d8a3e31f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequestOrBuilder.java index 287f144bde25..95ca874675c7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateCurationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequest.java index 25ba6ccc4a11..6a56acced5f5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequestOrBuilder.java index 4dc9522d6ab2..a8f2aa4698f2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDependencyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequest.java index 0553253d9306..1838cb9b8848 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequestOrBuilder.java index 47cb06511ddd..8791b5c1818a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequest.java index 6b943e1ffc2c..d5568b5a0379 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequestOrBuilder.java index bdbed6e301a4..2d1e1f2086cd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateExternalApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequest.java index 6f24fe1c1543..89af36a1eab1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequestOrBuilder.java index 988840fb02bf..977e10f9c620 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateHostProjectRegistrationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequest.java index c389c594432f..f55b14899b25 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequestOrBuilder.java index 61b76e7826a4..46d2784fce4d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequest.java index f14e7229acce..0e2d81f746b8 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequestOrBuilder.java index 6fc4ed3331a6..aee907ad9daa 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreatePluginRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequest.java index 5c9a30165dd1..bcc8fbca979a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequestOrBuilder.java index e39eee33d0c3..e5b0840390d5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateRuntimeProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequest.java index 8e4eda4b6cc8..a9b4aa853abc 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequestOrBuilder.java index 0cf8b88f02eb..2543bfb67860 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequest.java index f5f7d3845881..1ba43d6c2f62 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequestOrBuilder.java index e8b8d865d427..41b0f676f7bd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CreateVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurateServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurateServiceProto.java index 714d5f460d58..99091fd26a51 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurateServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurateServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Curation.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Curation.java index 458847cb69d8..bb1dc9973365 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Curation.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Curation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfig.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfig.java index 1be7de97a28e..deace69d8e49 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfig.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfigOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfigOrBuilder.java index 10d69390b97f..8ff68672d4b7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfigOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationName.java index 32910f5fc0a9..3357d703a24f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationOrBuilder.java index de0eca32b977..6a3cdcba0084 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationType.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationType.java index 89bce93c1887..cd3b628d893c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationType.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/CurationType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Definition.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Definition.java index 837326230fae..288358a06ce0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Definition.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Definition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionName.java index be14e15685d2..84317e8dbf9a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionOrBuilder.java index 241d4753c6f0..09943bc52110 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DefinitionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequest.java index 6702f8e1586c..9b762be99b83 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequestOrBuilder.java index c45d93db5404..8db3c9151348 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiHubInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequest.java index 5cf0f54417d2..7c0a64aac4cb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequestOrBuilder.java index 92f8940e9908..bce86f5e15ca 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiOperationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequest.java index b2586c8926e3..24db8ac6bc41 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequestOrBuilder.java index 7dd6c4d40858..6f20203069cb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequest.java index 414cd457d50d..2a19936017bd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequestOrBuilder.java index 17531951af9e..d7af57769d69 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteAttributeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequest.java index b616c4f80ad5..45c480b9dfbb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequestOrBuilder.java index 7adab49f3993..471517d6926b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteCurationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequest.java index c7133f98ba42..ae712179e97f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequestOrBuilder.java index dd7f664d893e..fcfd4d932b70 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDependencyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequest.java index 38351a00b217..6c496e2a849c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequestOrBuilder.java index c1cc234c7f94..b7016bda735f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequest.java index 83564b660db7..4dbed36923b7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequestOrBuilder.java index 150c854a0eaa..90ea3aea692c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteExternalApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequest.java index fd72cc62741a..b23644a33464 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequestOrBuilder.java index dc8e7419fc42..adf91bb8df29 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequest.java index 711c9dcf5eef..1daa0cd80ed8 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequestOrBuilder.java index 4995e4993d49..10a59d11cb58 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeletePluginRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequest.java index 1303c164bd44..e84e61598550 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequestOrBuilder.java index a35a4333b3ae..0fb4de71ca40 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteRuntimeProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequest.java index 02d65689c6c7..83c6544f6b57 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequestOrBuilder.java index cfcfa281b221..dba925cd651d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequest.java index 312504805c93..123ddcf710d2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequestOrBuilder.java index 5e973c0f734d..da66a3460310 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeleteVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Dependency.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Dependency.java index 00c0eb0f74f4..8b930f81b2dc 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Dependency.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Dependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReference.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReference.java index 9c8fe7a7c33b..4a749fa53ccc 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReference.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReferenceOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReferenceOrBuilder.java index 2a62315639fd..b49736344dd0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReferenceOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyEntityReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetail.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetail.java index 45fb040892f8..b00f0724bca5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetail.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetailOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetailOrBuilder.java index 8d2f91a43343..a5e34879cb79 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetailOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyErrorDetailOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyName.java index 132ed5a67608..4d4e14960680 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyOrBuilder.java index 62b5e932c255..9143f4d5b9e7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DependencyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Deployment.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Deployment.java index 26a71940bdc1..2aaee004f3e2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Deployment.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Deployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadata.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadata.java index 9b86ded77ea2..a1b42349aea0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadata.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadataOrBuilder.java index 7cb8fe7af0b0..8156511ccd08 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentName.java index ef82fc7fb495..683a2cdab802 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentOrBuilder.java index 6bd926e7748b..aad9fcd9d69e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DeploymentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequest.java index d2d37fe83139..94622ba8da35 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequestOrBuilder.java index 5571e855a38c..2b417b7027c0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponse.java index bb773d111a6c..d0e07b38332a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponseOrBuilder.java index f3d388362835..a34eeff4a5c3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginInstanceActionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequest.java index 9051cf23223e..f8744d2807c0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequestOrBuilder.java index 778ff7802157..7da3566e3ac0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DisablePluginRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservation.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservation.java index 243ce4452b36..fa8b9079920c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservation.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationName.java index 93c21af68e52..ff7154316db4 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationOrBuilder.java index 1df3e2f720f5..78eaf1e20ccb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiObservationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperation.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperation.java index 7a34da476a64..50168b5fae2c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperation.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationName.java index b4ac6c72b3da..db3a09915444 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationOrBuilder.java index 3835b332faa5..d24c8d6d87a5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveredApiOperationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveryServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveryServiceProto.java index 379604517394..9d632bdb6ba5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveryServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DiscoveryServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Documentation.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Documentation.java index b44b98322ab8..67bac478f9ad 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Documentation.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Documentation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DocumentationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DocumentationOrBuilder.java index 45c88ac0bbf2..d28c1bd86529 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DocumentationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/DocumentationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequest.java index 0a8463584298..21a5c5f3fa47 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequestOrBuilder.java index 381e1e78eec6..80a25f96456b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponse.java index ac9dd4da2dcf..9b5e705a5779 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponseOrBuilder.java index 80bc7c3d9260..3ae7599b7c40 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginInstanceActionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequest.java index 6d32083ac277..a12c0c70f72e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequestOrBuilder.java index 69dcba50a356..691ad2172b2a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EnablePluginRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Endpoint.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Endpoint.java index faae9df2156c..af73ef45fb09 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Endpoint.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Endpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EndpointOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EndpointOrBuilder.java index 3d957b77cd87..2d9503758677 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EndpointOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/EndpointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequest.java index bb33e8b8ca2c..e05797cd745c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequestOrBuilder.java index e795f2802012..25c76a5af1cd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponse.java index 5a5da12c43c8..2f01b179e571 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponseOrBuilder.java index 46165ef5a3ac..49476d05dd19 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutePluginInstanceActionResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatus.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatus.java index bbdf3cce0d15..45b339adb578 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatus.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatusOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatusOrBuilder.java index 364f3f7ae6fa..ac6e68252788 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatusOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExecutionStatusOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApi.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApi.java index 4b8ae2807963..02b1d314d6dc 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApi.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiName.java index 596f68aeb995..1c90bca48cf1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiOrBuilder.java index 03c033367102..cc86e18b3f2d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ExternalApiOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GatewayType.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GatewayType.java index 42bf80907f7f..9ee75523fc27 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GatewayType.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GatewayType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequest.java index db0cdaa98bec..12eba3339681 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequestOrBuilder.java index bf59fc8e28ce..ed25c69759cd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiHubInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequest.java index 1f6801556b0e..4550a120d140 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequestOrBuilder.java index 2a8d8233d266..e28a58223241 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiOperationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequest.java index af536dc73d70..46d6182a334d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequestOrBuilder.java index 0f681a30fa0c..1a08af6543da 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequest.java index 6a9f0b8fdd8c..1788db648097 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequestOrBuilder.java index e769dde5d72b..8eea87199a0e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetAttributeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequest.java index 20216848e8f1..f166e69985c6 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequestOrBuilder.java index 2441c0c46df6..ac44ea182ad4 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetCurationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequest.java index 7c211d8397db..14580b82531c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequestOrBuilder.java index 75046c577299..3017694f2317 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDefinitionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequest.java index 33b346ed8e79..d0d4e9e784f3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequestOrBuilder.java index 2f5b643fbf27..0f2eb3cbacdc 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDependencyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequest.java index 0308b5c983ff..5a0468763832 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequestOrBuilder.java index c343d3f46e66..e0ed05ca9858 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequest.java index 671fa3ff67b7..4a4541403265 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequestOrBuilder.java index a16af4d70a30..184e5d7af59a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiObservationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequest.java index 94278230508a..df4c7688a61f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequestOrBuilder.java index 24abbf3902c4..e1a753cd1304 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetDiscoveredApiOperationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequest.java index 7aed9ee94dd4..651809adce82 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequestOrBuilder.java index 14f4ebf9c1cb..7e8a375be00b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetExternalApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequest.java index 9694e2ee6456..db5aa09920a7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequestOrBuilder.java index cf945f07a016..7342de265ce6 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetHostProjectRegistrationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequest.java index bf40ce5d97fb..7750d9cc312e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequestOrBuilder.java index 09d50e2f3ab1..bedd0fbd2af3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequest.java index 12dfcde22b92..3ab417428011 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequestOrBuilder.java index bf20fd6a2df8..d14949d08fd0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetPluginRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequest.java index cbb57469b50c..d15f884a5629 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequestOrBuilder.java index 2d8986aadfea..6b1eda1e87e0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetRuntimeProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequest.java index 74650b83959a..ff847ba58c3c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequestOrBuilder.java index 3b07b03bf9ab..53432d4aed9e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecContentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequest.java index 80172c1dc39b..b2be5844cca1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequestOrBuilder.java index 7d3677627afc..8b393e329e40 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequest.java index d995420b9fd4..1ea273ac8837 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequestOrBuilder.java index 1804b76aec1b..b36bfb9fdb8e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideContentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequest.java index 9ca7f02a0c55..6a0cdabaa725 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequestOrBuilder.java index 55b1e186047c..645baf80c824 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetStyleGuideRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequest.java index e275a1c5854a..00f5abf6ef97 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequestOrBuilder.java index 94e6cdf2e61c..5074cf2b5e73 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfig.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfig.java index 69e2bffd1c4f..d94aff062d64 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfig.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfigOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfigOrBuilder.java index 1063d07ddf0b..fc0ad09bf168 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfigOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/GoogleServiceAccountConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistration.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistration.java index 538e8939d356..d343abf04dd3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistration.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationName.java index aa3ba271cbb5..3947928e7d79 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationOrBuilder.java index 97aadc4692d0..e86294fd53ff 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceProto.java index 28d4f2248a59..5d004f7e4052 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HostProjectRegistrationServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperation.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperation.java index b472260bf04d..b11dde006a24 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperation.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetails.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetails.java index 41a81ba1b5c4..a6216ddcea8e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetails.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetailsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetailsOrBuilder.java index 2b548f5c6187..fdc90c308096 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetailsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationOrBuilder.java index 69c4b92e76d0..af71a669ca9b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/HttpOperationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Issue.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Issue.java index be726a32f3b8..0cd88f9c992f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Issue.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Issue.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/IssueOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/IssueOrBuilder.java index 9d813c0d74f6..d0b3d5500608 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/IssueOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/IssueOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponse.java index b3ea4715eb83..b8c6d49bce68 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponseOrBuilder.java index 3634444edd60..587c5391931a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequest.java index 7a8b88b89eb3..f5cc09054589 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequestOrBuilder.java index 666213529429..7f171cff6032 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintState.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintState.java index 66c39036f957..a727f51029dd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintState.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Linter.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Linter.java index 88b17098dd5a..48d65772602c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Linter.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Linter.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintingServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintingServiceProto.java index d9caa120e201..3da63ed392c2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintingServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LintingServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequest.java index c9ac8be27299..0d2ecb3273d0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequestOrBuilder.java index 3267cd334679..d613d8a4b46c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponse.java index fc83631aa04e..9637e3286c93 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponseOrBuilder.java index a149bd54a2ed..4a146e310ca7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApiOperationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequest.java index eed888cbfa2f..5d131dee1ae4 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequestOrBuilder.java index 0f720f5d2d1a..469edd37b6e3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponse.java index ad2781c264ab..d46533579758 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponseOrBuilder.java index 0cbcb1eb2cac..e8adeedd07e3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListApisResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequest.java index 7b00a747ad4f..db716a55d774 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequestOrBuilder.java index e58208703f74..2fb138b20e9d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponse.java index 4eddd167a2b3..05d6b9041446 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponseOrBuilder.java index 704940214e97..9bd83d5a390c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListAttributesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequest.java index 3a8a57c74757..fa2be43ce0ef 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequestOrBuilder.java index 6572188f9db1..dffc03700cf8 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponse.java index edff2a909197..a44860cc7a15 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponseOrBuilder.java index 3f47a3db2dd0..03eef3b1156c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListCurationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequest.java index ec635a5e07a3..7b33c355095b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequestOrBuilder.java index 199dc7e3c92f..cac1d345bc83 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponse.java index f63f1bb43b0a..db4c3c491066 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponseOrBuilder.java index 25d9dc7df8b5..9ab5d37757c6 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDependenciesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequest.java index bfc271bea015..85fee5aeee0c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequestOrBuilder.java index e27a04e020c1..f53191e2d75f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponse.java index 4df1ff222d58..3fc54179bdeb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponseOrBuilder.java index 728a26f6bdda..c89f62243824 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDeploymentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequest.java index 1b3fc72f09ac..fd4da7cdca29 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequestOrBuilder.java index bc067982c0af..adeac42615f9 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponse.java index 161f057f12a5..f016c32de0c9 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponseOrBuilder.java index ba00577bd47f..11281231c002 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiObservationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequest.java index ef9ca2942119..0c303f19ad42 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequestOrBuilder.java index 903587660afa..76810005c064 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponse.java index 45907f607327..7f9cbd88c403 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponseOrBuilder.java index b1f5c6d58bbe..47be81b73913 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListDiscoveredApiOperationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequest.java index 568d72778989..6b2371a8d8a0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequestOrBuilder.java index e8d2d4a02ca0..93a41a6a9c18 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponse.java index 6bf7f11fc7b9..ac5dc28ee430 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponseOrBuilder.java index 9477a3b9dd2a..1597afe2e1cf 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListExternalApisResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequest.java index 058612eb2ad8..7eda6fb74d5a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequestOrBuilder.java index 8d13db834d39..171ceea57087 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponse.java index 86183c528881..8241c28bddb1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponseOrBuilder.java index c312c6db2b32..8d3706d03501 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListHostProjectRegistrationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequest.java index 971ec42508dc..e6135e2936e1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequestOrBuilder.java index 4c57eeac8e1f..79dd9c49865e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponse.java index 29caa71f641f..6c6b9d364ae6 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponseOrBuilder.java index 96297b77729a..2de2ddb6dd77 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequest.java index e5d64210d456..97ce17ea9ec0 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequestOrBuilder.java index fc6a58019834..2fbdcb3ff848 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponse.java index ba74d375ec03..a3e005d038c1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponseOrBuilder.java index 4e7a964763db..32b59861149d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListPluginsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequest.java index ee467ebf9e0c..e4fef587005f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequestOrBuilder.java index 15b8139e2eff..3c05f970db06 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponse.java index aec9086793ba..ad6a68740044 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponseOrBuilder.java index 0c7d32e63e5a..4fe4d39027c1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListRuntimeProjectAttachmentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequest.java index fbceb3ecaad6..17a8ddb00106 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequestOrBuilder.java index 42ae9eced185..d70c692aa2a3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponse.java index 758cf176e00e..19cd1af44867 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponseOrBuilder.java index 890e44b9a440..3f634a3d9776 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListSpecsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequest.java index d11688b6c8f6..c48b9ede0a1b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequestOrBuilder.java index 4c8257bab6f5..2e49b03f1f40 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponse.java index 3fefc3e8eb55..4793ee9a9698 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponseOrBuilder.java index 9f4a43a2cd5c..a7d344c5c9ec 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ListVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LocationName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LocationName.java index 2b3cf8dfcc58..e654e9eeada4 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LocationName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequest.java index e5a89c127822..65b8d766fc0e 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequestOrBuilder.java index b88d0d87ae99..1ddba7c64e44 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponse.java index d9d551fe232c..1faf56d11d02 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponseOrBuilder.java index 1746735dca1c..18dd600b0f5d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupApiHubInstanceResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequest.java index d71ed0897a7b..a8855b7f1256 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequestOrBuilder.java index 04bf2665be13..4298664d9910 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponse.java index 9187f87a3907..1645287da8b1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponseOrBuilder.java index 98ff658ba910..67aab7b30096 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/LookupRuntimeProjectAttachmentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetails.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetails.java index 92cadfbd36b1..2d71ecd112b1 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetails.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetailsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetailsOrBuilder.java index 0e393468f50e..705c610b3a0b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetailsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OpenApiSpecDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetails.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetails.java index 2192a0fe97e8..211a287d8493 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetails.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetailsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetailsOrBuilder.java index 38035aae5156..6b18999319ee 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetailsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadata.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadata.java index 410f1533580d..23048c3963a9 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadata.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadataOrBuilder.java index 8240d3cb961a..9bc6426497e3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Owner.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Owner.java index 7f4982716b84..f5c2844db669 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Owner.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Owner.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OwnerOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OwnerOrBuilder.java index 63385f0542a5..f99bd1879c97 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OwnerOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/OwnerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Path.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Path.java index 2124b2acd14e..7b1b175bb0ab 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Path.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Path.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PathOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PathOrBuilder.java index c3367113fdac..6b354f75fd0d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PathOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PathOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Plugin.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Plugin.java index a4b9c8700bcb..5136fb582225 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Plugin.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Plugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfig.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfig.java index 20942b72bea4..f13cb2c80a75 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfig.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfigOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfigOrBuilder.java index fd33881b38a6..2c29303db203 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfigOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginActionConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginCategory.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginCategory.java index 85c949300983..a426dfb77258 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginCategory.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginCategory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstance.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstance.java index 0eda0c6d0f80..0efb7d62de48 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstance.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceAction.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceAction.java index 8690c1250a6d..04bacfe7fdf3 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceAction.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceActionOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceActionOrBuilder.java index 5a748bb33102..cb335ac48b69 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceActionOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceActionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceName.java index 36411160718f..574d9ed62606 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceOrBuilder.java index 538a438594af..be06f4cebc83 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginInstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginName.java index 1538a99f9478..4b30e8c5297c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginOrBuilder.java index 04c48a645804..4b0655e5b904 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginServiceProto.java index ee6f124a888a..16bd387c2e23 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PluginServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Point.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Point.java index aff4b62ad9ac..d976e0224e1f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Point.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Point.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PointOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PointOrBuilder.java index c5a374f22353..b2c233ad8f05 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PointOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/PointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ProvisioningServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ProvisioningServiceProto.java index c92e33d7930b..c858ab665119 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ProvisioningServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/ProvisioningServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Range.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Range.java index bfab1ce89a2b..76e595729b2a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Range.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Range.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RangeOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RangeOrBuilder.java index 825e77f5cbbd..8ec8c217fc76 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RangeOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachment.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachment.java index 423339e1fe42..8cded3a60d05 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachment.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentName.java index 2cf3f9202e02..9edc0ccf3b80 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentOrBuilder.java index 0002297ac639..1fd20e3dbad9 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceProto.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceProto.java index 5ee3cf036e18..12d2bb0dc065 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceProto.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/RuntimeProjectAttachmentServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Schema.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Schema.java index a65b6a474b9d..41085e551356 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Schema.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Schema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SchemaOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SchemaOrBuilder.java index 90450d3b40b6..21faef4bfe57 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SchemaOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequest.java index dd0f6170416f..5b9e2b181139 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequestOrBuilder.java index 6736852995eb..818885a575af 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponse.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponse.java index 7eaa9457a54e..15c1bb8b849b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponse.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponseOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponseOrBuilder.java index ba793a00f0f6..33a4584ec8f2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponseOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResult.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResult.java index a94026fee4cf..108142449059 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResult.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResultOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResultOrBuilder.java index 4e45fd992cb7..2e3b5addcd17 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResultOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SearchResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Secret.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Secret.java index b3c388fcb59b..a08737987e7a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Secret.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Secret.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SecretOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SecretOrBuilder.java index 4be50038f587..b2f45a68e36a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SecretOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SecretOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Severity.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Severity.java index f3ceb9a9d286..48c3ab29d2a2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Severity.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Severity.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadata.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadata.java index d6313c310645..48d995362e14 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadata.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadataOrBuilder.java index 02adac6ff791..62ead583875c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SourceMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Spec.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Spec.java index 61c0c89633bf..f7858d309b00 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Spec.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Spec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContents.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContents.java index 500dba42f1ad..004c8183b19c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContents.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContentsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContentsOrBuilder.java index fd8ebf1cd789..e29ede90cb28 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContentsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecContentsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetails.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetails.java index 4399390a4ba3..76c0de2238f7 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetails.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetailsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetailsOrBuilder.java index d5ef306c53be..f875c2980031 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetailsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadata.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadata.java index de086d2c7ec4..649954ba2897 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadata.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadataOrBuilder.java index 47cfe178b0e0..039d64ccc2b5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecName.java index 38e35381e5b1..bad9576dad2b 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecOrBuilder.java index a45e3a227b2f..47febe4d8afa 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/SpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuide.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuide.java index 15a671902948..c80b70dd96dd 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuide.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContents.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContents.java index a800582497ca..b72c10de9e5a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContents.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContentsOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContentsOrBuilder.java index 40b4d56a5e0a..549384744fa5 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContentsOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideContentsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideName.java index 92ff9eeacf06..47978cc714c2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideOrBuilder.java index d410bdb7d1ed..15773d29f9de 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/StyleGuideOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequest.java index 8f9d4eba7977..eaa2c5521f4a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequestOrBuilder.java index 00162f5bb9d1..eacbc796e319 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiOperationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequest.java index ff3c06b68eb3..933f0fc5c4b6 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequestOrBuilder.java index 77e00a82d2eb..38405490c094 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequest.java index 08030146d3ec..0e6b77582a1a 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequestOrBuilder.java index d302431e7be7..0314ed6f3a06 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateAttributeRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequest.java index a9b4cdf23818..9c0e1ad2a111 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequestOrBuilder.java index 926427fd46fa..3a32e2fa81ff 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateCurationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequest.java index 4ab7b32b81da..75824097955d 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequestOrBuilder.java index ac08547298ce..37d64cc8ef56 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDependencyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequest.java index f7b9850a6283..e2ae538d6246 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequestOrBuilder.java index 00e71a0a2892..b41293c989c2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateDeploymentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequest.java index 70c41c8ba555..ba9f79558710 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequestOrBuilder.java index 1a521429745e..752e32d6b9d4 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateExternalApiRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequest.java index efc94258316b..14440d4e2f34 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequestOrBuilder.java index 91ce8c47aeec..052263999dba 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdatePluginInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequest.java index a569c155aeb0..0d0e17e8b508 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequestOrBuilder.java index 1575e803902a..3dd8f3509b1c 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequest.java index f39d68d908f6..72706be88e98 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequestOrBuilder.java index b4cf2cc8028b..6d78da0e8591 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateStyleGuideRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequest.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequest.java index 31ab194f324a..b21e01aaf767 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequest.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequestOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequestOrBuilder.java index 748ee5ac1ee6..72533fda8478 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequestOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/UpdateVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Version.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Version.java index 132e20c20801..2e6732012cb2 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Version.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/Version.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadata.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadata.java index 82199efbd09b..bac865ee40fb 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadata.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadataOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadataOrBuilder.java index 49fff2c06ea6..cccd7a6413c8 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadataOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionName.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionName.java index 0c8c7c83484f..efecb9275a8f 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionName.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionOrBuilder.java b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionOrBuilder.java index 7ef586cfbd4d..5592be974a05 100644 --- a/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionOrBuilder.java +++ b/java-apihub/proto-google-cloud-apihub-v1/src/main/java/com/google/cloud/apihub/v1/VersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetCredentialsProvider.java index ca57543d357a..b4c20d4402c2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetEndpoint.java index e913eccf3c84..591306d6a911 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/AsyncCreateApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/AsyncCreateApi.java index ea37e83b7789..488dc6b22f69 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/AsyncCreateApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/AsyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApi.java index fabb7d2f1783..a0917e52ca85 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiLocationnameApiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiLocationnameApiString.java index 914ec8164dca..ee09be7a1ce9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiLocationnameApiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiLocationnameApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiStringApiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiStringApiString.java index 451415a8bee3..b82a6f20e58a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiStringApiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapi/SyncCreateApiStringApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/AsyncCreateApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/AsyncCreateApiOperation.java index 557de53cf542..0400c8364fb9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/AsyncCreateApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/AsyncCreateApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperation.java index bd287b06a5c3..71f2b62558c2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationStringApioperationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationStringApioperationString.java index e7c948eea0cc..75b68c9ccc24 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationStringApioperationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationStringApioperationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationVersionnameApioperationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationVersionnameApioperationString.java index 23378f668d22..7c95cf59a998 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationVersionnameApioperationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createapioperation/SyncCreateApiOperationVersionnameApioperationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/AsyncCreateAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/AsyncCreateAttribute.java index f2d15c84edf5..365c7f9da080 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/AsyncCreateAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/AsyncCreateAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttribute.java index 756f3f28e90d..e87be9dfbb24 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeLocationnameAttributeString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeLocationnameAttributeString.java index 0583e0f4827e..5eb3ac3597a8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeLocationnameAttributeString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeLocationnameAttributeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeStringAttributeString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeStringAttributeString.java index a4bd2ee4adf1..9dcfd51fae3d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeStringAttributeString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createattribute/SyncCreateAttributeStringAttributeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/AsyncCreateDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/AsyncCreateDeployment.java index 2649ca3af42d..83029e2c2fb4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/AsyncCreateDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/AsyncCreateDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeployment.java index b334b7bcd12a..04c6f8931335 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentLocationnameDeploymentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentLocationnameDeploymentString.java index 1aab4531382c..9ffc03e62c5e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentLocationnameDeploymentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentLocationnameDeploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentStringDeploymentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentStringDeploymentString.java index 66314394c0d3..89498c09bdf2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentStringDeploymentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createdeployment/SyncCreateDeploymentStringDeploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/AsyncCreateExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/AsyncCreateExternalApi.java index 8b13955f3500..ab82766f9bad 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/AsyncCreateExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/AsyncCreateExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApi.java index 4081914cbd48..4f9465798c85 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiLocationnameExternalapiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiLocationnameExternalapiString.java index 10364d054bbc..8964f7b42e1f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiLocationnameExternalapiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiLocationnameExternalapiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiStringExternalapiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiStringExternalapiString.java index e2131e194b1a..08f86bee3df4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiStringExternalapiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createexternalapi/SyncCreateExternalApiStringExternalapiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/AsyncCreateSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/AsyncCreateSpec.java index a4b36d747f34..91974abe75a6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/AsyncCreateSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/AsyncCreateSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpec.java index 8785379b220c..b955b8bbf228 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecStringSpecString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecStringSpecString.java index 3f0b289735fc..1e027ada7c2c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecStringSpecString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecStringSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecVersionnameSpecString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecVersionnameSpecString.java index 1c5c61c7e5e4..267b22ae5970 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecVersionnameSpecString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createspec/SyncCreateSpecVersionnameSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/AsyncCreateVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/AsyncCreateVersion.java index 04fb796da84e..d2c7f83cca29 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/AsyncCreateVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/AsyncCreateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersion.java index 225e17513209..6241a71fe722 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionApinameVersionString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionApinameVersionString.java index 5c6ff3c521e4..16ed437ad1f9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionApinameVersionString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionApinameVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionStringVersionString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionStringVersionString.java index 370996c1ce1d..290ebb8b72ba 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionStringVersionString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/createversion/SyncCreateVersionStringVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/AsyncDeleteApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/AsyncDeleteApi.java index d856487dbc4a..1b47c2402a89 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/AsyncDeleteApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/AsyncDeleteApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApi.java index b2049df414b9..57da59cf8359 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiApiname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiApiname.java index 75a2b0b7ffda..e7148c3b92ed 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiApiname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiString.java index 69ab7e9f3e4d..743c885cc39e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapi/SyncDeleteApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/AsyncDeleteApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/AsyncDeleteApiOperation.java index 033b6a1c72cd..804ce426d007 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/AsyncDeleteApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/AsyncDeleteApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperation.java index 5c0881345a30..d2a1cd3af04f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationApioperationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationApioperationname.java index 69437dc86707..440886739752 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationApioperationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationApioperationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationString.java index f6cd6802870f..356050e2f341 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteapioperation/SyncDeleteApiOperationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/AsyncDeleteAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/AsyncDeleteAttribute.java index 0b4a58681364..428e1ee36d28 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/AsyncDeleteAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/AsyncDeleteAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttribute.java index 85424707b548..18794164778e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeAttributename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeAttributename.java index d586a792fa1c..ee0c22a4823b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeAttributename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeAttributename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeString.java index f4b98ac93355..b5dedfa20341 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteattribute/SyncDeleteAttributeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/AsyncDeleteDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/AsyncDeleteDeployment.java index 02ca347efcf0..eea3547e622c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/AsyncDeleteDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/AsyncDeleteDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeployment.java index 182f49414937..47e44d41f4b0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentDeploymentname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentDeploymentname.java index d486da3407c6..64fc8c45e543 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentDeploymentname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentDeploymentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentString.java index 7933cb72764a..fd8db3d8ad4c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletedeployment/SyncDeleteDeploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/AsyncDeleteExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/AsyncDeleteExternalApi.java index 539adc2ff96e..81f055f23e39 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/AsyncDeleteExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/AsyncDeleteExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApi.java index 6c8550fe97fa..c30081e57692 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiExternalapiname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiExternalapiname.java index 560b29487eed..5dde7d90e4c1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiExternalapiname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiExternalapiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiString.java index 2e2b3b19452f..672734dea9ac 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteexternalapi/SyncDeleteExternalApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/AsyncDeleteSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/AsyncDeleteSpec.java index 3a6f14e2e19a..ffe8cdaebd95 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/AsyncDeleteSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/AsyncDeleteSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpec.java index 7cbb4a80f11b..5a2f88dabce9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecSpecname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecSpecname.java index 12fe7165cd06..80cc4840bec4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecSpecname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecSpecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecString.java index cac8bcfc16f1..21e99a393a8a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deletespec/SyncDeleteSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/AsyncDeleteVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/AsyncDeleteVersion.java index cb7caabe80ca..474299e31e02 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/AsyncDeleteVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/AsyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersion.java index 43962bd9bf7a..51fe9b278bd9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionString.java index a5729ba40fc5..f75014ff5c42 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionVersionname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionVersionname.java index 77cf7d09d714..f2c0ef02f702 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionVersionname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/deleteversion/SyncDeleteVersionVersionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/AsyncGetApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/AsyncGetApi.java index d000c5ef8639..4698a150cd2f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/AsyncGetApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/AsyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApi.java index 8d88463068de..46d4960dccd8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiApiname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiApiname.java index 2507367341eb..ca56d2f8b42d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiApiname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiString.java index cd2b7694993c..4a4dc6834d82 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapi/SyncGetApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/AsyncGetApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/AsyncGetApiOperation.java index 7b4d8dbfebb2..9bbe8ae1961c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/AsyncGetApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/AsyncGetApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperation.java index 3c5e9408723b..a85b41efd2e1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationApioperationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationApioperationname.java index 99363a438daa..0acd8b81cd5b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationApioperationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationApioperationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationString.java index 9dd1f9cf3187..54b8033e2c86 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getapioperation/SyncGetApiOperationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/AsyncGetAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/AsyncGetAttribute.java index 2c5f9f957bdb..13c33afee6e5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/AsyncGetAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/AsyncGetAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttribute.java index cbacec06a556..24b0449ee285 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeAttributename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeAttributename.java index 842de2a76683..1e38785f1eec 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeAttributename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeAttributename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeString.java index 74e0eb2d9014..b8f323b78628 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getattribute/SyncGetAttributeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/AsyncGetDefinition.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/AsyncGetDefinition.java index 79fbd74ff226..a69ba8c491e1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/AsyncGetDefinition.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/AsyncGetDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinition.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinition.java index bcd29aef4aad..0201d4669200 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinition.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionDefinitionname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionDefinitionname.java index ff9336e7d92e..4b1e95f80bec 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionDefinitionname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionDefinitionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionString.java index df8013bcf2c2..0ac003ebdb1b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdefinition/SyncGetDefinitionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/AsyncGetDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/AsyncGetDeployment.java index 17a6d402c433..634a5659419c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/AsyncGetDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/AsyncGetDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeployment.java index 90b7c5b41412..382178b32711 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentDeploymentname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentDeploymentname.java index b391401e6b6d..a6662d3cc660 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentDeploymentname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentDeploymentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentString.java index e058f936bf0f..60d53d32ddee 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getdeployment/SyncGetDeploymentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/AsyncGetExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/AsyncGetExternalApi.java index 407a33901aa2..d0f5312fd8d7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/AsyncGetExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/AsyncGetExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApi.java index 4a2530f54f67..96a46bf9a1a1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiExternalapiname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiExternalapiname.java index ccfdc0e242df..2afd1db0e96f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiExternalapiname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiExternalapiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiString.java index c9d915363ee0..4ddbe076d124 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getexternalapi/SyncGetExternalApiString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/AsyncGetLocation.java index e2c9329e4219..a02e77dda5aa 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/SyncGetLocation.java index 6f3a29b3612e..b88476c18906 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/AsyncGetSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/AsyncGetSpec.java index bcde5a435f6c..6e867169c7b0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/AsyncGetSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/AsyncGetSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpec.java index 8f28124fded9..3a4e2276eb83 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecSpecname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecSpecname.java index 51720725d633..1d78ff5b210e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecSpecname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecSpecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecString.java index ce2eeceeba7d..bd4446f69d65 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspec/SyncGetSpecString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/AsyncGetSpecContents.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/AsyncGetSpecContents.java index de8e36049e91..9a36bde8dee0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/AsyncGetSpecContents.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/AsyncGetSpecContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContents.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContents.java index f7f22c9d4946..15370ff4a6a5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContents.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsSpecname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsSpecname.java index 678e61d69af1..8c2526ba59af 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsSpecname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsSpecname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsString.java index e33df6294d92..9b2ca9303f6e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getspeccontents/SyncGetSpecContentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/AsyncGetVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/AsyncGetVersion.java index b765d0ae90aa..583b32ca7dce 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/AsyncGetVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/AsyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersion.java index aebb49213183..c1b3d8df1d01 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionString.java index c405b51b809e..23c3e88ce195 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionVersionname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionVersionname.java index b4e0ed9d1c60..d423a25a3096 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionVersionname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/getversion/SyncGetVersionVersionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperations.java index 8183a5a4ef45..0df4f55ee684 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperationsPaged.java index c412c72154b3..9292faaf8016 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/AsyncListApiOperationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperations.java index f76a247dbe68..375ef18bde74 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsString.java index de0760a34b84..70170040273c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsVersionname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsVersionname.java index 18058e6b3c11..766ba3c0858f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsVersionname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapioperations/SyncListApiOperationsVersionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApis.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApis.java index 2a13923e5f7e..3e4bcab81839 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApis.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApisPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApisPaged.java index f9f67224648f..3015e52372fd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApisPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/AsyncListApisPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApis.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApis.java index 8ac813ef11d3..3f24b23c2288 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApis.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisLocationname.java index 79a44d0534c8..8c96f91c280e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisString.java index 488ec8316c8b..03f2ca098a03 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listapis/SyncListApisString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributes.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributes.java index 64cb24d2c359..536ea2e76373 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributes.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributesPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributesPaged.java index 3f61ed83b08e..2211e01e42c2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributesPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/AsyncListAttributesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributes.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributes.java index 0fe549dcc76e..31f9528969bb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributes.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesLocationname.java index dd587562d734..1fc6a7d4c572 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesString.java index 961f4619302d..d36a4c4dc82d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listattributes/SyncListAttributesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeployments.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeployments.java index 48b115bd1143..18a21e821d09 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeployments.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeployments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeploymentsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeploymentsPaged.java index f87013ba9d4f..b92602b1f1cb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeploymentsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/AsyncListDeploymentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeployments.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeployments.java index 4ddd12154020..6fc88ab5005f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeployments.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeployments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsLocationname.java index 1deb36e59417..7d787553e733 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsString.java index 536628fb183d..db5fb67f8b4d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listdeployments/SyncListDeploymentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApis.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApis.java index a9bd772ed2e6..b48449edc8a7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApis.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApisPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApisPaged.java index 07cdfd467206..8efbab42397b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApisPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/AsyncListExternalApisPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApis.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApis.java index 9e3744655763..01dbb721303e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApis.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisLocationname.java index d1499a3285a5..2251f576aa41 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisString.java index 7f045b3143f6..42e8576e38ee 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listexternalapis/SyncListExternalApisString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocations.java index 04a3e1ccd073..fc7d0226932d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocationsPaged.java index d3e2c703023b..afef19080054 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/SyncListLocations.java index b7adbbe8276e..b315cf478a3e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecs.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecs.java index ecb7452cf1e8..f7c6381b9dfd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecs.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecsPaged.java index 569fb5edfc86..3c4e7d606de6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/AsyncListSpecsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecs.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecs.java index 80d1a1bd8dc8..d99e9e68c8d7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecs.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecs.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsString.java index 87e71cc1ffdc..5b6228644484 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsVersionname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsVersionname.java index 60d7c53bb6ff..900fe94431bd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsVersionname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listspecs/SyncListSpecsVersionname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersions.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersions.java index e44f9cede1eb..7e5229ee9d2c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersions.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersionsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersionsPaged.java index 82936cfd3b79..45ca6df60e23 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersionsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/AsyncListVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersions.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersions.java index e2a4ffe544c9..950a514bbdee 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersions.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsApiname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsApiname.java index dddd5a41967d..745a31371625 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsApiname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsApiname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsString.java index f7c2aea9b980..d23161d71f8f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/listversions/SyncListVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResources.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResources.java index 893a3fb22906..49d9bd860f5f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResources.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResourcesPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResourcesPaged.java index 465899386652..97d41e466a1f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResourcesPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/AsyncSearchResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResources.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResources.java index 2975cf63e77d..1e38a23fb5ec 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResources.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesLocationnameString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesLocationnameString.java index 413bb08003bf..02b2cbaecd90 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesLocationnameString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesStringString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesStringString.java index 3b7740b14b90..8cc792f15693 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesStringString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/searchresources/SyncSearchResourcesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/AsyncUpdateApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/AsyncUpdateApi.java index 36ccc67edd33..20770e416d8e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/AsyncUpdateApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/AsyncUpdateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApi.java index 515bd2214cb0..0c36a95a4841 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApiApiFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApiApiFieldmask.java index c22b34656619..b0aaffa4cd90 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApiApiFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapi/SyncUpdateApiApiFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/AsyncUpdateApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/AsyncUpdateApiOperation.java index cfd46c3a1426..85b2c48cc994 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/AsyncUpdateApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/AsyncUpdateApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperation.java index 83f16479adcb..2dd6795c7cd6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperationApioperationFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperationApioperationFieldmask.java index 61e317cce87d..62a15e6f3859 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperationApioperationFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateapioperation/SyncUpdateApiOperationApioperationFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/AsyncUpdateAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/AsyncUpdateAttribute.java index f609a83c34d2..9b871ffb5e40 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/AsyncUpdateAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/AsyncUpdateAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttribute.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttribute.java index 5496deb7c6b7..dfe0f85fbe7d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttribute.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttributeAttributeFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttributeAttributeFieldmask.java index 990961a81eae..2b9ba8d5e66d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttributeAttributeFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateattribute/SyncUpdateAttributeAttributeFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/AsyncUpdateDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/AsyncUpdateDeployment.java index 18bc2f21baa6..fb5936bf7c25 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/AsyncUpdateDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/AsyncUpdateDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeployment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeployment.java index 21d036316078..0d25db9d1feb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeployment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeploymentDeploymentFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeploymentDeploymentFieldmask.java index e35c8214598e..14824b1db891 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeploymentDeploymentFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatedeployment/SyncUpdateDeploymentDeploymentFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/AsyncUpdateExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/AsyncUpdateExternalApi.java index 14f849f9e748..4eeb7302b11d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/AsyncUpdateExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/AsyncUpdateExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApi.java index 24d50f7d328c..fc8cbbd04810 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApiExternalapiFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApiExternalapiFieldmask.java index 4fad62d098f4..2c2254eb7c69 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApiExternalapiFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateexternalapi/SyncUpdateExternalApiExternalapiFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/AsyncUpdateSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/AsyncUpdateSpec.java index a58929ca71b1..c8fc65a2e6ec 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/AsyncUpdateSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/AsyncUpdateSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpec.java index 69dfd75d329b..d59cd431886e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpecSpecFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpecSpecFieldmask.java index 84530d5cc2a7..36ef3db9afe0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpecSpecFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updatespec/SyncUpdateSpecSpecFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/AsyncUpdateVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/AsyncUpdateVersion.java index 034761c8f4f6..3ff82f2df40e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/AsyncUpdateVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/AsyncUpdateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersion.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersion.java index e5d63c4f2b78..37bd0790b6da 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersion.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersionVersionFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersionVersionFieldmask.java index 1113fd10d889..2b4aa2845d3e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersionVersionFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihub/updateversion/SyncUpdateVersionVersionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiData.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiData.java index 5f8251f8a1e8..936caa96287a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiData.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiDataLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiDataLRO.java index 5c7ae57a0ed8..6b32b41a381a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiDataLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/AsyncCollectApiDataLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiData.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiData.java index f98853ef9472..3f885653d849 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiData.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataLocationnameCollectiontypeApidata.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataLocationnameCollectiontypeApidata.java index 81c80c980594..7fa688fa7d47 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataLocationnameCollectiontypeApidata.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataLocationnameCollectiontypeApidata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataStringCollectiontypeApidata.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataStringCollectiontypeApidata.java index cba03dba393e..45b5f9d0382f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataStringCollectiontypeApidata.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/collectapidata/SyncCollectApiDataStringCollectiontypeApidata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetCredentialsProvider.java index db0fb153723c..b4d0826c739b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetEndpoint.java index 61ad2af5a5f4..8cda72a8cab4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/AsyncGetLocation.java index 269e0faeda8a..f60a83a061ce 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/SyncGetLocation.java index b824d506f5a9..2a0879038690 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocations.java index ebacbe2097fc..23c44917394d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocationsPaged.java index 0d236617a805..19800d1fead5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/SyncListLocations.java index 93bf0c713476..f69e3306ceea 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollect/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/collectapidata/SyncCollectApiData.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/collectapidata/SyncCollectApiData.java index d73a2b8a543f..cfbb16bbf0bb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/collectapidata/SyncCollectApiData.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/collectapidata/SyncCollectApiData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/getlocation/SyncGetLocation.java index 9f105eff2e3c..e9000ae333fc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcollectsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetCredentialsProvider.java index 92532547ae76..cee9322e35e4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetEndpoint.java index 7b29deb23473..e80e13672f24 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/AsyncCreateCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/AsyncCreateCuration.java index 551992fb2fae..a16bed719b56 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/AsyncCreateCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/AsyncCreateCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCuration.java index 36e88cae8911..ad708d34f81c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationLocationnameCurationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationLocationnameCurationString.java index c983b9ee89ad..12855710d1ee 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationLocationnameCurationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationLocationnameCurationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationStringCurationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationStringCurationString.java index 28261b007998..f39bdd93cdfd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationStringCurationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/createcuration/SyncCreateCurationStringCurationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/AsyncDeleteCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/AsyncDeleteCuration.java index ad4950e7653e..f33462c1b178 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/AsyncDeleteCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/AsyncDeleteCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCuration.java index 6a5aaea569e6..e281104e266d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationCurationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationCurationname.java index 18e4620a6b5e..0776a11c6c2c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationCurationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationCurationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationString.java index e6520798e0af..389a360ce7a3 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/deletecuration/SyncDeleteCurationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/AsyncGetCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/AsyncGetCuration.java index 7e4234ed3a32..07a7dc826a40 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/AsyncGetCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/AsyncGetCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCuration.java index 3315f1326477..b32bd934e36f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationCurationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationCurationname.java index d4be03c5ab87..b7049a19fb61 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationCurationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationCurationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationString.java index 9adf01d5cc9d..bb8bf2d2360d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getcuration/SyncGetCurationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/AsyncGetLocation.java index 47adc22467d8..f754dd0f2bdb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/SyncGetLocation.java index 10ecd5b28e97..a0ae6b3c8bbc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurations.java index 2e245b25a09b..a7b6979c66a5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurationsPaged.java index 37e1727ec823..c6962f4e5b59 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/AsyncListCurationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurations.java index ab327531c7b3..df3a1003f209 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsLocationname.java index 7b910b37054b..78fc746dee2c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsString.java index 7612354753cb..a64a48eda711 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listcurations/SyncListCurationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocations.java index 3f697044a623..5534580a53e2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocationsPaged.java index a7048fdfe592..28bcee8aaf2c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/SyncListLocations.java index edbed98b97d7..465c2611b7cb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/AsyncUpdateCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/AsyncUpdateCuration.java index ed918bfba4ec..58a787a866d6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/AsyncUpdateCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/AsyncUpdateCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCuration.java index fe13b60aea87..6091d2262fda 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCurationCurationFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCurationCurationFieldmask.java index dca4b0eeebd0..d9e3144653d5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCurationCurationFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcurate/updatecuration/SyncUpdateCurationCurationFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcuratesettings/createcuration/SyncCreateCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcuratesettings/createcuration/SyncCreateCuration.java index 2c49a4ac5fb1..c0cb0de18eb7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcuratesettings/createcuration/SyncCreateCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubcuratesettings/createcuration/SyncCreateCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetCredentialsProvider.java index 904ddd511475..4f477a89cd28 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetEndpoint.java index d8dfc96e731a..e839dbe3ed8f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/AsyncCreateDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/AsyncCreateDependency.java index e312eefd488c..6d1efeede543 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/AsyncCreateDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/AsyncCreateDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependency.java index 195b8feefb87..7d27e2e1ad64 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyLocationnameDependencyString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyLocationnameDependencyString.java index e564209085d9..005b56825358 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyLocationnameDependencyString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyLocationnameDependencyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyStringDependencyString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyStringDependencyString.java index 71a4e56e4a51..682141b17d2a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyStringDependencyString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/createdependency/SyncCreateDependencyStringDependencyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/AsyncDeleteDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/AsyncDeleteDependency.java index 2bebb6b833c9..db6e46bca2a0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/AsyncDeleteDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/AsyncDeleteDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependency.java index 5450d6656805..3695c0b42c37 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyDependencyname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyDependencyname.java index aa953c8ba497..ffdeb612f3d7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyDependencyname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyDependencyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyString.java index 6dff3bb72d5b..ebc1f35175e6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/deletedependency/SyncDeleteDependencyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/AsyncGetDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/AsyncGetDependency.java index d03f5404d251..17e136ed2a39 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/AsyncGetDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/AsyncGetDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependency.java index 21e9276cd3cf..b2792a049e80 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyDependencyname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyDependencyname.java index 9115a84024f6..ee9c3db231f7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyDependencyname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyDependencyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyString.java index bfa7cf5685f8..c67e52a84f9e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getdependency/SyncGetDependencyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/AsyncGetLocation.java index b1924937b885..75ec5d7fcefa 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/SyncGetLocation.java index 8f033e715e01..2dd237b01f25 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependencies.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependencies.java index 1962f62205be..b00c8e0223a7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependencies.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependencies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependenciesPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependenciesPaged.java index 676ec4666abd..b286c7aecb94 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependenciesPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/AsyncListDependenciesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependencies.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependencies.java index c05e374b441a..62e26016e49d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependencies.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependencies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesLocationname.java index ee027483f9be..778034f40f68 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesString.java index 1e5041d7e5af..2151656a1c03 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listdependencies/SyncListDependenciesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocations.java index 29d61bc0a16c..0002ade56af3 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocationsPaged.java index e0e831e0a3da..d5a124f6b7cb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/SyncListLocations.java index 6ae20b162bf0..20ac84a73f5a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/AsyncUpdateDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/AsyncUpdateDependency.java index 5eb89b8e15ff..335b35118d1a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/AsyncUpdateDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/AsyncUpdateDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependency.java index b01216757286..f0a3391e20eb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependencyDependencyFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependencyDependencyFieldmask.java index 31de3b99bab6..657724ce551e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependencyDependencyFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependencies/updatedependency/SyncUpdateDependencyDependencyFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependenciessettings/createdependency/SyncCreateDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependenciessettings/createdependency/SyncCreateDependency.java index f39a1a2be420..02212330fc2d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependenciessettings/createdependency/SyncCreateDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdependenciessettings/createdependency/SyncCreateDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetCredentialsProvider.java index 89e68a1517d2..de48abcba7a4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetEndpoint.java index 5cb1188dd7be..0615ed8b98ab 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/AsyncGetDiscoveredApiObservation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/AsyncGetDiscoveredApiObservation.java index 27351ed5cc00..bf62dc984a16 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/AsyncGetDiscoveredApiObservation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/AsyncGetDiscoveredApiObservation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java index 6a86d2f0b22a..81d9c3349652 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationDiscoveredapiobservationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationDiscoveredapiobservationname.java index 7502390fa3ce..bd4a91215f26 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationDiscoveredapiobservationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationDiscoveredapiobservationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationString.java index 4746f0d68551..cb7f08462de9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapiobservation/SyncGetDiscoveredApiObservationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/AsyncGetDiscoveredApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/AsyncGetDiscoveredApiOperation.java index 3b4009fa8315..bbe18dc4d553 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/AsyncGetDiscoveredApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/AsyncGetDiscoveredApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperation.java index 81ac2c055165..c3d9845f5583 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationDiscoveredapioperationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationDiscoveredapioperationname.java index 0c7f1b0f07c4..c936ab9dc5e7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationDiscoveredapioperationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationDiscoveredapioperationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationString.java index dbe9a70a8855..a374a19803f4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getdiscoveredapioperation/SyncGetDiscoveredApiOperationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/AsyncGetLocation.java index 8e6969d17c21..bf38f30836ca 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/SyncGetLocation.java index ab2191ea21f2..4a27f760e72a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservations.java index 0d4f78c9991e..8fd4aec7afce 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservationsPaged.java index 3cac5e5c942b..26aee98c2482 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/AsyncListDiscoveredApiObservationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservations.java index 069e41a2d0df..b0c594d075aa 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsLocationname.java index 44c068badfa4..017055313720 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsString.java index e0ff2e602749..671768922fdc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapiobservations/SyncListDiscoveredApiObservationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperations.java index 3720a60f1de0..6b6b6a3c805c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperationsPaged.java index 014b5ed77d6a..29ecdca41ca3 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/AsyncListDiscoveredApiOperationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperations.java index 3ccd165aa79c..fa0a1de7d18b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsDiscoveredapiobservationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsDiscoveredapiobservationname.java index 76f0cf826744..673ab4e945fa 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsDiscoveredapiobservationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsDiscoveredapiobservationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsString.java index 7a69b5676080..969fe89deb27 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listdiscoveredapioperations/SyncListDiscoveredApiOperationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocations.java index 1703b73546bc..564d87114ede 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocationsPaged.java index 8b9a1078674c..aa0a0d2ef359 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/SyncListLocations.java index 80c5ff308ade..fa37059d8a3d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscovery/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscoverysettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscoverysettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java index 3f00cec7432a..09953058b987 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscoverysettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubdiscoverysettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetCredentialsProvider.java index a1caf849529d..04529f2cb37f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetEndpoint.java index 0d77e43b6899..1924f55ff016 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/AsyncCreatePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/AsyncCreatePlugin.java index 6e56cdfd3885..5ae24e04834c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/AsyncCreatePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/AsyncCreatePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePlugin.java index cd6f2e0997be..8be2e5e37b40 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginLocationnamePluginString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginLocationnamePluginString.java index 350012e6691b..dfdb918237ba 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginLocationnamePluginString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginLocationnamePluginString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginStringPluginString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginStringPluginString.java index 35ef96e3e691..908e291e95a8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginStringPluginString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugin/SyncCreatePluginStringPluginString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstance.java index 2c801d2de2d1..4e2993b9821d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstanceLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstanceLRO.java index 158791b52930..7dd5a25d2ef7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstanceLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/AsyncCreatePluginInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstance.java index f94248130632..c2e4b94176bd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstancePluginnamePlugininstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstancePluginnamePlugininstanceString.java index 550316803850..b2670fc4542f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstancePluginnamePlugininstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstancePluginnamePlugininstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstanceStringPlugininstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstanceStringPlugininstanceString.java index daf4d0a15baf..5b8d420d446c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstanceStringPlugininstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/createplugininstance/SyncCreatePluginInstanceStringPlugininstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePlugin.java index c0ce3468cd8b..ec1d41f2642f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePluginLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePluginLRO.java index 292fb038e28f..ea51721f9656 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePluginLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/AsyncDeletePluginLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePlugin.java index cf975843be49..2817df9abb51 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginPluginname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginPluginname.java index 506e69ea3720..7ff82b0932c7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginPluginname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginPluginname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginString.java index bbe3e2bd6d91..785855ed9828 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugin/SyncDeletePluginString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstance.java index 71f81d913cdd..16a89013e065 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstanceLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstanceLRO.java index 36f580167102..7efedb1672fa 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstanceLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/AsyncDeletePluginInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstance.java index ed08cab11d50..9620513e276b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstancePlugininstancename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstancePlugininstancename.java index 00ec7d37f593..9461243487bf 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstancePlugininstancename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstancePlugininstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstanceString.java index 65691f15149f..853ad5f5630f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/deleteplugininstance/SyncDeletePluginInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/AsyncDisablePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/AsyncDisablePlugin.java index f09511de5324..995e1addc8c9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/AsyncDisablePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/AsyncDisablePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePlugin.java index a3127a7cdbe8..da1704639ac9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginPluginname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginPluginname.java index 8ba1fb2cace3..896d40040096 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginPluginname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginPluginname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginString.java index 433f88746f88..f5a9b2367805 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugin/SyncDisablePluginString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceAction.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceAction.java index cf42613ff914..e81a30949d2f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceAction.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceActionLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceActionLRO.java index f64a9c08f641..83d3f9afd8b1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceActionLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/AsyncDisablePluginInstanceActionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceAction.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceAction.java index 36fc157cd917..7625b68dfd59 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceAction.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionPlugininstancenameString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionPlugininstancenameString.java index 908060a5af07..0441b19e7a5c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionPlugininstancenameString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionPlugininstancenameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionStringString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionStringString.java index 1c3680c8e0d0..7e963283feaf 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionStringString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/disableplugininstanceaction/SyncDisablePluginInstanceActionStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/AsyncEnablePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/AsyncEnablePlugin.java index 2b913725da10..e38cef4619bb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/AsyncEnablePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/AsyncEnablePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePlugin.java index a639ae7995af..55bd1924bd87 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginPluginname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginPluginname.java index e38f1d0759e6..b7a0db54a8f4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginPluginname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginPluginname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginString.java index 220619c52b9e..4605e48a5d92 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugin/SyncEnablePluginString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceAction.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceAction.java index 4cab08dfde2f..b88743f80a64 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceAction.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceActionLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceActionLRO.java index e214c60eaa74..bece0159d063 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceActionLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/AsyncEnablePluginInstanceActionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceAction.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceAction.java index f42908f5b073..5e84b7416884 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceAction.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionPlugininstancenameString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionPlugininstancenameString.java index 69ca9a9c6a45..71f84a5b857c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionPlugininstancenameString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionPlugininstancenameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionStringString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionStringString.java index ee7c16dac68c..4f11c953a9ce 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionStringString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/enableplugininstanceaction/SyncEnablePluginInstanceActionStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceAction.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceAction.java index a2191306860f..25cad4e473cd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceAction.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceActionLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceActionLRO.java index 30c1b8eb1644..4b368d46e348 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceActionLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/AsyncExecutePluginInstanceActionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceAction.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceAction.java index 5e82f29bae6d..d0a93e4ba2cf 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceAction.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionPlugininstancenameActionexecutiondetail.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionPlugininstancenameActionexecutiondetail.java index 5c5c3da4a376..ee448939ef6c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionPlugininstancenameActionexecutiondetail.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionPlugininstancenameActionexecutiondetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionStringActionexecutiondetail.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionStringActionexecutiondetail.java index 6c6c4adba496..6dd783c6bd49 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionStringActionexecutiondetail.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/executeplugininstanceaction/SyncExecutePluginInstanceActionStringActionexecutiondetail.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/AsyncGetLocation.java index ad041ad95d5e..cd45f6d8944c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/SyncGetLocation.java index f0e6ebf5a426..e9b8d4d68cd5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/AsyncGetPlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/AsyncGetPlugin.java index 7398f9a003fc..f77d6fae59a9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/AsyncGetPlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/AsyncGetPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPlugin.java index 1347cb775dea..2a9dafb4c46f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginPluginname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginPluginname.java index 542a12639059..158c57a0d371 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginPluginname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginPluginname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginString.java index 4935951f8746..a3d639b585e4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugin/SyncGetPluginString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/AsyncGetPluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/AsyncGetPluginInstance.java index 534096481a17..1978b2b0057f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/AsyncGetPluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/AsyncGetPluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstance.java index fbfb11c537d8..a8fa3dd53af7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstancePlugininstancename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstancePlugininstancename.java index 4d344a701b29..92e575f269b5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstancePlugininstancename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstancePlugininstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstanceString.java index d8d74a73e7df..63700cfc6984 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/getplugininstance/SyncGetPluginInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocations.java index 33f17479a629..521e71833680 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocationsPaged.java index 3fc64c2f0632..306ff7b15590 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/SyncListLocations.java index 53c4c59ba41a..21ff69cdca76 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstances.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstances.java index 934d4e9931c0..153e8db32bd8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstances.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstancesPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstancesPaged.java index 4f44b8e21452..fbfe194213dd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstancesPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/AsyncListPluginInstancesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstances.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstances.java index 36ad94feb8ae..6e2f30c008be 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstances.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesPluginname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesPluginname.java index 2b1317ed718a..e0a7b44e5529 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesPluginname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesPluginname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesString.java index 625b61e0cf4d..0449329c2f52 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugininstances/SyncListPluginInstancesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPlugins.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPlugins.java index b25a4c70af08..e2bc54ea75d0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPlugins.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPlugins.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPluginsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPluginsPaged.java index b25b53c7ab7e..5d893b12ff24 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPluginsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/AsyncListPluginsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPlugins.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPlugins.java index f8a09bf70c5e..20a0d7fb22b5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPlugins.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPlugins.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsLocationname.java index 08ea3c91d9da..cfb34ff92435 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsString.java index 56dd9e9f2439..81624c1bed7a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/listplugins/SyncListPluginsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/AsyncUpdatePluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/AsyncUpdatePluginInstance.java index 2df49753f11a..206990879de6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/AsyncUpdatePluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/AsyncUpdatePluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstance.java index 9a4ead1cc843..34d41116c267 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstancePlugininstanceFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstancePlugininstanceFieldmask.java index 1db9066bc613..4fd0d0ca417c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstancePlugininstanceFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubplugin/updateplugininstance/SyncUpdatePluginInstancePlugininstanceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/deleteplugin/SyncDeletePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/deleteplugin/SyncDeletePlugin.java index f2c262f1360d..cb94675625da 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/deleteplugin/SyncDeletePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/deleteplugin/SyncDeletePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/getplugin/SyncGetPlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/getplugin/SyncGetPlugin.java index 03bd8cd0a5e6..8a9fac9d64a6 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/getplugin/SyncGetPlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubpluginsettings/getplugin/SyncGetPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubsettings/createapi/SyncCreateApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubsettings/createapi/SyncCreateApi.java index 2892868f1b24..eea4d8414889 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubsettings/createapi/SyncCreateApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/apihubsettings/createapi/SyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetCredentialsProvider.java index f80f9b84ec3d..1ef80511dda4 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetEndpoint.java index 7e031834c466..75ca7b4d1c51 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/AsyncCreateHostProjectRegistration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/AsyncCreateHostProjectRegistration.java index 6fb8617e29c5..f4a0bce4b14f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/AsyncCreateHostProjectRegistration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/AsyncCreateHostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistration.java index a29acb2d4483..c38930f15220 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationLocationnameHostprojectregistrationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationLocationnameHostprojectregistrationString.java index 7c4ba174337a..5999345f84fc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationLocationnameHostprojectregistrationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationLocationnameHostprojectregistrationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationStringHostprojectregistrationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationStringHostprojectregistrationString.java index 9015dc01f413..8fcc484a75bd 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationStringHostprojectregistrationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/createhostprojectregistration/SyncCreateHostProjectRegistrationStringHostprojectregistrationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/AsyncGetHostProjectRegistration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/AsyncGetHostProjectRegistration.java index c5f66a1d51b6..33d5e032f431 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/AsyncGetHostProjectRegistration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/AsyncGetHostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistration.java index 165cd722c065..a4ce46985f88 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationHostprojectregistrationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationHostprojectregistrationname.java index ff47278abc8d..6fda808216bf 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationHostprojectregistrationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationHostprojectregistrationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationString.java index 6af654a15ca0..bd958f34b9e1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/gethostprojectregistration/SyncGetHostProjectRegistrationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/AsyncGetLocation.java index 9a536e45c4ec..48b7bf4af48c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/SyncGetLocation.java index 9c1ac3220f0c..5b61302b1a87 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrations.java index acc6ede8c0cd..211bbeb5619b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrationsPaged.java index d5c15949d151..dcdcd9284989 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/AsyncListHostProjectRegistrationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrations.java index 49289085e4cd..dea227f814ea 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsLocationname.java index b6cef4048de3..947e2f82c117 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsString.java index a9d34fd84e80..ea3a459fd43b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listhostprojectregistrations/SyncListHostProjectRegistrationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocations.java index cb17edd601c7..cf2c413a0747 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocationsPaged.java index f6da1e8433f7..de02d0c51432 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/SyncListLocations.java index 9bc731d4af13..cf9392c7e6ef 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservicesettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservicesettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java index ea6da5fbae39..b7305cb1f864 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservicesettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/hostprojectregistrationservicesettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetCredentialsProvider.java index a79df3921f1c..a1cc41fe167e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetEndpoint.java index c94f3aa0bf4c..90ebd30f49c2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/AsyncGetLocation.java index 9fc20f3725a2..ac6d063bbcc0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/SyncGetLocation.java index 8d0bdf170507..cb8aa63dd119 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/AsyncGetStyleGuide.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/AsyncGetStyleGuide.java index 6eb6b0ff7e45..9a328a148fad 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/AsyncGetStyleGuide.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/AsyncGetStyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuide.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuide.java index 6b52a1eb02e6..705d66bf784d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuide.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideString.java index 702a3275e456..106f1a9ef582 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideStyleguidename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideStyleguidename.java index d76ee786f1e2..8d63a1e096b3 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideStyleguidename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguide/SyncGetStyleGuideStyleguidename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/AsyncGetStyleGuideContents.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/AsyncGetStyleGuideContents.java index 1a8a00311aba..3681b2619be8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/AsyncGetStyleGuideContents.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/AsyncGetStyleGuideContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContents.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContents.java index a950b036311b..f924180d2942 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContents.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContents.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsString.java index 3db3e982f229..206ee7fccdda 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsStyleguidename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsStyleguidename.java index e2d461e8308a..9e3ad8ddd4ff 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsStyleguidename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/getstyleguidecontents/SyncGetStyleGuideContentsStyleguidename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/AsyncLintSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/AsyncLintSpec.java index eca434aef1b7..4c007be797ac 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/AsyncLintSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/AsyncLintSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/SyncLintSpec.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/SyncLintSpec.java index 4144ea8dec86..1bf1ee340d7f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/SyncLintSpec.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/lintspec/SyncLintSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocations.java index 58700210d1ca..03332619a128 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocationsPaged.java index e8b700e97315..7215ef6ed089 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/SyncListLocations.java index bc5d712212b0..fd45088c6ae1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/AsyncUpdateStyleGuide.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/AsyncUpdateStyleGuide.java index 4fcf0a6f8e54..9a70cf5e0a3e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/AsyncUpdateStyleGuide.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/AsyncUpdateStyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuide.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuide.java index cb2d9093043a..52816e128cfe 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuide.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuideStyleguideFieldmask.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuideStyleguideFieldmask.java index 14c3340beb51..8d6bdffc5846 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuideStyleguideFieldmask.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservice/updatestyleguide/SyncUpdateStyleGuideStyleguideFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservicesettings/getstyleguide/SyncGetStyleGuide.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservicesettings/getstyleguide/SyncGetStyleGuide.java index 0d24350ef453..70106bb49fdc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservicesettings/getstyleguide/SyncGetStyleGuide.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/lintingservicesettings/getstyleguide/SyncGetStyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetCredentialsProvider.java index f18bdb00513a..6a5024d06464 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetEndpoint.java index d12266504d72..9a594b2b1f36 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstance.java index 0bd70f4e3972..2b2b10ec8451 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstanceLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstanceLRO.java index 0a4b9dbbfadb..dae1b596fa1f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstanceLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/AsyncCreateApiHubInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstance.java index adcf0f99f056..30d072dd7748 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceLocationnameApihubinstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceLocationnameApihubinstanceString.java index c3e0af6091ec..4f4eca9d1c44 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceLocationnameApihubinstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceLocationnameApihubinstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceStringApihubinstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceStringApihubinstanceString.java index 3979cdbfafaf..004b1e3525a8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceStringApihubinstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/createapihubinstance/SyncCreateApiHubInstanceStringApihubinstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstance.java index 6101c45b4c5b..1fe86263c93c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstanceLRO.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstanceLRO.java index bcce6b10b3ef..39516561ac9d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstanceLRO.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/AsyncDeleteApiHubInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstance.java index 1ac83cb4d088..0cf539873996 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceApihubinstancename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceApihubinstancename.java index f29317e58b28..879c5ce44ad8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceApihubinstancename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceApihubinstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceString.java index 373b3a23d233..b7b1bff351f2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/deleteapihubinstance/SyncDeleteApiHubInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/AsyncGetApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/AsyncGetApiHubInstance.java index 0d430df4ca4c..9fac072880be 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/AsyncGetApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/AsyncGetApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstance.java index 8d2a3174590f..7649ea9fb7ff 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceApihubinstancename.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceApihubinstancename.java index f56a525713ab..b99aaf1b1924 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceApihubinstancename.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceApihubinstancename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceString.java index 6b152112dd32..76e1f8eca6ef 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getapihubinstance/SyncGetApiHubInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/AsyncGetLocation.java index 64a2724e3195..43cc6c4ed141 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/SyncGetLocation.java index 8ef8d0b6d62d..822cdf5dcf34 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocations.java index c708fcd1a561..397cbba2d553 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocationsPaged.java index bda1cef96a5e..2cda785d7ef7 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/SyncListLocations.java index 2011bca115c8..86f708763d78 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/AsyncLookupApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/AsyncLookupApiHubInstance.java index 96508f9183f1..e8628bf785a2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/AsyncLookupApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/AsyncLookupApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstance.java index 5bb25e739794..7fda48657a32 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceLocationname.java index 1bf23a58b296..6bf452224325 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceString.java index d31afd91ee46..c0d3d53333dc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioning/lookupapihubinstance/SyncLookupApiHubInstanceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/createapihubinstance/SyncCreateApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/createapihubinstance/SyncCreateApiHubInstance.java index 1364e1a52558..abd5354ca039 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/createapihubinstance/SyncCreateApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/createapihubinstance/SyncCreateApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/getapihubinstance/SyncGetApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/getapihubinstance/SyncGetApiHubInstance.java index 5f933b41ee8c..e45d7a09920b 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/getapihubinstance/SyncGetApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/provisioningsettings/getapihubinstance/SyncGetApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetCredentialsProvider.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetCredentialsProvider.java index d2b79718ee1b..acafdc7beaac 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetEndpoint.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetEndpoint.java index 8e7aaa7bd94d..1afb39b3e089 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetEndpoint.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/AsyncCreateRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/AsyncCreateRuntimeProjectAttachment.java index 6693bf4ce7c7..97adc415ae78 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/AsyncCreateRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/AsyncCreateRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java index bf843c689414..154ea66b9395 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentLocationnameRuntimeprojectattachmentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentLocationnameRuntimeprojectattachmentString.java index ef4345adde67..11d38e206265 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentLocationnameRuntimeprojectattachmentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentLocationnameRuntimeprojectattachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentStringRuntimeprojectattachmentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentStringRuntimeprojectattachmentString.java index 43501063e231..731bf9e81f51 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentStringRuntimeprojectattachmentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachmentStringRuntimeprojectattachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/AsyncDeleteRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/AsyncDeleteRuntimeProjectAttachment.java index 448ff211409b..0697ca78ec07 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/AsyncDeleteRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/AsyncDeleteRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachment.java index 916b378f16a8..6b6a6b4fea45 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentRuntimeprojectattachmentname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentRuntimeprojectattachmentname.java index 31e9e8f65d73..5013559ce89e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentRuntimeprojectattachmentname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentRuntimeprojectattachmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentString.java index 62aa0301bd47..e2cba2e214aa 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/deleteruntimeprojectattachment/SyncDeleteRuntimeProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/AsyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/AsyncGetLocation.java index 61141478788b..29d1076f061f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/AsyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/SyncGetLocation.java index a8b9ee16b02e..6f8bbd9ce654 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/AsyncGetRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/AsyncGetRuntimeProjectAttachment.java index a4bb82c3957b..b5ba557d9278 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/AsyncGetRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/AsyncGetRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachment.java index 10face11754a..0c9905d98cf2 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentRuntimeprojectattachmentname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentRuntimeprojectattachmentname.java index 9a5895286314..4190083667b8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentRuntimeprojectattachmentname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentRuntimeprojectattachmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentString.java index 913f7a8ce6ef..ed6027d4b77e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/getruntimeprojectattachment/SyncGetRuntimeProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocations.java index 47870ba43989..ed4044a99f31 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocationsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocationsPaged.java index c3c721721aff..3f68ba70e60d 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocationsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/SyncListLocations.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/SyncListLocations.java index dd5446602477..eefaba28b37a 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/SyncListLocations.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachments.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachments.java index 46994fbe5a63..9dbde69578cc 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachments.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachmentsPaged.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachmentsPaged.java index e247b4f0d17e..0cd393a68d56 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachmentsPaged.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/AsyncListRuntimeProjectAttachmentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachments.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachments.java index 079ba6c11da0..22b5a9b4543e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachments.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsLocationname.java index d119dc5d0519..16795101c102 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsString.java index 4b1af162dc9c..f618904b0d81 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/listruntimeprojectattachments/SyncListRuntimeProjectAttachmentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/AsyncLookupRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/AsyncLookupRuntimeProjectAttachment.java index 96e7b83e1bc0..2e2301691ff1 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/AsyncLookupRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/AsyncLookupRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachment.java index 8ddc48ebd50e..fb34c0d3e772 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentLocationname.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentLocationname.java index d922fa2ff2e3..624903c7b2ea 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentLocationname.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentString.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentString.java index be14450efa29..57ba35a196d9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentString.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservice/lookupruntimeprojectattachment/SyncLookupRuntimeProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservicesettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservicesettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java index 0bf65144d9bf..164ce1753bcb 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservicesettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/runtimeprojectattachmentservicesettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/collectapidata/SyncCollectApiData.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/collectapidata/SyncCollectApiData.java index 6926548b95a8..6791d7927c6e 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/collectapidata/SyncCollectApiData.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/collectapidata/SyncCollectApiData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/getlocation/SyncGetLocation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/getlocation/SyncGetLocation.java index c81b4e96ad6d..c52582f273e8 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/getlocation/SyncGetLocation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcollectstubsettings/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcuratestubsettings/createcuration/SyncCreateCuration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcuratestubsettings/createcuration/SyncCreateCuration.java index 8ed78fb465a0..054151783cd5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcuratestubsettings/createcuration/SyncCreateCuration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubcuratestubsettings/createcuration/SyncCreateCuration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdependenciesstubsettings/createdependency/SyncCreateDependency.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdependenciesstubsettings/createdependency/SyncCreateDependency.java index 6fe683e81e65..10a9e717585f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdependenciesstubsettings/createdependency/SyncCreateDependency.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdependenciesstubsettings/createdependency/SyncCreateDependency.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdiscoverystubsettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdiscoverystubsettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java index c26274ea6db6..b7274ab36b35 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdiscoverystubsettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubdiscoverystubsettings/getdiscoveredapiobservation/SyncGetDiscoveredApiObservation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/deleteplugin/SyncDeletePlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/deleteplugin/SyncDeletePlugin.java index 4ab54a235d3c..58be00335c18 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/deleteplugin/SyncDeletePlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/deleteplugin/SyncDeletePlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/getplugin/SyncGetPlugin.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/getplugin/SyncGetPlugin.java index 50f8151765de..3eb9a35755c9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/getplugin/SyncGetPlugin.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubpluginstubsettings/getplugin/SyncGetPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubstubsettings/createapi/SyncCreateApi.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubstubsettings/createapi/SyncCreateApi.java index 2864371f2d80..dcaf247861d9 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubstubsettings/createapi/SyncCreateApi.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/apihubstubsettings/createapi/SyncCreateApi.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/hostprojectregistrationservicestubsettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/hostprojectregistrationservicestubsettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java index 39e987b222c2..86125291bd9c 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/hostprojectregistrationservicestubsettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/hostprojectregistrationservicestubsettings/createhostprojectregistration/SyncCreateHostProjectRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/lintingservicestubsettings/getstyleguide/SyncGetStyleGuide.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/lintingservicestubsettings/getstyleguide/SyncGetStyleGuide.java index a56f39095356..7785a404831f 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/lintingservicestubsettings/getstyleguide/SyncGetStyleGuide.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/lintingservicestubsettings/getstyleguide/SyncGetStyleGuide.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/createapihubinstance/SyncCreateApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/createapihubinstance/SyncCreateApiHubInstance.java index 1e64d1d4ebf3..b85d3167dec5 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/createapihubinstance/SyncCreateApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/createapihubinstance/SyncCreateApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/getapihubinstance/SyncGetApiHubInstance.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/getapihubinstance/SyncGetApiHubInstance.java index 20dfee242a76..dbcf52771bd0 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/getapihubinstance/SyncGetApiHubInstance.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/provisioningstubsettings/getapihubinstance/SyncGetApiHubInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/runtimeprojectattachmentservicestubsettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/runtimeprojectattachmentservicestubsettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java index 599a41e49eaf..886fbe55ddce 100644 --- a/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/runtimeprojectattachmentservicestubsettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java +++ b/java-apihub/samples/snippets/generated/com/google/cloud/apihub/v1/stub/runtimeprojectattachmentservicestubsettings/createruntimeprojectattachment/SyncCreateRuntimeProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/CHANGELOG.md b/java-apikeys/CHANGELOG.md index 721bb6730d29..0b0f7503eafe 100644 --- a/java-apikeys/CHANGELOG.md +++ b/java-apikeys/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.80.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.79.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.76.0 (2025-10-21) ### Dependencies diff --git a/java-apikeys/README.md b/java-apikeys/README.md index 65e7d98ebca7..c5a4de25b8eb 100644 --- a/java-apikeys/README.md +++ b/java-apikeys/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-apikeys - 0.76.0 + 0.79.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-apikeys:0.76.0' +implementation 'com.google.cloud:google-cloud-apikeys:0.79.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-apikeys" % "0.76.0" +libraryDependencies += "com.google.cloud" % "google-cloud-apikeys" % "0.79.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/api-keys/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-apikeys.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apikeys/0.76.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apikeys/0.79.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-apikeys/google-cloud-apikeys-bom/pom.xml b/java-apikeys/google-cloud-apikeys-bom/pom.xml index 142c10d87198..9652e950789a 100644 --- a/java-apikeys/google-cloud-apikeys-bom/pom.xml +++ b/java-apikeys/google-cloud-apikeys-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-apikeys-bom - 0.79.0-SNAPSHOT + 0.80.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-apikeys - 0.79.0-SNAPSHOT + 0.80.0 com.google.api.grpc grpc-google-cloud-apikeys-v2 - 0.79.0-SNAPSHOT + 0.80.0 com.google.api.grpc proto-google-cloud-apikeys-v2 - 0.79.0-SNAPSHOT + 0.80.0 diff --git a/java-apikeys/google-cloud-apikeys/pom.xml b/java-apikeys/google-cloud-apikeys/pom.xml index d5883010820f..a7dcf2d73dfb 100644 --- a/java-apikeys/google-cloud-apikeys/pom.xml +++ b/java-apikeys/google-cloud-apikeys/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-apikeys - 0.79.0-SNAPSHOT + 0.80.0 jar Google API Keys API API Keys API API Keys lets you create and manage your API keys for your projects. com.google.cloud google-cloud-apikeys-parent - 0.79.0-SNAPSHOT + 0.80.0 google-cloud-apikeys diff --git a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysClient.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysClient.java index 80d617e0fc7d..5ecf8dc35bc2 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysClient.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysSettings.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysSettings.java index 1e6658244a35..ba79b528d2b3 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysSettings.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/ApiKeysSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/package-info.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/package-info.java index 6ea7774727ce..1b019ada5a26 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/package-info.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStub.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStub.java index 8fe3e7c9aa68..729871f6e3a4 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStub.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStubSettings.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStubSettings.java index 476ea50692a2..47230fd284c8 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStubSettings.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/ApiKeysStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -117,8 +117,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysCallableFactory.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysCallableFactory.java index 3fb11f0369b6..24dddf5b9034 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysCallableFactory.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysStub.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysStub.java index 0b710680e4ea..08bf5306928e 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysStub.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/GrpcApiKeysStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysCallableFactory.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysCallableFactory.java index afc94bcfd2b3..8a2309df7d02 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysCallableFactory.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysStub.java b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysStub.java index 4d4c3c610b85..4225b6726d41 100644 --- a/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysStub.java +++ b/java-apikeys/google-cloud-apikeys/src/main/java/com/google/api/apikeys/v2/stub/HttpJsonApiKeysStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientHttpJsonTest.java b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientHttpJsonTest.java index 7ab374eca5ba..adf3a719fb31 100644 --- a/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientHttpJsonTest.java +++ b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientTest.java b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientTest.java index f1af71aa96bc..a7ac24c9c75f 100644 --- a/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientTest.java +++ b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/ApiKeysClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeys.java b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeys.java index 7edf5378fbf4..ec3a72206660 100644 --- a/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeys.java +++ b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeysImpl.java b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeysImpl.java index 876c7e6adb9b..dc54d0eb1c4e 100644 --- a/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeysImpl.java +++ b/java-apikeys/google-cloud-apikeys/src/test/java/com/google/api/apikeys/v2/MockApiKeysImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/grpc-google-cloud-apikeys-v2/pom.xml b/java-apikeys/grpc-google-cloud-apikeys-v2/pom.xml index 7fce01503064..2bf1c6b0f813 100644 --- a/java-apikeys/grpc-google-cloud-apikeys-v2/pom.xml +++ b/java-apikeys/grpc-google-cloud-apikeys-v2/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-apikeys-v2 - 0.79.0-SNAPSHOT + 0.80.0 grpc-google-cloud-apikeys-v2 GRPC library for google-cloud-apikeys com.google.cloud google-cloud-apikeys-parent - 0.79.0-SNAPSHOT + 0.80.0 diff --git a/java-apikeys/grpc-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysGrpc.java b/java-apikeys/grpc-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysGrpc.java index fd3d8833788c..867e476fb70b 100644 --- a/java-apikeys/grpc-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysGrpc.java +++ b/java-apikeys/grpc-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/pom.xml b/java-apikeys/pom.xml index 20b81a8c0e90..a9d77c6f47fd 100644 --- a/java-apikeys/pom.xml +++ b/java-apikeys/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-apikeys-parent pom - 0.79.0-SNAPSHOT + 0.80.0 Google API Keys API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-apikeys - 0.79.0-SNAPSHOT + 0.80.0 com.google.api.grpc grpc-google-cloud-apikeys-v2 - 0.79.0-SNAPSHOT + 0.80.0 com.google.api.grpc proto-google-cloud-apikeys-v2 - 0.79.0-SNAPSHOT + 0.80.0 diff --git a/java-apikeys/proto-google-cloud-apikeys-v2/pom.xml b/java-apikeys/proto-google-cloud-apikeys-v2/pom.xml index a977228985bb..f15a5af6614c 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/pom.xml +++ b/java-apikeys/proto-google-cloud-apikeys-v2/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-apikeys-v2 - 0.79.0-SNAPSHOT + 0.80.0 proto-google-cloud-apikeys-v2 Proto library for google-cloud-apikeys com.google.cloud google-cloud-apikeys-parent - 0.79.0-SNAPSHOT + 0.80.0 diff --git a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplication.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplication.java index 5bfcee06e129..a34c0c77a273 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplication.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplicationOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplicationOrBuilder.java index 6609f9396ae2..88a29acf89f5 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplicationOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidApplicationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictions.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictions.java index 2df9c209f397..d957a877f36f 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictions.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictionsOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictionsOrBuilder.java index fb11af95fc2d..cab007c9780a 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictionsOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/AndroidKeyRestrictionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysProto.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysProto.java index c517bc454dfe..f72914d45a58 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysProto.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiKeysProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTarget.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTarget.java index 2539b51a6de4..593a73570def 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTarget.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTarget.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTargetOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTargetOrBuilder.java index 8ca0e74801fe..0a8dd2be5bf4 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTargetOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ApiTargetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictions.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictions.java index e3442f81a11c..35acdc5025b4 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictions.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictionsOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictionsOrBuilder.java index 2ad7e465ba8b..b3e235b40d5a 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictionsOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/BrowserKeyRestrictionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequest.java index a5e9f9658c9d..081d04b70121 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequestOrBuilder.java index e76f3b952c01..3721e5cd7094 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/CreateKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequest.java index 91786f4ed551..0817e4e46edf 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequestOrBuilder.java index 855adf0d72c2..a36644a97262 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/DeleteKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequest.java index f2519855ec9f..cd3df18647b4 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequestOrBuilder.java index 682ef60e4941..f2fc7cf7326d 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequest.java index 74e57c4bbcc0..76ed1db3879d 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequestOrBuilder.java index d96cf21ab8ad..c3b56b95aaab 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponse.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponse.java index 29e1159ad730..51822aa12081 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponse.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponseOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponseOrBuilder.java index 13e99f9d069a..7b244753cc72 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponseOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/GetKeyStringResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictions.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictions.java index 6221276d82e5..30c69a004325 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictions.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictionsOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictionsOrBuilder.java index bc6996a14003..aa08a3856560 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictionsOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/IosKeyRestrictionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Key.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Key.java index e90dbfc2f9a2..8b6a6e1e02d5 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Key.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Key.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyName.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyName.java index 74b7e380b07d..a19dbbc0b04c 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyName.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyOrBuilder.java index d2a14a44ba91..be1139ec71e1 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/KeyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequest.java index 558ea9a24f31..714cbe1455f8 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequestOrBuilder.java index bf4e119f84d7..056e3342ba77 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponse.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponse.java index 990ddcd767b4..39126b8a454b 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponse.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponseOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponseOrBuilder.java index 830d2b2ed7b6..ac8973761b39 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponseOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ListKeysResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LocationName.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LocationName.java index ba34f9e71924..4ab4457c2bc5 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LocationName.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequest.java index f11f720fd48c..fd27a53481e8 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequestOrBuilder.java index a5d0e08c6a79..5856f8f53716 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponse.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponse.java index 30ff18a1f718..9b5b4c0ceb36 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponse.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponseOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponseOrBuilder.java index 2ede0b4cefa3..93d9171f09ec 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponseOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/LookupKeyResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ResourcesProto.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ResourcesProto.java index c02318d57bd1..b38133082579 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ResourcesProto.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ResourcesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Restrictions.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Restrictions.java index a724e9fa7e60..6d4eb3b6a600 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Restrictions.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/Restrictions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/RestrictionsOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/RestrictionsOrBuilder.java index 283199918949..a3e4d7edd940 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/RestrictionsOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/RestrictionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictions.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictions.java index 605b08055389..45a136704472 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictions.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictionsOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictionsOrBuilder.java index 4eaed736c73c..534179a88274 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictionsOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/ServerKeyRestrictionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequest.java index f0c09508498c..0d96f54ae2f0 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequestOrBuilder.java index 880fcb032e9e..555d40b7bb25 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UndeleteKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequest.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequest.java index 4b9bbeb3818d..16f31464464d 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequest.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequestOrBuilder.java b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequestOrBuilder.java index ba5b4e56e77a..d8d1e7da371d 100644 --- a/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequestOrBuilder.java +++ b/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/UpdateKeyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetCredentialsProvider.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetCredentialsProvider.java index 5c4061dea5ba..ed1dbfc9934b 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetCredentialsProvider.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetEndpoint.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetEndpoint.java index d06142ee67e1..b1a536fa7f2f 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetEndpoint.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateUseHttpJsonTransport.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateUseHttpJsonTransport.java index 07c7b8f32d1b..d972fecfd25f 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateUseHttpJsonTransport.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKey.java index db74e87cf017..c5d646f28905 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKeyLRO.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKeyLRO.java index cf6a9525e6af..71f9edca43a9 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKeyLRO.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/AsyncCreateKeyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKey.java index 1bb64e615f66..2e6d4fd6a22a 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyLocationnameKeyString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyLocationnameKeyString.java index 475056481099..7d85d26665af 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyLocationnameKeyString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyLocationnameKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyStringKeyString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyStringKeyString.java index 4786a5eab318..ff22ab411869 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyStringKeyString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/createkey/SyncCreateKeyStringKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKey.java index e4fbb238ac95..980e9a7c74e6 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKeyLRO.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKeyLRO.java index 4590ad6d95ff..1e0bc6a2ef89 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKeyLRO.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/AsyncDeleteKeyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKey.java index 28ca42ae18c1..0f8d2e20c706 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyKeyname.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyKeyname.java index 18bb8313525f..8235cf736d1c 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyKeyname.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyKeyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyString.java index 5af33eed6f9a..e00ffcca9508 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/deletekey/SyncDeleteKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/AsyncGetKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/AsyncGetKey.java index 7ae8844e36d3..7d36b7f2d657 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/AsyncGetKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/AsyncGetKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKey.java index 8304b4e15d60..075e3a2e4a95 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyKeyname.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyKeyname.java index 7524e1d9febe..dd8b37aead02 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyKeyname.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyKeyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyString.java index a021fccdf256..e511fc2e6013 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkey/SyncGetKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/AsyncGetKeyString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/AsyncGetKeyString.java index 3b418691b84d..d5b1e5ae90c3 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/AsyncGetKeyString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/AsyncGetKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyString.java index b99e3a19e342..c9e19070c0ad 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringKeyname.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringKeyname.java index 45e16db0c6e7..a8f58128ad8f 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringKeyname.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringKeyname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringString.java index fa7ae318e4e8..766fc3e2977e 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/getkeystring/SyncGetKeyStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeys.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeys.java index 91b1ee778988..70d02678771f 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeys.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeysPaged.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeysPaged.java index 89bc57a155f5..3d4d07c6522d 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeysPaged.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/AsyncListKeysPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeys.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeys.java index a5b23df51ab5..e4fe09c74d80 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeys.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeys.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysLocationname.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysLocationname.java index 99e3653276b4..3c650286e89d 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysLocationname.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysString.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysString.java index 7225e467c9ec..933f379b391c 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysString.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/listkeys/SyncListKeysString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/AsyncLookupKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/AsyncLookupKey.java index 914f332e19de..8142c25e2400 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/AsyncLookupKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/AsyncLookupKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/SyncLookupKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/SyncLookupKey.java index da269acda87c..152e43a8fad6 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/SyncLookupKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/lookupkey/SyncLookupKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKey.java index 054e64b65292..1db73a13b12c 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKeyLRO.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKeyLRO.java index 59730340102e..3bfbf4d11b2c 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKeyLRO.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/AsyncUndeleteKeyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/SyncUndeleteKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/SyncUndeleteKey.java index 0445a81e8e13..fefaecab48a3 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/SyncUndeleteKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/undeletekey/SyncUndeleteKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKey.java index 10b059247dc1..76b259ec2ee7 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKeyLRO.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKeyLRO.java index 3cfcb36927e1..b85ce13ec841 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKeyLRO.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/AsyncUpdateKeyLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKey.java index a29f453048e1..abbd30eb6075 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKeyKeyFieldmask.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKeyKeyFieldmask.java index c3d23de8dc66..68397bfe4279 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKeyKeyFieldmask.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeys/updatekey/SyncUpdateKeyKeyFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/createkey/SyncCreateKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/createkey/SyncCreateKey.java index f8fa53c6e302..2ccbec469e78 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/createkey/SyncCreateKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/createkey/SyncCreateKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/getkey/SyncGetKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/getkey/SyncGetKey.java index 60b4ee07b2e0..1829438d34e2 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/getkey/SyncGetKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/apikeyssettings/getkey/SyncGetKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/createkey/SyncCreateKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/createkey/SyncCreateKey.java index 514aa67d228f..e3d783f61d34 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/createkey/SyncCreateKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/createkey/SyncCreateKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/getkey/SyncGetKey.java b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/getkey/SyncGetKey.java index ef699f9c779d..2eb7a4fefacb 100644 --- a/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/getkey/SyncGetKey.java +++ b/java-apikeys/samples/snippets/generated/com/google/api/apikeys/v2/stub/apikeysstubsettings/getkey/SyncGetKey.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/CHANGELOG.md b/java-appengine-admin/CHANGELOG.md index 898f66126951..81a2f636dbd8 100644 --- a/java-appengine-admin/CHANGELOG.md +++ b/java-appengine-admin/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 2.82.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 2.81.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 2.78.0 (2025-10-21) ### Dependencies diff --git a/java-appengine-admin/README.md b/java-appengine-admin/README.md index 6b60a959e928..4d76eb7a23a8 100644 --- a/java-appengine-admin/README.md +++ b/java-appengine-admin/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-appengine-admin - 2.78.0 + 2.81.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-appengine-admin:2.78.0' +implementation 'com.google.cloud:google-cloud-appengine-admin:2.81.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-appengine-admin" % "2.78.0" +libraryDependencies += "com.google.cloud" % "google-cloud-appengine-admin" % "2.81.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/appengine/docs/admin-api/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-appengine-admin/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-appengine-admin.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-appengine-admin/2.78.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-appengine-admin/2.81.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-appengine-admin/google-cloud-appengine-admin-bom/pom.xml b/java-appengine-admin/google-cloud-appengine-admin-bom/pom.xml index f70c220a82ac..cafc6b5cd9d1 100644 --- a/java-appengine-admin/google-cloud-appengine-admin-bom/pom.xml +++ b/java-appengine-admin/google-cloud-appengine-admin-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-appengine-admin-bom - 2.81.0-SNAPSHOT + 2.82.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-appengine-admin - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-appengine-admin-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-appengine-admin-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-appengine-admin/google-cloud-appengine-admin/pom.xml b/java-appengine-admin/google-cloud-appengine-admin/pom.xml index 4d51204659c1..90ff3bf4392c 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/pom.xml +++ b/java-appengine-admin/google-cloud-appengine-admin/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-appengine-admin - 2.81.0-SNAPSHOT + 2.82.0 jar Google App Engine Admin API App Engine Admin API you to manage your App Engine applications. com.google.cloud google-cloud-appengine-admin-parent - 2.81.0-SNAPSHOT + 2.82.0 google-cloud-appengine-admin diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsClient.java index e57b2be96ee7..10f038400230 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsSettings.java index d31f2a5c9add..7622a38f2d81 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ApplicationsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesClient.java index 9e7ca035fdb5..8fbe36cc5792 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesSettings.java index e18562b31ea7..72bb2b792f7b 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedCertificatesSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AuthorizedCertificatesSettings extends ClientSettings { diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsClient.java index d59b4b7088a9..901ae9e6aebe 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsSettings.java index 7b9427914a9e..f338ad5135e0 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/AuthorizedDomainsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AuthorizedDomainsSettings extends ClientSettings { diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsClient.java index 9023cc3142de..3dc98925c221 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsSettings.java index 4ebc86775b7d..1985a30df92c 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/DomainMappingsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallClient.java index 2db87f02829c..f582a4d59c2b 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallSettings.java index cdf2f2153086..2f1fc7dc55e9 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/FirewallSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class FirewallSettings extends ClientSettings { diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesClient.java index 0eef0da14eda..44d9ca504358 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesSettings.java index 6dfcd9070a6f..b57429bf4608 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/InstancesSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesClient.java index 456c1166304e..fb425034cd64 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesSettings.java index db10fa4e24dd..e1f0c16b832e 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/ServicesSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsClient.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsClient.java index f4bdb7db4290..f776c9c018c3 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsClient.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsSettings.java index 81478da9d30a..2b47c04e5dce 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/VersionsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/package-info.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/package-info.java index 2168ffbb9071..a1b8b6e99429 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/package-info.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStub.java index ee62cb33b832..74cb0dfc8450 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStubSettings.java index bb858beb54a5..d25cd801e060 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ApplicationsStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStub.java index 31fc1bd1edf1..f3e0e977eb3a 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStubSettings.java index ce44fe14d9f1..4c30b7d1290c 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedCertificatesStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AuthorizedCertificatesStubSettings diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStub.java index ad31e124b9e2..4d10655a1bf5 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStubSettings.java index b0f725ff39e4..8579c71532fb 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/AuthorizedDomainsStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,8 +104,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AuthorizedDomainsStubSettings extends StubSettings { diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStub.java index ccc133b6292c..5dc60e3ecada 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStubSettings.java index 9936b9ed1a81..7feb6ff81e85 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/DomainMappingsStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStub.java index cccd2775df9a..37438d6eab60 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStubSettings.java index cd80f3fda4b9..6d4a3b77fec1 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/FirewallStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class FirewallStubSettings extends StubSettings { diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsCallableFactory.java index 1bb1091b3615..158fd240c89c 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsStub.java index 35a868d79886..e635db9a07fc 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcApplicationsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesCallableFactory.java index b7282acaa8c6..9e66130d4d60 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesStub.java index 26f0357f6d7a..a4a5b2c82b26 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedCertificatesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsCallableFactory.java index 23cc37fcac0a..cf022dee4a45 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsStub.java index bc5461292693..72e05d2e4bbc 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcAuthorizedDomainsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsCallableFactory.java index 3c33f8385d27..dbf5eb1becd5 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsStub.java index 439cca054036..0c236b782066 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcDomainMappingsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallCallableFactory.java index 042da2387eb3..754b91b93202 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallStub.java index 14693039087a..dfd5e125426d 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcFirewallStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesCallableFactory.java index 8fad5efd3e8d..dd1539fd6fb1 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesStub.java index ea3723d8ab6f..5774efb3a7ea 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcInstancesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesCallableFactory.java index 1ef25d439ea0..269b89565297 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesStub.java index 014d1784dda5..381dba0bbcfc 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcServicesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsCallableFactory.java index 69f7c6a2d340..4a1da01a023c 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsStub.java index 29f6a2bb70bb..5b4dbde03fca 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/GrpcVersionsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsCallableFactory.java index 6091d9b5dc55..0ebe8fb34bac 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsStub.java index a41c9b742533..e01dbf7e3dc4 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonApplicationsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesCallableFactory.java index be3d7f607679..3abcff6f3479 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesStub.java index 3a24b981fc65..4903f195f45e 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedCertificatesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsCallableFactory.java index 046c405807bb..85ea52a6b1de 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsStub.java index b941ce7a1122..621647ea8ce6 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonAuthorizedDomainsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsCallableFactory.java index 0d8caa6b54f9..341c3be724e5 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsStub.java index 18df67b5dadd..74697ab28d96 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonDomainMappingsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallCallableFactory.java index 6e0db8a539ee..2fcc994996c3 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallStub.java index c3eb436a543d..6fe365cc0f4d 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonFirewallStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesCallableFactory.java index 181ab51139fa..712836ce59cd 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesStub.java index b72397a2fd99..7b8c846de4e5 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonInstancesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesCallableFactory.java index 1a9271a1e947..ce78e8f5ac87 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesStub.java index 185ad2cae184..6c5a9b182062 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonServicesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsCallableFactory.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsCallableFactory.java index f45fb712fc8b..ba47d7e64336 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsCallableFactory.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsStub.java index fc29cfb844f1..5037c3350de5 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/HttpJsonVersionsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStub.java index 8530d51b63fb..3a752301f35f 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStubSettings.java index 45fdd6414838..cfa15cff7796 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/InstancesStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStub.java index ddc777a703cc..4c65e471d3b3 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStubSettings.java index bcc952dc46e4..15aa76a3c3be 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/ServicesStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -112,8 +112,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStub.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStub.java index 1d829e70fcf7..fdf9e8dfdbf8 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStub.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStubSettings.java b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStubSettings.java index 382d110cd498..e4bd0d19683f 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStubSettings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/main/java/com/google/appengine/v1/stub/VersionsStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientHttpJsonTest.java index 46415819372e..cafbb129de30 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientTest.java index f9b17e3d3eee..8531fb46abe4 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ApplicationsClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientHttpJsonTest.java index 5564a77c4b11..4860817d2773 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientTest.java index 5259a08e9e0d..e4ab3f417cef 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedCertificatesClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientHttpJsonTest.java index 62ffebea5357..caf2bfe01256 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientTest.java index d89a5593270e..1798307f8abc 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/AuthorizedDomainsClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientHttpJsonTest.java index 491212785678..647926085d5a 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientTest.java index 04ea8dd92800..1e5452e6c8e6 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/DomainMappingsClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientHttpJsonTest.java index 8aaa4fba795f..b203b3e0cc13 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientTest.java index 771214eee76a..c55077c2b82b 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/FirewallClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientHttpJsonTest.java index b89f5f668051..eef445538415 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientTest.java index cff79f38443b..4bf697299ee6 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/InstancesClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplications.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplications.java index 02ce495c937a..c73af30fb2c0 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplications.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplicationsImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplicationsImpl.java index 2b396be72d90..cdde093cc7ee 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplicationsImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockApplicationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificates.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificates.java index 0e2ca52260d6..a420cdbe5804 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificates.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificatesImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificatesImpl.java index 97952460add0..728458e7b4e9 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificatesImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedCertificatesImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomains.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomains.java index 2c83a1b660a9..c95de72678b5 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomains.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomains.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomainsImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomainsImpl.java index e719749082ac..6c04d80c2c8b 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomainsImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockAuthorizedDomainsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappings.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappings.java index 1172787543e3..384f28e6fb64 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappings.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappingsImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappingsImpl.java index 3d416225649f..4f46cd92e5bc 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappingsImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockDomainMappingsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewall.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewall.java index 6d10e9fac5e7..0c8135a2d0bc 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewall.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewall.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewallImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewallImpl.java index 0233fcfbd78f..80232aaa2805 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewallImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockFirewallImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstances.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstances.java index c738f28263da..160af3fed94d 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstances.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstancesImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstancesImpl.java index 81603750e88c..332248bcb1c4 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstancesImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockInstancesImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServices.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServices.java index 08ac9bce81d7..a5cfd595988e 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServices.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServicesImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServicesImpl.java index 023359c73bea..ab8d817ed165 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServicesImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockServicesImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersions.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersions.java index f0b7f41c7bb8..bc2b1d3c1938 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersions.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersionsImpl.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersionsImpl.java index 7ad9118f16e7..236445269623 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersionsImpl.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/MockVersionsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientHttpJsonTest.java index 600149a4164f..10311c1ba8d1 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientTest.java index 87a4d6791a20..cc7737e9a185 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/ServicesClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientHttpJsonTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientHttpJsonTest.java index e71b3ee5aaf0..2e5859321a3a 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientHttpJsonTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientTest.java b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientTest.java index b0b1ec59f456..8121b44d9d79 100644 --- a/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientTest.java +++ b/java-appengine-admin/google-cloud-appengine-admin/src/test/java/com/google/appengine/v1/VersionsClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/pom.xml b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/pom.xml index 28ff16211aef..4183f46d6e06 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/pom.xml +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-appengine-admin-v1 - 2.81.0-SNAPSHOT + 2.82.0 grpc-google-cloud-appengine-admin-v1 GRPC library for google-cloud-appengine-admin com.google.cloud google-cloud-appengine-admin-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationsGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationsGrpc.java index f49822f71c69..285c39839fb2 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationsGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationsGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificatesGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificatesGrpc.java index 2c5508eedd01..b2366480342d 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificatesGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificatesGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainsGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainsGrpc.java index 5608cbad9c7e..1fb0f6b6d65b 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainsGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainsGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingsGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingsGrpc.java index 031b2d4c0a4e..1b3cec86740b 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingsGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingsGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FirewallGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FirewallGrpc.java index 116df45bb582..684444018067 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FirewallGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FirewallGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstancesGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstancesGrpc.java index e3a4477dff79..f7f1f637bd40 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstancesGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstancesGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServicesGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServicesGrpc.java index 0f01480d4b3e..0789a94f7ac5 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServicesGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServicesGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionsGrpc.java b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionsGrpc.java index baf014af0f81..e383e822fc7d 100644 --- a/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionsGrpc.java +++ b/java-appengine-admin/grpc-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionsGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/pom.xml b/java-appengine-admin/pom.xml index f207fe630f99..b7633d34cec5 100644 --- a/java-appengine-admin/pom.xml +++ b/java-appengine-admin/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-appengine-admin-parent pom - 2.81.0-SNAPSHOT + 2.82.0 Google App Engine Admin API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-appengine-admin - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-appengine-admin-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-appengine-admin-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/pom.xml b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/pom.xml index c07fcc05a7e1..00ea711c22d5 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/pom.xml +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-appengine-admin-v1 - 2.81.0-SNAPSHOT + 2.82.0 proto-google-cloud-appengine-admin-v1 Proto library for google-cloud-appengine-admin com.google.cloud google-cloud-appengine-admin-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandler.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandler.java index 276f957803fa..7eab077ed4d5 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandler.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandlerOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandlerOrBuilder.java index 5303c667f830..c216888de31f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandlerOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiConfigHandlerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandler.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandler.java index 003d3b1242a0..28bf24301edf 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandler.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandlerOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandlerOrBuilder.java index cb4b7542061a..2960ad3f5e22 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandlerOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApiEndpointHandlerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppYamlProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppYamlProto.java index a101cfcf9fab..52a1557fca1c 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppYamlProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppYamlProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppengineProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppengineProto.java index 1bbcf637d142..d13cd10276bb 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppengineProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AppengineProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Application.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Application.java index 527b261e7e84..d6dc9f621b14 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Application.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationOrBuilder.java index 7dac79c0031e..6349deb7e197 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationProto.java index f40796dddb3c..c72654f22121 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ApplicationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditData.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditData.java index 1c6a1c50c1ca..ff18510bd3ae 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditData.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataOrBuilder.java index 71f563255e84..36be561bfd42 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataProto.java index 30351c7ec0b4..429febebd25b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuditDataProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthFailAction.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthFailAction.java index 8a00041c5b7f..9d193bd6f32e 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthFailAction.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthFailAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificate.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificate.java index 99b309d794f2..d61b5206c967 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificate.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateOrBuilder.java index 81ea5f831008..38c8c977a062 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateView.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateView.java index 1dcccc7a10e2..dab07643e4d9 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateView.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedCertificateView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomain.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomain.java index 10cf092dc950..b1a02983ba8b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomain.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomain.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainOrBuilder.java index 2f5c7efba4e8..36b6c528529a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AuthorizedDomainOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScaling.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScaling.java index 935b2137260e..18592f916d1e 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScaling.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScaling.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScalingOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScalingOrBuilder.java index 89a0b1f4b4f3..a7f61c257883 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScalingOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/AutomaticScalingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScaling.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScaling.java index e79af8ece000..7da3fd3e2538 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScaling.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScaling.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScalingOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScalingOrBuilder.java index 13609ad1fa85..c5d4a1cffced 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScalingOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BasicScalingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequest.java index 5319c7976edc..0f7832c565a5 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequestOrBuilder.java index 446cadce4482..0ee37c8ff650 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponse.java index 87cea04fba4b..170f6072e52d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponseOrBuilder.java index f7a9e5de8201..1015a5464d21 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/BatchUpdateIngressRulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateProto.java index a301273cbf3b..5b6f7c834c0b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawData.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawData.java index 7311f0f9efa3..627aa80194d6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawData.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawData.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawDataOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawDataOrBuilder.java index c20119d2a034..192d65eff3c1 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawDataOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CertificateRawDataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptions.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptions.java index 17cefc1f2b99..f6e7a8084de5 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptions.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptionsOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptionsOrBuilder.java index d993c0ad87f6..332882109129 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptionsOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CloudBuildOptionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfo.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfo.java index ad4aeb24de68..8c5a094c3ec3 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfo.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfoOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfoOrBuilder.java index f28d9df3b123..29e68d0bc6bc 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfoOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ContainerInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilization.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilization.java index 7dbb9945190d..f4cbdaac36e6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilization.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilization.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilizationOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilizationOrBuilder.java index 64c604fdc67a..896b947acd9a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilizationOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CpuUtilizationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequest.java index c3b79b106400..0d2dbd7b5087 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequestOrBuilder.java index b7e36f690606..958cee9f448c 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequest.java index 504e00e7c75d..191ca8902dfa 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequestOrBuilder.java index 55bc088d3951..0640805e41e2 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateAuthorizedCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequest.java index 6838a4089b5f..0200ccbca2ca 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequestOrBuilder.java index 5857b28015d1..cd4b457e9bd3 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateDomainMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequest.java index eade80d3bd5a..708261a15f00 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequestOrBuilder.java index 924d9ca8d153..c7160ecd363f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateIngressRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1.java index d55e4b5bfaf9..1317faf1c5a8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1OrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1OrBuilder.java index afa93787eeec..2b0ef24144ff 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1OrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMetadataV1OrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethod.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethod.java index 77da474b2d59..1959fb2b8d04 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethod.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethod.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethodOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethodOrBuilder.java index 96a931d6cf65..ad06c6399687 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethodOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionMethodOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequest.java index 364420bd6ad7..3d767af0a407 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequestOrBuilder.java index 5102f1650ab0..d70e681efc1a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/CreateVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequest.java index 9f78b80ec605..32280d714f5b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequestOrBuilder.java index 36028fbeb9bb..cfc13b673fbd 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DebugInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequest.java index b9a9073b1dcc..4b21d2ebf3de 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequestOrBuilder.java index 7d2654a8779c..e898a18795ec 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteAuthorizedCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequest.java index 6d087794d103..9849d77faf6e 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequestOrBuilder.java index 7903f02b9c4d..09542c54ba91 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteDomainMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequest.java index ca80f68cb883..bc43eb05a80b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequestOrBuilder.java index 9e99277f3f05..3ac4e97d1300 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteIngressRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequest.java index 43fee72a6a76..e1638222a2f7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequestOrBuilder.java index a8441eb5fd80..a4db933fd3fc 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequest.java index 32d8a7218ec4..7db5db4f459c 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequestOrBuilder.java index 2625bbef16fa..dbca7fb8ebd7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequest.java index 22cd9c6b7234..9f13a6703e1a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequestOrBuilder.java index d8f5265a2c6e..7b5109297a65 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeleteVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployProto.java index c7ddc775fb44..d13d48540cec 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployedFilesProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployedFilesProto.java index cc585b866d98..aebea84c6037 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployedFilesProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeployedFilesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Deployment.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Deployment.java index f9097fb0f4fe..15202c5ae90d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Deployment.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Deployment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeploymentOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeploymentOrBuilder.java index d8906d256c60..d5ab284e8a8d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeploymentOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DeploymentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilization.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilization.java index 2d4b0baff313..fc461e9922e6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilization.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilization.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilizationOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilizationOrBuilder.java index 79e9fe03d5bb..b918bce9b34a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilizationOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DiskUtilizationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMapping.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMapping.java index 4605a1b3d37a..933f2b1b83fe 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMapping.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingOrBuilder.java index e6c41619db05..9ca4662b73c6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingProto.java index ff38d8aaabe9..20e44c89f1c4 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainMappingProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainOverrideStrategy.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainOverrideStrategy.java index c62e8c5c3a68..94c20a509576 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainOverrideStrategy.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainOverrideStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainProto.java index 04a4ca816e66..552f168dae03 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/DomainProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiService.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiService.java index a393a3160265..52a0dd23db3c 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiService.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiServiceOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiServiceOrBuilder.java index ce8761be2dd3..99f249a6db50 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiServiceOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EndpointsApiServiceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Entrypoint.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Entrypoint.java index 6419ffa4eb4e..6195929897d0 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Entrypoint.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Entrypoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EntrypointOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EntrypointOrBuilder.java index 9a332a24e339..1291400d0364 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EntrypointOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/EntrypointOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandler.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandler.java index d3f86226204b..0ec4b5b48d68 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandler.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandlerOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandlerOrBuilder.java index fe46c6adfc4c..565a534d8384 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandlerOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ErrorHandlerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfo.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfo.java index 64565a032fcf..dad34c7c20c0 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfo.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfoOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfoOrBuilder.java index cd36f7d62780..9b9487d76e8f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfoOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/FileInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequest.java index 0349e1a0ae0b..4409ac5be8a7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequestOrBuilder.java index a8964ebf561f..cad530ecc9e6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequest.java index 384dcb03580a..b4852a26af06 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequestOrBuilder.java index af42db17257d..f880c286478d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetAuthorizedCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequest.java index 045e46a5bac8..14ca18a96e5a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequestOrBuilder.java index 3591dff6cbd6..4261be5e6179 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetDomainMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequest.java index a648f5003c6f..32d52b933616 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequestOrBuilder.java index 91109b90ce54..0c9721099d0d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetIngressRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequest.java index 59dfd76ec56a..8110b06c71e9 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequestOrBuilder.java index 461ad8069413..bb205860bc6c 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetInstanceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequest.java index a21d7fd60b21..2e992bc187e5 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequestOrBuilder.java index a0e38c0fbd98..122ea408ed65 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequest.java index 6f0317a1285b..97caef995310 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequestOrBuilder.java index 3089923bb8f9..08a9a1f8a218 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/GetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheck.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheck.java index 0d809fa60179..8339cf870909 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheck.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheck.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheckOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheckOrBuilder.java index 47caad9e8636..b9fe8bbe7b2d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheckOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/HealthCheckOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InboundServiceType.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InboundServiceType.java index d1f384d059ac..3dd64df77dae 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InboundServiceType.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InboundServiceType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Instance.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Instance.java index 9acca7612f54..051991537de4 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Instance.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Instance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceOrBuilder.java index a4a9d77a58a5..d7729a0be3e8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceProto.java index c1b8c756c31c..fa57ac4f2ce9 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/InstanceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Library.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Library.java index ca6607f8eeb4..f509dd92b3bb 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Library.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Library.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LibraryOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LibraryOrBuilder.java index 30acf3a3c0ac..4683fd2926c8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LibraryOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LibraryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequest.java index cf21fd0a1ba9..b0da7b44c511 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequestOrBuilder.java index 45757cd8a2b1..dfa89a3fd843 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponse.java index 041327f489dd..f1a64d6a4922 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponseOrBuilder.java index 40e4593c77dd..3e15142e486f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedCertificatesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequest.java index 313cc9485f4b..74c3ae1d183f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequestOrBuilder.java index 84a2883ef009..1e39caf2fac7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponse.java index 060ac2932e80..9e97f3232659 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponseOrBuilder.java index 2988f5da9dcc..6f2cf4f0310f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListAuthorizedDomainsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequest.java index 05509ba91bb1..3d52022dfcbb 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequestOrBuilder.java index 22279591f940..ec791d56d27a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponse.java index 14cf4dff2474..6b40667f6c61 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponseOrBuilder.java index 9b43a68d7437..33690d5b904f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListDomainMappingsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequest.java index b1e2fbb129c9..c7bf5b5bd602 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequestOrBuilder.java index d1cede0c7d9f..ee607563459e 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponse.java index 938279f780a8..d755713d87ce 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponseOrBuilder.java index 198dccb0f0df..7df7035519d9 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListIngressRulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequest.java index 0acd6eb1fff5..6ec98eba6717 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequestOrBuilder.java index 57f76a76baae..427c0bef4691 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponse.java index c7fdda9ef9c6..aaac7743d816 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponseOrBuilder.java index 259d40037a58..ae39ab623e31 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListInstancesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequest.java index 31925a28d1fd..4e1e63b61583 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequestOrBuilder.java index 337e2c2579c9..a92c868889e1 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponse.java index d808c9331326..3b7d98aec450 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponseOrBuilder.java index 4d1f38d5037a..9d4d1425ef8a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListServicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequest.java index d958819b8d9f..54aadb123444 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequestOrBuilder.java index 361571353417..87d2187b08de 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponse.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponse.java index ab5dd5deed44..134764e84f7a 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponse.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponseOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponseOrBuilder.java index b91f0932d2cf..d1f37f6be0b9 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponseOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ListVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheck.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheck.java index 7137d07f7392..d18b568873ff 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheck.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheck.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheckOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheckOrBuilder.java index ae9aa489c908..e0e8fb64ba33 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheckOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LivenessCheckOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadata.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadata.java index 8e0cb3d1ddd6..a5b796048e72 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadata.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadataOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadataOrBuilder.java index 8fb39275c023..34ce943b5555 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadataOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationProto.java index b3ceb195fe8c..76c3d9a7b5ed 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LocationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LoginRequirement.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LoginRequirement.java index 4bcdae6def72..e62bdef37a26 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LoginRequirement.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/LoginRequirement.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificate.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificate.java index b2090c1f7718..be0f27daa6a8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificate.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificateOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificateOrBuilder.java index e3cd27454ec9..06fa98eabe1b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificateOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagedCertificateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagementStatus.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagementStatus.java index ea610c93649d..ad264a001b86 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagementStatus.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManagementStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScaling.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScaling.java index a1609afad918..1fd21669ae4b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScaling.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScaling.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScalingOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScalingOrBuilder.java index 955e04722e62..6c896ecae57c 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScalingOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ManualScalingOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Network.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Network.java index 8fcb3120a458..1cac810d26cc 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Network.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Network.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkOrBuilder.java index cc86669d77b3..32e0c0dd13b2 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettings.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettings.java index f74e79e24c10..a34b3fd77e66 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettings.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsOrBuilder.java index aa768dcc09bb..2135904385f2 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsProto.java index d7c98dd6ea86..6e2e322eb273 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkSettingsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilization.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilization.java index d337a3a81b14..d957ae8ab0e0 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilization.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilization.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilizationOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilizationOrBuilder.java index 37358e3d3692..de145fbfa7e0 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilizationOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/NetworkUtilizationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1.java index dbc48632ff78..a12b1bb15216 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1OrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1OrBuilder.java index 2701e4486ec3..d19e3fbcc385 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1OrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationMetadataV1OrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationProto.java index 81b7fa733cb6..1d1613b3961d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/OperationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheck.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheck.java index 8d4be633c4f7..878d66eb8861 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheck.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheck.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheckOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheckOrBuilder.java index 0f7f17ea052a..4bbc46f6b928 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheckOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ReadinessCheckOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequest.java index 9842f1ed10b1..00cca1503784 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequestOrBuilder.java index d0a0d11e0560..c875256d8282 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RepairApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilization.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilization.java index 603563019f80..0bb15ac5c879 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilization.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilization.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilizationOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilizationOrBuilder.java index 670faa27ab0e..6a6f2fe82560 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilizationOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/RequestUtilizationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecord.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecord.java index 75dac092310b..e86cd1b97efd 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecord.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecord.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecordOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecordOrBuilder.java index 27719a868dd5..d5120aa79168 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecordOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourceRecordOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Resources.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Resources.java index 0fdb8237d1a6..873366a1f733 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Resources.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Resources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourcesOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourcesOrBuilder.java index 947675899a9b..e36614501cf5 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourcesOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ResourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandler.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandler.java index ab99b1b5e29d..cbfbe2261d18 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandler.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandlerOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandlerOrBuilder.java index 73ea91af1922..273050155542 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandlerOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ScriptHandlerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SecurityLevel.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SecurityLevel.java index f90a5c83469f..8dd2d572084d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SecurityLevel.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SecurityLevel.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Service.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Service.java index 5f0f5a3e5c5c..605c7d8eec3b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Service.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Service.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceOrBuilder.java index bd1d1c64eca4..b9d017bc1b4d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceProto.java index 26ab4eabcd08..ba21ca44a3c7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServingStatus.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServingStatus.java index ebd7836ef4cf..36899c4afa48 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServingStatus.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ServingStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettings.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettings.java index 2c63250576d3..0b104fd36dc8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettings.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettingsOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettingsOrBuilder.java index 3039cd2d53c3..e45ce8a6d33f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettingsOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/SslSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettings.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettings.java index 8e19ebbb3d62..4fc691fa7941 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettings.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettingsOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettingsOrBuilder.java index 9e0ddafd93b7..4822d02f0048 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettingsOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StandardSchedulerSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandler.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandler.java index de0a21d598f8..da1f42ee56c3 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandler.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandlerOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandlerOrBuilder.java index a851b0a15986..109c5885f70f 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandlerOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/StaticFilesHandlerOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplit.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplit.java index d617364d73bb..dc06c5e245b6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplit.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplit.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplitOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplitOrBuilder.java index f982e2005cc1..f018108b22ba 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplitOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/TrafficSplitOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequest.java index 703f985584b3..419d169630b3 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequestOrBuilder.java index bdc1bfaf7adf..b0d6a891c074 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequest.java index edcf3e0bf1d3..eb66a466edf7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequestOrBuilder.java index 3b1633a1071e..f99b77117045 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateAuthorizedCertificateRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequest.java index 9660c8314d3e..865aad1d8262 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequestOrBuilder.java index aa22e58c579b..5c5a3374dfed 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateDomainMappingRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequest.java index 5d98993fef03..13ecfb039ebe 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequestOrBuilder.java index a28335cad4b1..47165c84648b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateIngressRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethod.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethod.java index 9eb6a48e6fbb..38f60221e46d 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethod.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethod.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethodOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethodOrBuilder.java index c8e6706cddf5..e2706d923d99 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethodOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceMethodOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequest.java index 24f05b396caa..6bd14b1dc4a3 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequestOrBuilder.java index 414b2eb97d63..993e22ff0477 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequest.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequest.java index 706a789a8809..c6c0bc96c8d7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequest.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequestOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequestOrBuilder.java index 39356cdf4165..47847b6640f6 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequestOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UpdateVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRule.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRule.java index 83a408a28d05..27d8a6030fe8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRule.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRuleOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRuleOrBuilder.java index f25c3d330d7d..6bbe499572cf 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRuleOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlDispatchRuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMap.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMap.java index 17c111b7dd7f..f70d59c2c667 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMap.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMap.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMapOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMapOrBuilder.java index eb18c0a0f3ff..7a10c4dce36b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMapOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/UrlMapOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Version.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Version.java index 23824013ccc8..f5e3ef0417a8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Version.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Version.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionOrBuilder.java index 65bf9997465e..8455a57c9514 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionProto.java index 2f49c98dbfa8..a80827fdfca8 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionView.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionView.java index 588d53023b7e..14b799f705c7 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionView.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VersionView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Volume.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Volume.java index ab730163066b..f284d9b495c2 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Volume.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/Volume.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VolumeOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VolumeOrBuilder.java index 55affd47ed86..f5db21ab91d4 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VolumeOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VolumeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnector.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnector.java index 322c561b3a07..a4c9d273ef73 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnector.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnector.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnectorOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnectorOrBuilder.java index a460f23b8daf..036708b4c668 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnectorOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/VpcAccessConnectorOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfo.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfo.java index 1a943a215fa0..5898937ed2e2 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfo.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfoOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfoOrBuilder.java index 39530fb67386..74d71ae8a80b 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfoOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/ZipInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallProto.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallProto.java index c4d2274c07cb..7ee910719558 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallProto.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRule.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRule.java index d07e4a1be33f..d0b3b4ef1976 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRule.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRuleOrBuilder.java b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRuleOrBuilder.java index eefdd0fade50..a47c19bd8376 100644 --- a/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRuleOrBuilder.java +++ b/java-appengine-admin/proto-google-cloud-appengine-admin-v1/src/main/java/com/google/appengine/v1/firewall/FirewallRuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetCredentialsProvider.java index 3236879632f1..e0075df1fa2f 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetEndpoint.java index 5e27af8a905c..7e55071cf54c 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateUseHttpJsonTransport.java index bd8ff058a1dc..d45199437832 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplication.java index e0c417de5609..0158589a4e13 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplicationLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplicationLRO.java index ecde82ab07e1..8bbc8174d8dd 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplicationLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/AsyncCreateApplicationLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/SyncCreateApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/SyncCreateApplication.java index 169c0ce240d1..ff0d0b9d1e6d 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/SyncCreateApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/createapplication/SyncCreateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/AsyncGetApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/AsyncGetApplication.java index 0f38dbaa9ff4..3bccbc409c8d 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/AsyncGetApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/AsyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplication.java index 66790243bbc5..039968f048dc 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplicationString.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplicationString.java index f70e6a96e3a8..9602c3a385e9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplicationString.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/getapplication/SyncGetApplicationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplication.java index 7c5ed7eee181..7d7cb55fa1c6 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplicationLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplicationLRO.java index 14a7f9457c62..777ae17dd05f 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplicationLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/AsyncRepairApplicationLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/SyncRepairApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/SyncRepairApplication.java index 90652cdfaffc..ba57b2694dc8 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/SyncRepairApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/repairapplication/SyncRepairApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplication.java index 88df1f02840c..a418a300aef9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplicationLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplicationLRO.java index cdac5f65250f..7a9d4035bae5 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplicationLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/AsyncUpdateApplicationLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/SyncUpdateApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/SyncUpdateApplication.java index 3cefa6c1b091..df5e6d67c970 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/SyncUpdateApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applications/updateapplication/SyncUpdateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/createapplication/SyncCreateApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/createapplication/SyncCreateApplication.java index 6fa4e21d7b36..2f5e053dee80 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/createapplication/SyncCreateApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/createapplication/SyncCreateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/getapplication/SyncGetApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/getapplication/SyncGetApplication.java index 05bd235d4e1d..10cf46859e66 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/getapplication/SyncGetApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/applicationssettings/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetCredentialsProvider.java index b82e5ffec969..1979e514c579 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetEndpoint.java index 44a10172f61d..d8ba4ace559f 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateUseHttpJsonTransport.java index 35bf2811a008..3ab0a43755d7 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/AsyncCreateAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/AsyncCreateAuthorizedCertificate.java index c98200878a3d..67ab0b5ba783 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/AsyncCreateAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/AsyncCreateAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/SyncCreateAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/SyncCreateAuthorizedCertificate.java index 92e4b0895bd1..721e6e26e5d2 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/SyncCreateAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/createauthorizedcertificate/SyncCreateAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/AsyncDeleteAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/AsyncDeleteAuthorizedCertificate.java index 77b7edb87a91..de85a5229754 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/AsyncDeleteAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/AsyncDeleteAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/SyncDeleteAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/SyncDeleteAuthorizedCertificate.java index 519414ca6019..d9c433af094c 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/SyncDeleteAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/deleteauthorizedcertificate/SyncDeleteAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/AsyncGetAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/AsyncGetAuthorizedCertificate.java index 54508bc8f413..3a651c9c4662 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/AsyncGetAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/AsyncGetAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/SyncGetAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/SyncGetAuthorizedCertificate.java index b01550c43745..88e0859590d8 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/SyncGetAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/getauthorizedcertificate/SyncGetAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificates.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificates.java index 7bf72b473a47..3cfeac006f61 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificates.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificatesPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificatesPaged.java index 39e270ee1a0a..bc859bb7305b 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificatesPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/AsyncListAuthorizedCertificatesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/SyncListAuthorizedCertificates.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/SyncListAuthorizedCertificates.java index df775045658d..b9f5eb6d4f67 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/SyncListAuthorizedCertificates.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/listauthorizedcertificates/SyncListAuthorizedCertificates.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/AsyncUpdateAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/AsyncUpdateAuthorizedCertificate.java index c899ac7438da..4f936a9a8f1f 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/AsyncUpdateAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/AsyncUpdateAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/SyncUpdateAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/SyncUpdateAuthorizedCertificate.java index 7be5a46373b6..64294b810acc 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/SyncUpdateAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificates/updateauthorizedcertificate/SyncUpdateAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificatessettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificatessettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java index 7098600de953..0a8996891fc5 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificatessettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizedcertificatessettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetCredentialsProvider.java index a9b890391728..0fed0218829c 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetEndpoint.java index a0ed0905757f..a12cfbb03476 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateUseHttpJsonTransport.java index 76f209a22bca..81b979dd9f1b 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomains.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomains.java index 762d3257ae5a..7c8151e619e4 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomains.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomains.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomainsPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomainsPaged.java index bb14301bd8ac..00b5b67cadc1 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomainsPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/AsyncListAuthorizedDomainsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/SyncListAuthorizedDomains.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/SyncListAuthorizedDomains.java index 0fcbc83360e1..3da699ca8bef 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/SyncListAuthorizedDomains.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomains/listauthorizeddomains/SyncListAuthorizedDomains.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomainssettings/listauthorizeddomains/SyncListAuthorizedDomains.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomainssettings/listauthorizeddomains/SyncListAuthorizedDomains.java index f455b72394c6..6f42c5289cdf 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomainssettings/listauthorizeddomains/SyncListAuthorizedDomains.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/authorizeddomainssettings/listauthorizeddomains/SyncListAuthorizedDomains.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetCredentialsProvider.java index 335207b7db0d..4bc46b351480 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetEndpoint.java index 4738fa27b0bc..2689ed31c50e 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateUseHttpJsonTransport.java index 4a3f72572df2..33895c07355a 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMapping.java index 02fa9a09fe03..6e34baa3a592 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMappingLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMappingLRO.java index 53e0a33dd1f8..faad9323a7e5 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMappingLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/AsyncCreateDomainMappingLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/SyncCreateDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/SyncCreateDomainMapping.java index f7053ab44b12..76552a878d03 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/SyncCreateDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/createdomainmapping/SyncCreateDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMapping.java index 4be44cf0db61..0f446afc66df 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMappingLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMappingLRO.java index 894e1a81521a..fff779c21b56 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMappingLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/AsyncDeleteDomainMappingLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/SyncDeleteDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/SyncDeleteDomainMapping.java index 9cedafd98d5c..276db1756207 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/SyncDeleteDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/deletedomainmapping/SyncDeleteDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/AsyncGetDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/AsyncGetDomainMapping.java index cc242373667c..e2c35672f0a3 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/AsyncGetDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/AsyncGetDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/SyncGetDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/SyncGetDomainMapping.java index 0548cf61ddbb..f0681aca6487 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/SyncGetDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/getdomainmapping/SyncGetDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappings.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappings.java index 97f18b3d5244..561d7fcaa4f9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappings.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappingsPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappingsPaged.java index a3a72e55291c..4fc10859c03b 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappingsPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/AsyncListDomainMappingsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/SyncListDomainMappings.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/SyncListDomainMappings.java index be8cdcb0663d..599755e3c54b 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/SyncListDomainMappings.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/listdomainmappings/SyncListDomainMappings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMapping.java index 1ffa453e3d10..27881d167597 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMappingLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMappingLRO.java index 07733a66bfdb..e88f05cce5eb 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMappingLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/AsyncUpdateDomainMappingLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/SyncUpdateDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/SyncUpdateDomainMapping.java index bfd33664096f..73642dc7a101 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/SyncUpdateDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappings/updatedomainmapping/SyncUpdateDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/createdomainmapping/SyncCreateDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/createdomainmapping/SyncCreateDomainMapping.java index bb9966d14a6c..83eff4cc83d7 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/createdomainmapping/SyncCreateDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/createdomainmapping/SyncCreateDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/getdomainmapping/SyncGetDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/getdomainmapping/SyncGetDomainMapping.java index 9825c5640174..0dfdd8e0c82c 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/getdomainmapping/SyncGetDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/domainmappingssettings/getdomainmapping/SyncGetDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/AsyncBatchUpdateIngressRules.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/AsyncBatchUpdateIngressRules.java index 5e27d21ed439..08a77c22c091 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/AsyncBatchUpdateIngressRules.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/AsyncBatchUpdateIngressRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/SyncBatchUpdateIngressRules.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/SyncBatchUpdateIngressRules.java index ee1166845587..b4c6998d8334 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/SyncBatchUpdateIngressRules.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/batchupdateingressrules/SyncBatchUpdateIngressRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetCredentialsProvider.java index 6c5fd18d77bd..ecf58ec32949 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetEndpoint.java index 102e38f85937..af2230b420a9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateUseHttpJsonTransport.java index 96c21dff50d4..d3a5e537ebb0 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/AsyncCreateIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/AsyncCreateIngressRule.java index 70afaa6ab0f2..cf318b854d7a 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/AsyncCreateIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/AsyncCreateIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/SyncCreateIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/SyncCreateIngressRule.java index 937c310b3bed..49def8baaa09 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/SyncCreateIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/createingressrule/SyncCreateIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/AsyncDeleteIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/AsyncDeleteIngressRule.java index 1e7de3c2ece8..f310231d9b4d 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/AsyncDeleteIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/AsyncDeleteIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/SyncDeleteIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/SyncDeleteIngressRule.java index d2d9daccda0d..7ec90fd89168 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/SyncDeleteIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/deleteingressrule/SyncDeleteIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/AsyncGetIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/AsyncGetIngressRule.java index 85760206c69a..466133d640b1 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/AsyncGetIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/AsyncGetIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/SyncGetIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/SyncGetIngressRule.java index 2086014bc127..9ec25a02efbf 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/SyncGetIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/getingressrule/SyncGetIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRules.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRules.java index b4c71b83feb5..b88387de60c9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRules.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRulesPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRulesPaged.java index 1ba9a60fd3ac..1b54e6d78637 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRulesPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/AsyncListIngressRulesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/SyncListIngressRules.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/SyncListIngressRules.java index 55c073eaea39..fde4725b1028 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/SyncListIngressRules.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/listingressrules/SyncListIngressRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/AsyncUpdateIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/AsyncUpdateIngressRule.java index 1f8a970af257..336a0c257217 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/AsyncUpdateIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/AsyncUpdateIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/SyncUpdateIngressRule.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/SyncUpdateIngressRule.java index 8b1744e02a26..82bc0b425023 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/SyncUpdateIngressRule.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewall/updateingressrule/SyncUpdateIngressRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewallsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewallsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java index 5c8ddd1b1dfa..c2a259f6e9ea 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewallsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/firewallsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetCredentialsProvider.java index 90fc05223d5c..31a0cb482847 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetEndpoint.java index a11754d93cfb..40a7e5ea4e59 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateUseHttpJsonTransport.java index 9775141953e5..bfe46d3c4dc7 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstance.java index 4011e50f7cd3..7bf0c38cb736 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstanceLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstanceLRO.java index a7a40012041b..b4b79e14639b 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstanceLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/AsyncDebugInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/SyncDebugInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/SyncDebugInstance.java index 7f0cdf1aa5c3..6cb7da64746e 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/SyncDebugInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/debuginstance/SyncDebugInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstance.java index 45db10f7cbee..d92099123b03 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstanceLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstanceLRO.java index 163a4b96c630..f11283901e2c 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstanceLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/AsyncDeleteInstanceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/SyncDeleteInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/SyncDeleteInstance.java index c70026534867..fd8917659604 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/SyncDeleteInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/AsyncGetInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/AsyncGetInstance.java index 9a893589ab0e..bdbc6b3f7949 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/AsyncGetInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/AsyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/SyncGetInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/SyncGetInstance.java index 56b42d2c93e9..6b599b67dffb 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/SyncGetInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstances.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstances.java index 5509fd1f6223..2b2a40a55d22 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstances.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstancesPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstancesPaged.java index 218eef8740e6..d7f719abc635 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstancesPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/AsyncListInstancesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/SyncListInstances.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/SyncListInstances.java index eb1f635fdcda..8e1005da24e4 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/SyncListInstances.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instances/listinstances/SyncListInstances.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/deleteinstance/SyncDeleteInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/deleteinstance/SyncDeleteInstance.java index debaf6238fd9..72aca3a8a129 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/deleteinstance/SyncDeleteInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/getinstance/SyncGetInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/getinstance/SyncGetInstance.java index adaa5a9c8631..05c4c99d0947 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/getinstance/SyncGetInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/instancessettings/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetCredentialsProvider.java index 40d7d06b8ae9..81bafc072c54 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetEndpoint.java index 032208d99ccd..bb5710a582b9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateUseHttpJsonTransport.java index 6d8db7891ad2..d05c75d1f509 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteService.java index 8a8cd3064460..d662bd313452 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteServiceLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteServiceLRO.java index c3023f18717a..b6f05d47ac6a 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteServiceLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/AsyncDeleteServiceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/SyncDeleteService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/SyncDeleteService.java index ca5aac99e3c0..955c162a85f5 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/SyncDeleteService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/deleteservice/SyncDeleteService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/AsyncGetService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/AsyncGetService.java index 1ce99bb1d334..b77d599ac7dc 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/AsyncGetService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/AsyncGetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/SyncGetService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/SyncGetService.java index 52363e8548f5..bf5a11bb111d 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/SyncGetService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/getservice/SyncGetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServices.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServices.java index bd21611b74ba..d70bccbe6921 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServices.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServicesPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServicesPaged.java index d9f94be6a1ae..18a1aecc996c 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServicesPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/AsyncListServicesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/SyncListServices.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/SyncListServices.java index ed5bda9829d9..725a80746661 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/SyncListServices.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/listservices/SyncListServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateService.java index 865701a02465..6e3b3a558d57 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateServiceLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateServiceLRO.java index fb3fa847d578..a7139e127150 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateServiceLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/AsyncUpdateServiceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/SyncUpdateService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/SyncUpdateService.java index 72232d7ebab1..69c39c926387 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/SyncUpdateService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/services/updateservice/SyncUpdateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/getservice/SyncGetService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/getservice/SyncGetService.java index 1e83be7cac35..8892142d0cb8 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/getservice/SyncGetService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/getservice/SyncGetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/updateservice/SyncUpdateService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/updateservice/SyncUpdateService.java index 1a3aead00f01..44acdb3c1702 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/updateservice/SyncUpdateService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/servicessettings/updateservice/SyncUpdateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/createapplication/SyncCreateApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/createapplication/SyncCreateApplication.java index 1fdca4d4fd07..fa3f70d709f5 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/createapplication/SyncCreateApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/createapplication/SyncCreateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/getapplication/SyncGetApplication.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/getapplication/SyncGetApplication.java index 42a9dd2c860d..d3ad4ecaf828 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/getapplication/SyncGetApplication.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/applicationsstubsettings/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizedcertificatesstubsettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizedcertificatesstubsettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java index 23dbc2eb390c..ff262dcc7291 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizedcertificatesstubsettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizedcertificatesstubsettings/getauthorizedcertificate/SyncGetAuthorizedCertificate.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizeddomainsstubsettings/listauthorizeddomains/SyncListAuthorizedDomains.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizeddomainsstubsettings/listauthorizeddomains/SyncListAuthorizedDomains.java index 59c27e2a5124..34107ba144c4 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizeddomainsstubsettings/listauthorizeddomains/SyncListAuthorizedDomains.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/authorizeddomainsstubsettings/listauthorizeddomains/SyncListAuthorizedDomains.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/createdomainmapping/SyncCreateDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/createdomainmapping/SyncCreateDomainMapping.java index 1092af3ae9a6..d9be4658c01a 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/createdomainmapping/SyncCreateDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/createdomainmapping/SyncCreateDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/getdomainmapping/SyncGetDomainMapping.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/getdomainmapping/SyncGetDomainMapping.java index 672446aee4c4..84da2a498758 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/getdomainmapping/SyncGetDomainMapping.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/domainmappingsstubsettings/getdomainmapping/SyncGetDomainMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/firewallstubsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/firewallstubsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java index 8b7a517d5b7b..b9c25c49414e 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/firewallstubsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/firewallstubsettings/batchupdateingressrules/SyncBatchUpdateIngressRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/deleteinstance/SyncDeleteInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/deleteinstance/SyncDeleteInstance.java index f69c2278d880..0510d22beee0 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/deleteinstance/SyncDeleteInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/deleteinstance/SyncDeleteInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/getinstance/SyncGetInstance.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/getinstance/SyncGetInstance.java index e1edb3d0cb92..0a21853e8d49 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/getinstance/SyncGetInstance.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/instancesstubsettings/getinstance/SyncGetInstance.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/getservice/SyncGetService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/getservice/SyncGetService.java index 479c57ed9dce..06e662ad9be1 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/getservice/SyncGetService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/getservice/SyncGetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/updateservice/SyncUpdateService.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/updateservice/SyncUpdateService.java index 0063b140ab45..5182b2c2080b 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/updateservice/SyncUpdateService.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/servicesstubsettings/updateservice/SyncUpdateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/createversion/SyncCreateVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/createversion/SyncCreateVersion.java index f7fe087bc857..050e232c9561 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/createversion/SyncCreateVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/createversion/SyncCreateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/getversion/SyncGetVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/getversion/SyncGetVersion.java index f4bb7e63428b..a521aedff280 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/getversion/SyncGetVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/stub/versionsstubsettings/getversion/SyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetCredentialsProvider.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetCredentialsProvider.java index 8edadcbe7a37..14b3f048fddb 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetCredentialsProvider.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetEndpoint.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetEndpoint.java index ad340046adb2..659728ae0ca0 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetEndpoint.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateUseHttpJsonTransport.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateUseHttpJsonTransport.java index 6d95aa9335ee..90cedfb97102 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateUseHttpJsonTransport.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersion.java index efb6ad381fab..c6ed0eea80ae 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersionLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersionLRO.java index 6d8e9b7f4d1d..73356a807509 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersionLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/AsyncCreateVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/SyncCreateVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/SyncCreateVersion.java index 83dd40522e4f..699a3e929340 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/SyncCreateVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/createversion/SyncCreateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersion.java index 917c81f6f815..0d40ab7f7d64 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersionLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersionLRO.java index 50eee826b17d..eb0efcd40804 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersionLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/AsyncDeleteVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/SyncDeleteVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/SyncDeleteVersion.java index f2463be51e8b..2666dc8c72e9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/SyncDeleteVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/deleteversion/SyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/AsyncGetVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/AsyncGetVersion.java index abba1cc8687a..87bb79e33d49 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/AsyncGetVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/AsyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/SyncGetVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/SyncGetVersion.java index 4e7fc262ad95..f2cd59a4dce9 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/SyncGetVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/getversion/SyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersions.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersions.java index 3b4ea9edd04b..534e025c4ccf 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersions.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersionsPaged.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersionsPaged.java index 0586b20581cd..b08c2197dcd5 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersionsPaged.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/AsyncListVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/SyncListVersions.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/SyncListVersions.java index aeb78bde6db4..caf3cdd204bf 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/SyncListVersions.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/listversions/SyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersion.java index a43183d89323..af664efbd87a 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersionLRO.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersionLRO.java index 95c6f9c2cbb3..3e9df84c389a 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersionLRO.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/AsyncUpdateVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/SyncUpdateVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/SyncUpdateVersion.java index 2a004d9c2ce2..7f2d364d7129 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/SyncUpdateVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versions/updateversion/SyncUpdateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/createversion/SyncCreateVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/createversion/SyncCreateVersion.java index 021d2d27d0b1..9664e4b210f7 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/createversion/SyncCreateVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/createversion/SyncCreateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/getversion/SyncGetVersion.java b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/getversion/SyncGetVersion.java index 6e5eebf91c7d..fa86f9bd97f4 100644 --- a/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/getversion/SyncGetVersion.java +++ b/java-appengine-admin/samples/snippets/generated/com/google/appengine/v1/versionssettings/getversion/SyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/CHANGELOG.md b/java-apphub/CHANGELOG.md index 136ab8844bf6..44d1e394a9c3 100644 --- a/java-apphub/CHANGELOG.md +++ b/java-apphub/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.46.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.45.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.42.0 (2025-10-21) ### Dependencies diff --git a/java-apphub/README.md b/java-apphub/README.md index fd1687b2e261..511dc4147ebf 100644 --- a/java-apphub/README.md +++ b/java-apphub/README.md @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-apphub - 0.42.0 + 0.45.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-apphub:0.42.0' +implementation 'com.google.cloud:google-cloud-apphub:0.45.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-apphub" % "0.42.0" +libraryDependencies += "com.google.cloud" % "google-cloud-apphub" % "0.45.0" ``` ## Authentication @@ -175,32 +175,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/app-hub/docs/overview [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-apphub/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-apphub.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apphub/0.42.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-apphub/0.45.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-apphub/google-cloud-apphub-bom/pom.xml b/java-apphub/google-cloud-apphub-bom/pom.xml index 28280f2983a7..cc0c3d4a29ea 100644 --- a/java-apphub/google-cloud-apphub-bom/pom.xml +++ b/java-apphub/google-cloud-apphub-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-apphub-bom - 0.45.0-SNAPSHOT + 0.46.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.cloud google-cloud-apphub - 0.45.0-SNAPSHOT + 0.46.0 com.google.api.grpc grpc-google-cloud-apphub-v1 - 0.45.0-SNAPSHOT + 0.46.0 com.google.api.grpc proto-google-cloud-apphub-v1 - 0.45.0-SNAPSHOT + 0.46.0 diff --git a/java-apphub/google-cloud-apphub/pom.xml b/java-apphub/google-cloud-apphub/pom.xml index 7b358c4e985a..d6e2c59723b4 100644 --- a/java-apphub/google-cloud-apphub/pom.xml +++ b/java-apphub/google-cloud-apphub/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-apphub - 0.45.0-SNAPSHOT + 0.46.0 jar Google App Hub API App Hub API App Hub simplifies the process of building, running, and managing applications on Google Cloud. com.google.cloud google-cloud-apphub-parent - 0.45.0-SNAPSHOT + 0.46.0 google-cloud-apphub diff --git a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubClient.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubClient.java index b7e36a2d73d4..42b355511423 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubClient.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubSettings.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubSettings.java index 9bfa143969a9..f9b8aed9316e 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubSettings.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/AppHubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/package-info.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/package-info.java index a96d7ac72996..0f85c0eff6f6 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/package-info.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStub.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStub.java index c22a1dd67335..ee2749fb579f 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStub.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStubSettings.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStubSettings.java index 209d6fed2dc8..76e7ee903259 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStubSettings.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/AppHubStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -164,8 +164,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubCallableFactory.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubCallableFactory.java index 7d3f003f4281..9e2c2e471efb 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubCallableFactory.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubStub.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubStub.java index 80eb5ffb2953..32d41a571141 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubStub.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/GrpcAppHubStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubCallableFactory.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubCallableFactory.java index a1961a4577a0..9ad81edde7b1 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubCallableFactory.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubStub.java b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubStub.java index 22f591fe26a9..9af8106f6817 100644 --- a/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubStub.java +++ b/java-apphub/google-cloud-apphub/src/main/java/com/google/cloud/apphub/v1/stub/HttpJsonAppHubStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientHttpJsonTest.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientHttpJsonTest.java index 9e315e48172a..371063b2ab5e 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientHttpJsonTest.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientTest.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientTest.java index 5a14e82bcfbc..64aad08b934f 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientTest.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/AppHubClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHub.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHub.java index 95fa60d1161b..f59962d5c839 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHub.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHubImpl.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHubImpl.java index 924c3f1c932c..f37297616865 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHubImpl.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockAppHubImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicy.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicy.java index 370a34c35918..a3b7199f8ba0 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicy.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicyImpl.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicyImpl.java index c1fd02813ba2..50284b55cbfa 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicyImpl.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockIAMPolicyImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocations.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocations.java index b2ad6986eef0..5b584abbfe60 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocations.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocationsImpl.java b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocationsImpl.java index e05a354cc400..2085a2317409 100644 --- a/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocationsImpl.java +++ b/java-apphub/google-cloud-apphub/src/test/java/com/google/cloud/apphub/v1/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/grpc-google-cloud-apphub-v1/pom.xml b/java-apphub/grpc-google-cloud-apphub-v1/pom.xml index 88c7cecd14c1..259140c43d6b 100644 --- a/java-apphub/grpc-google-cloud-apphub-v1/pom.xml +++ b/java-apphub/grpc-google-cloud-apphub-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-apphub-v1 - 0.45.0-SNAPSHOT + 0.46.0 grpc-google-cloud-apphub-v1 GRPC library for google-cloud-apphub com.google.cloud google-cloud-apphub-parent - 0.45.0-SNAPSHOT + 0.46.0 diff --git a/java-apphub/grpc-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AppHubGrpc.java b/java-apphub/grpc-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AppHubGrpc.java index 6c038b57d870..a27d17350122 100644 --- a/java-apphub/grpc-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AppHubGrpc.java +++ b/java-apphub/grpc-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AppHubGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/pom.xml b/java-apphub/pom.xml index 09a04cfc01e3..cb4ce40a1523 100644 --- a/java-apphub/pom.xml +++ b/java-apphub/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-apphub-parent pom - 0.45.0-SNAPSHOT + 0.46.0 Google App Hub API Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.cloud google-cloud-apphub - 0.45.0-SNAPSHOT + 0.46.0 com.google.api.grpc grpc-google-cloud-apphub-v1 - 0.45.0-SNAPSHOT + 0.46.0 com.google.api.grpc proto-google-cloud-apphub-v1 - 0.45.0-SNAPSHOT + 0.46.0 diff --git a/java-apphub/proto-google-cloud-apphub-v1/pom.xml b/java-apphub/proto-google-cloud-apphub-v1/pom.xml index aad3a934792c..9ad5f48a1b90 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/pom.xml +++ b/java-apphub/proto-google-cloud-apphub-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-apphub-v1 - 0.45.0-SNAPSHOT + 0.46.0 proto-google-cloud-apphub-v1 Proto library for google-cloud-apphub com.google.cloud google-cloud-apphub-parent - 0.45.0-SNAPSHOT + 0.46.0 diff --git a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApphubServiceProto.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApphubServiceProto.java index 51fe6d833d5f..2d3abb92d826 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApphubServiceProto.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApphubServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Application.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Application.java index eac701e6756d..9a3fb5ac6d09 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Application.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationName.java index f3a61881a6fd..e15a5219e718 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationOrBuilder.java index cd02dc8f5fb8..ff9d9a0c9e31 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationProto.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationProto.java index 2ea6ae419047..0047aa618e37 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationProto.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ApplicationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Attributes.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Attributes.java index d50f8fc13e7d..a32c740027c4 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Attributes.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Attributes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesOrBuilder.java index 4a8827c83f0e..e83dc7ca4940 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesProto.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesProto.java index 3c917165629c..8bbac5eabba4 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesProto.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/AttributesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfo.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfo.java index a373d136fb24..b20d93e2c74a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfo.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfoOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfoOrBuilder.java index 23490152f8c2..44313265707a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfoOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ContactInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequest.java index bba141f2b30e..097876f927c0 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequestOrBuilder.java index aa1ecf9cad09..bc318857bc29 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequest.java index 0431f4eafa1b..275a7d519e98 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequestOrBuilder.java index f1dbb2c2fc8d..5d352c2785b4 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequest.java index 1215bc098230..bfd2828d088e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequestOrBuilder.java index 535d102511b7..8099f57cadc1 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequest.java index 41ff2a19841b..eb4aa9422626 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequestOrBuilder.java index 26a99503b540..217033165f6e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CreateWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Criticality.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Criticality.java index c0caaea39d16..ab226ddf1670 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Criticality.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Criticality.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CriticalityOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CriticalityOrBuilder.java index bcdd32ed08ad..9a81c921599e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CriticalityOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/CriticalityOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequest.java index f619cbadd4cc..787fde6708d9 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequestOrBuilder.java index 3da54ea527eb..f0790d86ab83 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequest.java index 7ab4646112f4..d0f0366396fb 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequestOrBuilder.java index ff30a9c7f7c3..537f215b4d2e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequest.java index 87f5da488a11..b68bd68a951a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequestOrBuilder.java index 1676669c122a..599b8fce0ca3 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequest.java index 1b61cdd2e7e5..c9dacd4ba09b 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequestOrBuilder.java index 021927a644a8..1202a5d92a36 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DeleteWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequest.java index f6a80fb0fa08..771acffddc33 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequestOrBuilder.java index e390e164ebed..504a03103edb 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponse.java index 07e5cab8d1c8..0d85d58a12f1 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponseOrBuilder.java index aec96c62d983..d0576c72ca4c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DetachServiceProjectAttachmentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredService.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredService.java index 05d5cdb93a5c..e4a17a55f136 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredService.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceName.java index 345c62893132..2c3e5a702504 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceOrBuilder.java index 1116022b9628..e86c6e89ea2d 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredServiceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkload.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkload.java index dda13c8f90be..128200e323ac 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkload.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadName.java index eaa4862f1a3b..06ad048716ca 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadOrBuilder.java index 250e10b8aec3..6475f2a6348a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/DiscoveredWorkloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Environment.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Environment.java index fd288e499cc7..060a08db0469 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Environment.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Environment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/EnvironmentOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/EnvironmentOrBuilder.java index 7d8cab18daa3..53c16a503f47 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/EnvironmentOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/EnvironmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequest.java index 20aa8cf81993..c19f946f163d 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequestOrBuilder.java index f4e3693c3c83..d76fdc06e11c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequest.java index 40c76924b685..614e1e8ee19e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequestOrBuilder.java index 67184e6a2003..92c4e1104f79 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequest.java index 1c43a864e6b6..8eb6457e312c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequestOrBuilder.java index 4ba632ae57e4..55942e954d1e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetDiscoveredWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequest.java index abd35402ef8d..9a85e11906c5 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequestOrBuilder.java index c5244162c42e..f497a56fa1bc 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequest.java index 84c3f9e71cc7..4606644ba313 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequestOrBuilder.java index d924fcce624c..f06b72dabbb0 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequest.java index 2aafdc507e24..fdb27c80961f 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequestOrBuilder.java index 8ee0cd3ff708..615c9f141c68 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/GetWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequest.java index a5672d784715..4d5686747c7c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequestOrBuilder.java index af8f98942466..18ad434f3e1a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponse.java index cc5d48bd42aa..b1895358124e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponseOrBuilder.java index 51cdfe8650a1..86c2c2f21f51 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListApplicationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequest.java index c41322e3226a..7fe5921cb319 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequestOrBuilder.java index 9d2a83526658..7b992c470f04 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponse.java index 8a1ef6d3eb5b..23fcfdb2ee1f 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponseOrBuilder.java index 970245740d1e..041757e60919 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredServicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequest.java index 0b73611f7086..921f031103f6 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequestOrBuilder.java index 580c3bded7b7..77abb5c83228 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponse.java index 3746454230dc..9ad2d60a9e29 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponseOrBuilder.java index e4531ca49408..d074596466b3 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListDiscoveredWorkloadsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequest.java index f743e5a7a195..b671f32d0c0d 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequestOrBuilder.java index bb1d82303b74..dc8c9b0b7d64 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponse.java index ce6455ed9584..5a6d1d69379e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponseOrBuilder.java index 1fc65465448f..87d50aec40b8 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServiceProjectAttachmentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequest.java index c0656855a188..c24bf8a4858e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequestOrBuilder.java index 4df7494248c1..da4e068b70a4 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponse.java index d088745a548d..230f32f82620 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponseOrBuilder.java index 3ea18484d925..e9a807c72266 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListServicesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequest.java index 6265f3e69bb8..4ea3c6530b26 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequestOrBuilder.java index e6f60f816d12..b190cb1fd096 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponse.java index 2e4703afeb04..a5dd5d931023 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponseOrBuilder.java index 11be7c9eabd2..416adc9349b6 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ListWorkloadsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LocationName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LocationName.java index 66f39cef79b5..0263c73a2a60 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LocationName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequest.java index e3812c7bd0d7..0df5f47ad321 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequestOrBuilder.java index 21e5736b4e71..288168c24688 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponse.java index dbf56234a2c0..274e5c555fc0 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponseOrBuilder.java index 1535c63dc38d..fcf89407223a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredServiceResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequest.java index c17b0c56a217..c3557d57b165 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequestOrBuilder.java index f183ce30601f..f2a1a5910762 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponse.java index bfd9f1a76899..57cd44e5fb99 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponseOrBuilder.java index a9a661882aeb..6fb5a41670a0 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupDiscoveredWorkloadResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequest.java index 0a37bb4ee33c..f3d4a7c56d68 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequestOrBuilder.java index 5ad4358d3b6e..ae2c35911b2a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponse.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponse.java index 6c4698103e65..ff7323ed39f7 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponse.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponseOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponseOrBuilder.java index dd097c387149..d8c67055b833 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponseOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/LookupServiceProjectAttachmentResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadata.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadata.java index 262b67e12e05..6d944363aaa0 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadata.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadataOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadataOrBuilder.java index bfcea74e53b8..a4a5ee9bd183 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadataOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Scope.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Scope.java index 06f722507e29..b714baedf29a 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Scope.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Scope.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ScopeOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ScopeOrBuilder.java index d89058dfe21b..38c6e4c31c42 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ScopeOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ScopeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Service.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Service.java index 50844dfea3a6..704da0fe8b91 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Service.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Service.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceName.java index a5baaeaf6d35..66f943ee6582 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceOrBuilder.java index 6d8aa3f03b8e..c649675a4bb1 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachment.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachment.java index 191c621fcf11..14f168f9302d 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachment.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentName.java index eb55950a22c5..8818c2d6285c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentOrBuilder.java index 6df9220df500..f745870d2019 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentProto.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentProto.java index 9610e07c4df2..a1e9022251a5 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentProto.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProjectAttachmentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProperties.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProperties.java index 40f5aa170169..1092a19fc2e0 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProperties.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServicePropertiesOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServicePropertiesOrBuilder.java index cb8c0694b289..b6d65629fc0d 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServicePropertiesOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServicePropertiesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProto.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProto.java index dc2d7db7e77d..022482017b3c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProto.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReference.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReference.java index 22c9060f2ba5..620c5ba6927e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReference.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReferenceOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReferenceOrBuilder.java index 4287649091ab..b057d6cc9706 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReferenceOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/ServiceReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequest.java index f285b1378088..dff16bc28fd1 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequestOrBuilder.java index 94a633fe914b..b3c4ec66bce9 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateApplicationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequest.java index 0eb571692817..235fb2f43f8e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequestOrBuilder.java index 5659351f360a..70d4ee232474 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateServiceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequest.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequest.java index edd0169a3205..f789070fbcc8 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequest.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequestOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequestOrBuilder.java index 01ce99afc42c..68aba9ce7b2c 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequestOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/UpdateWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Workload.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Workload.java index f625bdb62874..fda681d7df17 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Workload.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/Workload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadName.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadName.java index 7001744c8c2f..59646ff28b62 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadName.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadOrBuilder.java index ca5ff5d1d511..36f2cfd84432 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProperties.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProperties.java index 09c876c062b2..d4efe4309c7e 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProperties.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadPropertiesOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadPropertiesOrBuilder.java index 74d7a4ad0885..28059425ea21 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadPropertiesOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadPropertiesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProto.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProto.java index dacc40dbfe57..ffb7f502288b 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProto.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReference.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReference.java index 63e9dfa15509..0c72e2143cc3 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReference.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReferenceOrBuilder.java b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReferenceOrBuilder.java index 8fc60c3e0735..dc4b20567239 100644 --- a/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReferenceOrBuilder.java +++ b/java-apphub/proto-google-cloud-apphub-v1/src/main/java/com/google/cloud/apphub/v1/WorkloadReferenceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetCredentialsProvider.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetCredentialsProvider.java index c74e5f127a74..f0b94922a14a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetCredentialsProvider.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetEndpoint.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetEndpoint.java index 4ed93947b2ac..d92f57a09c5a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetEndpoint.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateUseHttpJsonTransport.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateUseHttpJsonTransport.java index 205856a247d9..6b77ae366e20 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateUseHttpJsonTransport.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplication.java index 1c7719cb6843..119d709ea678 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplicationLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplicationLRO.java index 827717b3ff39..413c52f5f6a9 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplicationLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/AsyncCreateApplicationLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplication.java index 880783739deb..04c7ecbd84c9 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationLocationnameApplicationString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationLocationnameApplicationString.java index 0065017406bb..600a38aa27ec 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationLocationnameApplicationString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationLocationnameApplicationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationStringApplicationString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationStringApplicationString.java index 5f2e4c575fce..422a8f29ed81 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationStringApplicationString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createapplication/SyncCreateApplicationStringApplicationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateService.java index 2892319970f4..71ca03ac09c8 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateServiceLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateServiceLRO.java index 19ef23ba8aca..d15f53344e0d 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateServiceLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/AsyncCreateServiceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateService.java index 5575d24033ba..540af6552804 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceApplicationnameServiceString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceApplicationnameServiceString.java index 1b728e8a5dd3..717c348a378c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceApplicationnameServiceString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceApplicationnameServiceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceStringServiceString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceStringServiceString.java index 65492167eae7..16773234bbc5 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceStringServiceString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createservice/SyncCreateServiceStringServiceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachment.java index c0d295303f68..29924857d538 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachmentLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachmentLRO.java index 60c2dedc22ee..5d614bc5023a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachmentLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/AsyncCreateServiceProjectAttachmentLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java index 41434afcf9e4..ef42d35d96a6 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentLocationnameServiceprojectattachmentString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentLocationnameServiceprojectattachmentString.java index d55aa9993caa..37445767112c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentLocationnameServiceprojectattachmentString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentLocationnameServiceprojectattachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentStringServiceprojectattachmentString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentStringServiceprojectattachmentString.java index 4ca90066d22a..f699a17347b8 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentStringServiceprojectattachmentString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createserviceprojectattachment/SyncCreateServiceProjectAttachmentStringServiceprojectattachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkload.java index 5529f23440a5..142936e5b76e 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkloadLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkloadLRO.java index 832384681db7..8b3c0cd85e9e 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkloadLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/AsyncCreateWorkloadLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkload.java index 57f940374e23..f1894dd02574 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadApplicationnameWorkloadString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadApplicationnameWorkloadString.java index 22562bd3feb5..312aac668447 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadApplicationnameWorkloadString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadApplicationnameWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadStringWorkloadString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadStringWorkloadString.java index 461e0273485a..7ebb7a349ae7 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadStringWorkloadString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/createworkload/SyncCreateWorkloadStringWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplication.java index 19b22a573989..7fb846773b37 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplicationLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplicationLRO.java index 96f1314bdbb8..ebaecdadcc5a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplicationLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/AsyncDeleteApplicationLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplication.java index 94b74c0147ef..4dfc768abf9b 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationApplicationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationApplicationname.java index 86305343db73..cbf7666de616 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationApplicationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationApplicationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationString.java index 941eeff0adb1..1b449920833d 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteapplication/SyncDeleteApplicationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteService.java index 7cc4de29144f..486e94510121 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteServiceLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteServiceLRO.java index 3938ae36c358..331c084f0813 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteServiceLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/AsyncDeleteServiceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteService.java index 2329933fbfa0..45a8cea3e15c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceServicename.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceServicename.java index b3ff551ca51b..31f0eb242444 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceServicename.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceServicename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceString.java index 63047feb04dc..4ed46702b6c6 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteservice/SyncDeleteServiceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachment.java index 530724213f6c..9a84c2887dbd 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachmentLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachmentLRO.java index 440368f1d441..fb16891bf8aa 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachmentLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/AsyncDeleteServiceProjectAttachmentLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachment.java index 5dfcf36c16f0..abfdbabac604 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentServiceprojectattachmentname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentServiceprojectattachmentname.java index 71e5ea3f36fb..5caeb29b7815 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentServiceprojectattachmentname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentServiceprojectattachmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentString.java index 1adb1ed38819..169cb445f403 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteserviceprojectattachment/SyncDeleteServiceProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkload.java index d750448b9ffb..c116443f7d04 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkloadLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkloadLRO.java index 5309ad058300..d21fab54bb78 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkloadLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/AsyncDeleteWorkloadLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkload.java index fece958b79f4..81d7bfdb8da5 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadString.java index cde40fb7971d..353bf4af40dd 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadWorkloadname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadWorkloadname.java index 526ccc5bff18..8dd4ed50c41a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadWorkloadname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/deleteworkload/SyncDeleteWorkloadWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/AsyncDetachServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/AsyncDetachServiceProjectAttachment.java index ec0af516d01e..f4746c043dbe 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/AsyncDetachServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/AsyncDetachServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachment.java index ba205c6a1235..be7e49274046 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentLocationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentLocationname.java index 233142cc15bc..55a110dc7492 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentLocationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentString.java index 1d7717dcd6eb..505eac69cf5e 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/detachserviceprojectattachment/SyncDetachServiceProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/AsyncGetApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/AsyncGetApplication.java index e2161bb22b1d..54a403fee84a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/AsyncGetApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/AsyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplication.java index 10e7494de272..531a7d0744d1 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationApplicationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationApplicationname.java index 9af3da628c91..85cf50bcae40 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationApplicationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationApplicationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationString.java index b76eb7540dd3..3c5a04687cbd 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getapplication/SyncGetApplicationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/AsyncGetDiscoveredService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/AsyncGetDiscoveredService.java index 211c71f094fa..c548ee596461 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/AsyncGetDiscoveredService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/AsyncGetDiscoveredService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredService.java index a73cd50699c4..f66865d513c8 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceDiscoveredservicename.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceDiscoveredservicename.java index cd61466149cb..cf9a2fa9ce68 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceDiscoveredservicename.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceDiscoveredservicename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceString.java index f03bed05623d..b099d63da3ad 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredservice/SyncGetDiscoveredServiceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/AsyncGetDiscoveredWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/AsyncGetDiscoveredWorkload.java index 3c838edde845..b4a2f1fda376 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/AsyncGetDiscoveredWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/AsyncGetDiscoveredWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkload.java index 094773512934..f4d493120887 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadDiscoveredworkloadname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadDiscoveredworkloadname.java index 4952e35812ff..cfd0bde8949d 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadDiscoveredworkloadname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadDiscoveredworkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadString.java index 58e30cfea7c6..6f94e9fee0d5 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getdiscoveredworkload/SyncGetDiscoveredWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/AsyncGetIamPolicy.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/AsyncGetIamPolicy.java index 803fc690aa6e..76c91378f0ba 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/AsyncGetIamPolicy.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/SyncGetIamPolicy.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/SyncGetIamPolicy.java index 90391dfc219d..8f9df11c87f4 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/SyncGetIamPolicy.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/AsyncGetLocation.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/AsyncGetLocation.java index efdb55bc97b8..91236b793505 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/AsyncGetLocation.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/SyncGetLocation.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/SyncGetLocation.java index c442dd6f0ac4..1972fa04e48b 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/SyncGetLocation.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/AsyncGetService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/AsyncGetService.java index 2981518235bf..628d8e3f508a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/AsyncGetService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/AsyncGetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetService.java index b7a6fe1decc1..df1cb04e6b38 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceServicename.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceServicename.java index c463c341d7e9..b521129cd5ea 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceServicename.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceServicename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceString.java index b2521a9b7c53..5702d25d1507 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getservice/SyncGetServiceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/AsyncGetServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/AsyncGetServiceProjectAttachment.java index 6a01512694bf..aa80db9a34b4 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/AsyncGetServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/AsyncGetServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachment.java index 43078f0a1471..5a7a617a593a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentServiceprojectattachmentname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentServiceprojectattachmentname.java index d28ef10d55ef..afac34a1049a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentServiceprojectattachmentname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentServiceprojectattachmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentString.java index 00afffd9bea3..a828ee45221a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getserviceprojectattachment/SyncGetServiceProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/AsyncGetWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/AsyncGetWorkload.java index cf387ef7404d..ce1fd7e49980 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/AsyncGetWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/AsyncGetWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkload.java index 9ff1ebf6df9d..30eea9838755 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadString.java index 14059effb758..528538855c53 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadWorkloadname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadWorkloadname.java index a6534ec46245..0e9adc56090f 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadWorkloadname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/getworkload/SyncGetWorkloadWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplications.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplications.java index 4fb35eda8877..fad2f3983aee 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplications.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplicationsPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplicationsPaged.java index 74469b934e5b..46b0db31d643 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplicationsPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/AsyncListApplicationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplications.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplications.java index 4a6a1e05ba3e..d379ad9df771 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplications.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplications.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsLocationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsLocationname.java index df6c38e2ab53..248a1ef35744 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsLocationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsString.java index dbdb533cf434..a9fe97a635b1 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listapplications/SyncListApplicationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServices.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServices.java index 184a7904a638..85d74b59daf6 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServices.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServicesPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServicesPaged.java index 60aa5e2accf0..e35a1fae462a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServicesPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/AsyncListDiscoveredServicesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServices.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServices.java index 47ec38fc27a3..7ae37f2f1807 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServices.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesLocationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesLocationname.java index 8a621a1193b7..a2ee607c9a6d 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesLocationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesString.java index e63dda7391cc..8a439a9dd420 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredservices/SyncListDiscoveredServicesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloads.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloads.java index 6d3f7547e4cd..1ee951e6e816 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloads.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloadsPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloadsPaged.java index 44d4af0b36f7..8ff814fe0fe9 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloadsPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/AsyncListDiscoveredWorkloadsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloads.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloads.java index 87b33fcc1b16..2f6158d5b016 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloads.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsLocationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsLocationname.java index 4d27d87e4a90..1edfe6b70b44 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsLocationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsString.java index fb2275e2a6db..99c20ee64d20 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listdiscoveredworkloads/SyncListDiscoveredWorkloadsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocations.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocations.java index 5cdaff753bf5..8eec6370688f 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocations.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocationsPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocationsPaged.java index fc79d8ac38c6..839d8c252e25 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocationsPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/SyncListLocations.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/SyncListLocations.java index 3622a6b21fe7..fea7b17b7933 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/SyncListLocations.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachments.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachments.java index e73651eb8640..db94fcff6666 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachments.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachmentsPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachmentsPaged.java index 406d6121b97a..541c0ed43afd 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachmentsPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/AsyncListServiceProjectAttachmentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachments.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachments.java index f996023c57ac..9467af9b0ffc 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachments.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsLocationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsLocationname.java index fa7df6c0bf88..859700c7dd80 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsLocationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsString.java index e48e45782551..43daa2498a53 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listserviceprojectattachments/SyncListServiceProjectAttachmentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServices.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServices.java index d714e80793e6..12943e997cf3 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServices.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServicesPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServicesPaged.java index 5cec0827eb18..6da2943df8d8 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServicesPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/AsyncListServicesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServices.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServices.java index f607d46b6347..77917cfe0b31 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServices.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServices.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesApplicationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesApplicationname.java index 4ae473ff4c4d..7e158540b8cd 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesApplicationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesApplicationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesString.java index 13f903e359c9..a36987c73355 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listservices/SyncListServicesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloads.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloads.java index 6ceeb176530d..dc9d12949bbe 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloads.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloadsPaged.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloadsPaged.java index 7496aa948a88..74981ce62d48 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloadsPaged.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/AsyncListWorkloadsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloads.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloads.java index 4b5af173cb96..409921e37fd5 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloads.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsApplicationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsApplicationname.java index b5b685a23d1c..41e0b0e4564e 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsApplicationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsApplicationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsString.java index 13dd406a4d52..2560bb03dafd 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/listworkloads/SyncListWorkloadsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/AsyncLookupDiscoveredService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/AsyncLookupDiscoveredService.java index 241f83ea64b0..736c29b1986a 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/AsyncLookupDiscoveredService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/AsyncLookupDiscoveredService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredService.java index e7a152ff3f59..b2a42d7b6e8d 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceLocationnameString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceLocationnameString.java index 6cebed6def28..c182f36e7468 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceLocationnameString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceStringString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceStringString.java index 0d85ea213445..ed9fc7702311 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceStringString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredservice/SyncLookupDiscoveredServiceStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/AsyncLookupDiscoveredWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/AsyncLookupDiscoveredWorkload.java index 778551d39500..ae2d11eae3ac 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/AsyncLookupDiscoveredWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/AsyncLookupDiscoveredWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkload.java index a2fa265df25d..e98e7739f4c2 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadLocationnameString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadLocationnameString.java index ccf67ece1453..d3e15595483d 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadLocationnameString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadLocationnameString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadStringString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadStringString.java index 1bdb3c141243..73a0a3da9f5c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadStringString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupdiscoveredworkload/SyncLookupDiscoveredWorkloadStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/AsyncLookupServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/AsyncLookupServiceProjectAttachment.java index 30b17aee040c..ea2ac303d641 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/AsyncLookupServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/AsyncLookupServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java index 1ddd22b6bfed..a6a651ba5e92 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentLocationname.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentLocationname.java index 60a730d204fb..bdb51b1e300c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentLocationname.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentString.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentString.java index d844066104a4..efe61062196c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentString.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/lookupserviceprojectattachment/SyncLookupServiceProjectAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/AsyncSetIamPolicy.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/AsyncSetIamPolicy.java index f75f4953f345..241dd8d0c8e9 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/AsyncSetIamPolicy.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/SyncSetIamPolicy.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/SyncSetIamPolicy.java index 958c6d63ef2b..47b2b583b294 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/SyncSetIamPolicy.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/AsyncTestIamPermissions.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/AsyncTestIamPermissions.java index 3b3d7538c9c1..ad4b9adc3230 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/AsyncTestIamPermissions.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/SyncTestIamPermissions.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/SyncTestIamPermissions.java index 85d8ef3ef50e..ed8fc255b85c 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/SyncTestIamPermissions.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplication.java index 35b9f5643329..160fd637aea3 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplicationLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplicationLRO.java index e4fdac2e3fcd..ccf97a7f2716 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplicationLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/AsyncUpdateApplicationLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplication.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplication.java index 2d5b53079c11..1533bbcd5964 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplication.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplicationApplicationFieldmask.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplicationApplicationFieldmask.java index a631d5048e21..c5afde6d3150 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplicationApplicationFieldmask.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateapplication/SyncUpdateApplicationApplicationFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateService.java index 668ee9e01713..03af2bfe373e 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateServiceLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateServiceLRO.java index 7a1143cf3ef7..8826abd9d311 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateServiceLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/AsyncUpdateServiceLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateService.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateService.java index cbd8b51615ed..fbb4c4b3b3ef 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateService.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateServiceServiceFieldmask.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateServiceServiceFieldmask.java index d44db5c2ed8e..7d2a9bdd0e38 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateServiceServiceFieldmask.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateservice/SyncUpdateServiceServiceFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkload.java index 2476894c17d3..ab5f404ab829 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkloadLRO.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkloadLRO.java index 501fd63a6a6c..90fcdb9d38e2 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkloadLRO.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/AsyncUpdateWorkloadLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkload.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkload.java index 817196c6f328..e19d31e0efb0 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkload.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java index 637bd61089e0..17b2a83f69c6 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphub/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java index 2352c872ba9b..521f331a3846 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java index c8ae89fce3e8..2cc6ab748813 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/apphubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java index a79251649ecc..6026f23280dc 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/createserviceprojectattachment/SyncCreateServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java index db48a9419edb..a9a3135ff7a3 100644 --- a/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java +++ b/java-apphub/samples/snippets/generated/com/google/cloud/apphub/v1/stub/apphubstubsettings/lookupserviceprojectattachment/SyncLookupServiceProjectAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/CHANGELOG.md b/java-area120-tables/CHANGELOG.md index 646b6e446d79..9b9a1482b4c2 100644 --- a/java-area120-tables/CHANGELOG.md +++ b/java-area120-tables/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.86.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 0.85.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 0.82.0 (2025-10-21) ### Dependencies diff --git a/java-area120-tables/README.md b/java-area120-tables/README.md index 633fc753f297..62c24bc0ff07 100644 --- a/java-area120-tables/README.md +++ b/java-area120-tables/README.md @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.area120 google-area120-tables - 0.82.0 + 0.85.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.area120:google-area120-tables:0.82.0' +implementation 'com.google.area120:google-area120-tables:0.85.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.area120" % "google-area120-tables" % "0.82.0" +libraryDependencies += "com.google.area120" % "google-area120-tables" % "0.85.0" ``` ## Authentication @@ -175,32 +175,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://area120.google.com/ [javadocs]: https://cloud.google.com/java/docs/reference/google-area120-tables/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-preview-yellow [maven-version-image]: https://img.shields.io/maven-central/v/com.google.area120/google-area120-tables.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.area120/google-area120-tables/0.82.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.area120/google-area120-tables/0.85.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-area120-tables/google-area120-tables-bom/pom.xml b/java-area120-tables/google-area120-tables-bom/pom.xml index 6b1275c2f1c5..1423ed0aee74 100644 --- a/java-area120-tables/google-area120-tables-bom/pom.xml +++ b/java-area120-tables/google-area120-tables-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.area120 google-area120-tables-bom - 0.85.0-SNAPSHOT + 0.86.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,17 +27,17 @@ com.google.area120 google-area120-tables - 0.85.0-SNAPSHOT + 0.86.0 com.google.api.grpc grpc-google-area120-tables-v1alpha1 - 0.85.0-SNAPSHOT + 0.86.0 com.google.api.grpc proto-google-area120-tables-v1alpha1 - 0.85.0-SNAPSHOT + 0.86.0 diff --git a/java-area120-tables/google-area120-tables/pom.xml b/java-area120-tables/google-area120-tables/pom.xml index e9cf960be276..046168c9cdc0 100644 --- a/java-area120-tables/google-area120-tables/pom.xml +++ b/java-area120-tables/google-area120-tables/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.area120 google-area120-tables - 0.85.0-SNAPSHOT + 0.86.0 jar Google Area 120 Tables provides programmatic methods to the Area 120 Tables API. com.google.area120 google-area120-tables-parent - 0.85.0-SNAPSHOT + 0.86.0 google-area120-tables diff --git a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceClient.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceClient.java index c21a54e5b699..2544b056bb98 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceClient.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceSettings.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceSettings.java index fae09e7bfad1..e460ebf047ae 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceSettings.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/TablesServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,8 +104,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/package-info.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/package-info.java index 24dc09f97601..3c68020a70c4 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/package-info.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceCallableFactory.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceCallableFactory.java index b4f465853cbe..a3a6935ec34d 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceCallableFactory.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceStub.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceStub.java index de41ca61b3aa..53b6e171570c 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceStub.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/GrpcTablesServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceCallableFactory.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceCallableFactory.java index 6e1cace3966f..151a18ea63c4 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceCallableFactory.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceStub.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceStub.java index 9634d0a7053c..9edef3e5fa95 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceStub.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/HttpJsonTablesServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStub.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStub.java index 41f2e003c955..5f080708ae55 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStub.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStubSettings.java b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStubSettings.java index 82f592563da3..b8cd5417a257 100644 --- a/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStubSettings.java +++ b/java-area120-tables/google-area120-tables/src/main/java/com/google/area120/tables/v1alpha/stub/TablesServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -123,8 +123,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesService.java b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesService.java index b6ac7c9b10ff..61ea5327678e 100644 --- a/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesService.java +++ b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesServiceImpl.java b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesServiceImpl.java index 9a4858e56334..8bb1b9060085 100644 --- a/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesServiceImpl.java +++ b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/MockTablesServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientHttpJsonTest.java b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientHttpJsonTest.java index 81445fb3944c..cc5db353ccaa 100644 --- a/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientHttpJsonTest.java +++ b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientTest.java b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientTest.java index 677ce757a06a..ef189c621231 100644 --- a/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientTest.java +++ b/java-area120-tables/google-area120-tables/src/test/java/com/google/area120/tables/v1alpha/TablesServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/grpc-google-area120-tables-v1alpha1/pom.xml b/java-area120-tables/grpc-google-area120-tables-v1alpha1/pom.xml index 4acc3d6bc333..d1738518b57d 100644 --- a/java-area120-tables/grpc-google-area120-tables-v1alpha1/pom.xml +++ b/java-area120-tables/grpc-google-area120-tables-v1alpha1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-area120-tables-v1alpha1 - 0.85.0-SNAPSHOT + 0.86.0 grpc-google-area120-tables-v1alpha1 GRPC library for google-area120-tables com.google.area120 google-area120-tables-parent - 0.85.0-SNAPSHOT + 0.86.0 diff --git a/java-area120-tables/grpc-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesServiceGrpc.java b/java-area120-tables/grpc-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesServiceGrpc.java index 703968c76ee6..e31807264b8e 100644 --- a/java-area120-tables/grpc-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesServiceGrpc.java +++ b/java-area120-tables/grpc-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/pom.xml b/java-area120-tables/pom.xml index 984eee838ff7..72524eb41a2a 100644 --- a/java-area120-tables/pom.xml +++ b/java-area120-tables/pom.xml @@ -4,7 +4,7 @@ com.google.area120 google-area120-tables-parent pom - 0.85.0-SNAPSHOT + 0.86.0 Google Area 120 Tables Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,17 +29,17 @@ com.google.area120 google-area120-tables - 0.85.0-SNAPSHOT + 0.86.0 com.google.api.grpc proto-google-area120-tables-v1alpha1 - 0.85.0-SNAPSHOT + 0.86.0 com.google.api.grpc grpc-google-area120-tables-v1alpha1 - 0.85.0-SNAPSHOT + 0.86.0 diff --git a/java-area120-tables/proto-google-area120-tables-v1alpha1/pom.xml b/java-area120-tables/proto-google-area120-tables-v1alpha1/pom.xml index 8df4f212bb9e..b94bb8baf3f0 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/pom.xml +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-area120-tables-v1alpha1 - 0.85.0-SNAPSHOT + 0.86.0 proto-google-area120-tables-v1alpha1 Proto library for google-area120-tables com.google.area120 google-area120-tables-parent - 0.85.0-SNAPSHOT + 0.86.0 diff --git a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequest.java index 4aa79aa7fbdd..e6e7d0b41d92 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequestOrBuilder.java index ecdf05a9a241..83c722ee7ce7 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponse.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponse.java index 92876ee75d73..daef06c4e15b 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponse.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponseOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponseOrBuilder.java index f4522cc7ffdc..3fe83f392905 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponseOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchCreateRowsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequest.java index 4ca314fe7bf4..b6dc32e0725c 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequestOrBuilder.java index 5ebf2f370154..30c264e24ff2 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchDeleteRowsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequest.java index 7e1afa159c87..2f8f4e2266f5 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequestOrBuilder.java index 6d912b8cec3d..a239a3aa8a31 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponse.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponse.java index 791112dbf06a..4c6ad32033d4 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponse.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponseOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponseOrBuilder.java index b90dc0c84e3d..99d1fb953462 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponseOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/BatchUpdateRowsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescription.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescription.java index 34f0005fe742..b74c6ea18556 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescription.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescription.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescriptionOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescriptionOrBuilder.java index 88f203a91688..b0830c31a353 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescriptionOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ColumnDescriptionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequest.java index 0434156fc9b5..85ae8674cb7f 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequestOrBuilder.java index b2f2aac67234..199dade83d9a 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/CreateRowRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequest.java index ba93ac7f9a5b..4f3dcee081f8 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequestOrBuilder.java index 6af14b9f4c82..e6beb3b9268f 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/DeleteRowRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequest.java index 0518017cc6c2..75c80c0609bb 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequestOrBuilder.java index 6dd33b2e854d..7b4d2c260b45 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetRowRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequest.java index 326dbd8b5420..1e5662d1a65d 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequestOrBuilder.java index 422631d10c49..6d660a487d21 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetTableRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequest.java index fda8ad2d9bfc..6b3b7dfcf859 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequestOrBuilder.java index 7427f3af135b..6e245f68555b 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/GetWorkspaceRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItem.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItem.java index b45e41a4f452..88ffc567fde9 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItem.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItem.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItemOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItemOrBuilder.java index ae82d9e91b11..f1f6439fefed 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItemOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LabeledItemOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequest.java index 112a9d585476..4411738a0a92 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequestOrBuilder.java index df7671c90de0..fbd431b38670 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponse.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponse.java index a14c349aec28..bd84d23d3f90 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponse.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponseOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponseOrBuilder.java index 73fc3506709b..dac314e9a6c6 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponseOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListRowsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequest.java index b24e473f900f..1e81046e65c3 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequestOrBuilder.java index 9ea819c631cf..ae3a55aa23e0 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponse.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponse.java index c1c2f32d6dc6..31314659d6f2 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponse.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponseOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponseOrBuilder.java index 64bc1459fb8a..463c4c16ded8 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponseOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListTablesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequest.java index 23846e7ddb11..77e70868b7e5 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequestOrBuilder.java index 9ce0fce08d96..a352d249d63a 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponse.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponse.java index b6f91e0a80c2..37f3ea16c44c 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponse.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponseOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponseOrBuilder.java index b075bada18b7..61ff85444e7e 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponseOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/ListWorkspacesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetails.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetails.java index 2fce83365e75..ea99c312c085 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetails.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetailsOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetailsOrBuilder.java index 3ecc733ba06d..cc0387a19aaa 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetailsOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/LookupDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetails.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetails.java index 79a536cb4bb8..f3894fecfdcb 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetails.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetailsOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetailsOrBuilder.java index ac829772ab88..52429682871a 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetailsOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RelationshipDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Row.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Row.java index 5462b7440792..ce2e9523a214 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Row.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Row.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowName.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowName.java index fd0b8254cab5..a7725913c162 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowName.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowOrBuilder.java index 968b18734ef1..378ca5ed1142 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/RowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Table.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Table.java index 39c03a5da2c7..dcd2bd25e4fe 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Table.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Table.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableName.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableName.java index 23499175f869..df6aed77e4cf 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableName.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableOrBuilder.java index f42599b33e27..0b417b6a8edc 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TableOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesProto.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesProto.java index 116af5d56c1f..042f3ecf0b15 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesProto.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/TablesProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequest.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequest.java index 38fd3bb1cd98..7a535dc108d3 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequest.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequestOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequestOrBuilder.java index 6bd652f8521b..a8bd0ab0a91e 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequestOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/UpdateRowRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/View.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/View.java index e2546aa016fa..40cf252a5531 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/View.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/View.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Workspace.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Workspace.java index b5e44221462e..0332af90e622 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Workspace.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/Workspace.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceName.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceName.java index f4f7ef3229ba..9daab0f1246b 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceName.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceOrBuilder.java b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceOrBuilder.java index b1657fb216ed..7876732879bc 100644 --- a/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceOrBuilder.java +++ b/java-area120-tables/proto-google-area120-tables-v1alpha1/src/main/java/com/google/area120/tables/v1alpha1/WorkspaceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/stub/tablesservicestubsettings/gettable/SyncGetTable.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/stub/tablesservicestubsettings/gettable/SyncGetTable.java index d04c5b4dacfe..83e42aba91f3 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/stub/tablesservicestubsettings/gettable/SyncGetTable.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/stub/tablesservicestubsettings/gettable/SyncGetTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/AsyncBatchCreateRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/AsyncBatchCreateRows.java index cfea06da3625..0c18d60142db 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/AsyncBatchCreateRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/AsyncBatchCreateRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/SyncBatchCreateRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/SyncBatchCreateRows.java index 2e7e51b4b414..f4e550e04c8b 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/SyncBatchCreateRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchcreaterows/SyncBatchCreateRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/AsyncBatchDeleteRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/AsyncBatchDeleteRows.java index 9b3c890da76f..9be33ee237cd 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/AsyncBatchDeleteRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/AsyncBatchDeleteRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/SyncBatchDeleteRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/SyncBatchDeleteRows.java index abbf5365c449..fc626445de4d 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/SyncBatchDeleteRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchdeleterows/SyncBatchDeleteRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/AsyncBatchUpdateRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/AsyncBatchUpdateRows.java index 756b0a9b2db0..51baba32245c 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/AsyncBatchUpdateRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/AsyncBatchUpdateRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/SyncBatchUpdateRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/SyncBatchUpdateRows.java index 293bb0672795..4be4f82fd8f0 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/SyncBatchUpdateRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/batchupdaterows/SyncBatchUpdateRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetCredentialsProvider.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetCredentialsProvider.java index 23137a31d773..23519b2b28c4 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetEndpoint.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetEndpoint.java index c9d52ca56bcf..54804f33acb6 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetEndpoint.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateUseHttpJsonTransport.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateUseHttpJsonTransport.java index 01ce25f1a0c9..271e4773c690 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/AsyncCreateRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/AsyncCreateRow.java index fec5226ad026..e51cf5826b10 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/AsyncCreateRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/AsyncCreateRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRow.java index 57b0c876852a..0be4b9321ced 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRowStringRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRowStringRow.java index 7405f99dd3ca..86a8b9082928 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRowStringRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/createrow/SyncCreateRowStringRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/AsyncDeleteRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/AsyncDeleteRow.java index b7e2ef9edae9..05b08d8989ca 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/AsyncDeleteRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/AsyncDeleteRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRow.java index f9426783e080..e27fb65dfe1f 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowRowname.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowRowname.java index 7348d79497c4..1bee6c82708d 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowRowname.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowRowname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowString.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowString.java index 7ba12db4571f..753a7af0e9db 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowString.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/deleterow/SyncDeleteRowString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/AsyncGetRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/AsyncGetRow.java index 5b8d077dbaf3..c32e00027bc1 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/AsyncGetRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/AsyncGetRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRow.java index 4a8b10010215..4b819a4cfa6f 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowRowname.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowRowname.java index 813dec359b02..21c3733d501d 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowRowname.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowRowname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowString.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowString.java index 2dd21a7ad139..d599de1c731c 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowString.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getrow/SyncGetRowString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/AsyncGetTable.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/AsyncGetTable.java index 454ca905b617..cc3a8267e180 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/AsyncGetTable.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/AsyncGetTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTable.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTable.java index e70bcde21a8b..053492d32e42 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTable.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableString.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableString.java index 7b0922e7b0bc..71a9891df387 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableString.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableTablename.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableTablename.java index 0552f1eae041..07d947575c68 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableTablename.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/gettable/SyncGetTableTablename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/AsyncGetWorkspace.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/AsyncGetWorkspace.java index 83685ef772cc..13de15330a1f 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/AsyncGetWorkspace.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/AsyncGetWorkspace.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspace.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspace.java index afdf9e4fd2ab..e95d7eca053b 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspace.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspace.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceString.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceString.java index 1581408405fd..835fac9cc0b4 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceString.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceWorkspacename.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceWorkspacename.java index 081d06ea6d8d..8b2c9938e952 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceWorkspacename.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/getworkspace/SyncGetWorkspaceWorkspacename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRows.java index db7acbc1b40c..de27dba3c3d5 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRowsPaged.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRowsPaged.java index 808f45ca244e..387cd4b92366 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRowsPaged.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/AsyncListRowsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRows.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRows.java index 288474d1046e..e5dc0862d50e 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRows.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRows.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRowsString.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRowsString.java index 2c963754f79e..aa8fdae86978 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRowsString.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listrows/SyncListRowsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTables.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTables.java index fc8d3f091d8c..1281b4af8a04 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTables.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTables.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTablesPaged.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTablesPaged.java index 3cefa44e40dc..8a6c886e2c7e 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTablesPaged.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/AsyncListTablesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/SyncListTables.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/SyncListTables.java index 44692fb4cb6c..cb288bd7fa4d 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/SyncListTables.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listtables/SyncListTables.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspaces.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspaces.java index e4d5e6dd1e30..0717c688edd4 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspaces.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspaces.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspacesPaged.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspacesPaged.java index dcd947281ef1..cf6066368f2c 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspacesPaged.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/AsyncListWorkspacesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/SyncListWorkspaces.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/SyncListWorkspaces.java index bd6ddbb2c9ef..639817ab5f3e 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/SyncListWorkspaces.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/listworkspaces/SyncListWorkspaces.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/AsyncUpdateRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/AsyncUpdateRow.java index 0944fd28c9fc..7b481b800c18 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/AsyncUpdateRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/AsyncUpdateRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRow.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRow.java index 17293e15fd1b..cc6a90110ef5 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRow.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRowRowFieldmask.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRowRowFieldmask.java index 5ea77fc44ba1..538e57d48e48 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRowRowFieldmask.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservice/updaterow/SyncUpdateRowRowFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservicesettings/gettable/SyncGetTable.java b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservicesettings/gettable/SyncGetTable.java index c74a0c8ff577..0eaff485e451 100644 --- a/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservicesettings/gettable/SyncGetTable.java +++ b/java-area120-tables/samples/snippets/generated/com/google/area120/tables/v1alpha/tablesservicesettings/gettable/SyncGetTable.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/CHANGELOG.md b/java-artifact-registry/CHANGELOG.md index 1cacc53c68e9..53315d998d8c 100644 --- a/java-artifact-registry/CHANGELOG.md +++ b/java-artifact-registry/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 1.81.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 1.80.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 1.77.0 (2025-10-21) ### Dependencies diff --git a/java-artifact-registry/README.md b/java-artifact-registry/README.md index 8538d3a0c1ef..f7b0c7438799 100644 --- a/java-artifact-registry/README.md +++ b/java-artifact-registry/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-artifact-registry - 1.77.0 + 1.80.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-artifact-registry:1.77.0' +implementation 'com.google.cloud:google-cloud-artifact-registry:1.80.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-artifact-registry" % "1.77.0" +libraryDependencies += "com.google.cloud" % "google-cloud-artifact-registry" % "1.80.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/artifact-registry [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-artifact-registry/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-artifact-registry.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-artifact-registry/1.77.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-artifact-registry/1.80.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-artifact-registry/google-cloud-artifact-registry-bom/pom.xml b/java-artifact-registry/google-cloud-artifact-registry-bom/pom.xml index a79f2a4b400c..693cf4628539 100644 --- a/java-artifact-registry/google-cloud-artifact-registry-bom/pom.xml +++ b/java-artifact-registry/google-cloud-artifact-registry-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-artifact-registry-bom - 1.80.0-SNAPSHOT + 1.81.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,27 +27,27 @@ com.google.cloud google-cloud-artifact-registry - 1.80.0-SNAPSHOT + 1.81.0 com.google.api.grpc grpc-google-cloud-artifact-registry-v1beta2 - 0.86.0-SNAPSHOT + 0.87.0 com.google.api.grpc grpc-google-cloud-artifact-registry-v1 - 1.80.0-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-artifact-registry-v1beta2 - 0.86.0-SNAPSHOT + 0.87.0 com.google.api.grpc proto-google-cloud-artifact-registry-v1 - 1.80.0-SNAPSHOT + 1.81.0 diff --git a/java-artifact-registry/google-cloud-artifact-registry/pom.xml b/java-artifact-registry/google-cloud-artifact-registry/pom.xml index 68b238273971..41cc042d05a9 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/pom.xml +++ b/java-artifact-registry/google-cloud-artifact-registry/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-artifact-registry - 1.80.0-SNAPSHOT + 1.81.0 jar Google Artifact Registry provides a single place for your organization to manage container images and language packages (such as Maven and npm). It is fully integrated with Google Cloud's tooling and runtimes and comes with support for native artifact protocols. This makes it simple to integrate it with your CI/CD tooling to set up automated pipelines. com.google.cloud google-cloud-artifact-registry-parent - 1.80.0-SNAPSHOT + 1.81.0 google-cloud-artifact-registry diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClient.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClient.java index 9e0f440385f9..6b6e8cbc4d2c 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClient.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1004,6 +1004,21 @@ * * * + *

ExportArtifact + *

Exports an artifact to a Cloud Storage bucket. + * + *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

+ *
    + *
  • exportArtifactAsync(ExportArtifactRequest request) + *

+ *

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

+ *
    + *
  • exportArtifactOperationCallable() + *

  • exportArtifactCallable() + *

+ * + * + * *

ListLocations *

Lists information about the supported locations for this service. * @@ -6983,6 +6998,96 @@ public final UnaryCallable deleteAttachmentC return stub.deleteAttachmentCallable(); } + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Exports an artifact to a Cloud Storage bucket. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (ArtifactRegistryClient artifactRegistryClient = ArtifactRegistryClient.create()) {
+   *   ExportArtifactRequest request =
+   *       ExportArtifactRequest.newBuilder()
+   *           .setRepository(
+   *               RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString())
+   *           .build();
+   *   ExportArtifactResponse response = artifactRegistryClient.exportArtifactAsync(request).get();
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final OperationFuture exportArtifactAsync( + ExportArtifactRequest request) { + return exportArtifactOperationCallable().futureCall(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Exports an artifact to a Cloud Storage bucket. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (ArtifactRegistryClient artifactRegistryClient = ArtifactRegistryClient.create()) {
+   *   ExportArtifactRequest request =
+   *       ExportArtifactRequest.newBuilder()
+   *           .setRepository(
+   *               RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString())
+   *           .build();
+   *   OperationFuture future =
+   *       artifactRegistryClient.exportArtifactOperationCallable().futureCall(request);
+   *   // Do something.
+   *   ExportArtifactResponse response = future.get();
+   * }
+   * }
+ */ + public final OperationCallable< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationCallable() { + return stub.exportArtifactOperationCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Exports an artifact to a Cloud Storage bucket. + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated and should be regarded as a code template only.
+   * // It will require modifications to work:
+   * // - It may require correct/in-range values for request initialization.
+   * // - It may require specifying regional endpoints when creating the service client as shown in
+   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+   * try (ArtifactRegistryClient artifactRegistryClient = ArtifactRegistryClient.create()) {
+   *   ExportArtifactRequest request =
+   *       ExportArtifactRequest.newBuilder()
+   *           .setRepository(
+   *               RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString())
+   *           .build();
+   *   ApiFuture future =
+   *       artifactRegistryClient.exportArtifactCallable().futureCall(request);
+   *   // Do something.
+   *   Operation response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable exportArtifactCallable() { + return stub.exportArtifactCallable(); + } + // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Lists information about the supported locations for this service. diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistrySettings.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistrySettings.java index 8c363d34abb3..df646b0c4787 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistrySettings.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistrySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -106,8 +106,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to @@ -466,6 +466,18 @@ public UnaryCallSettings deleteAttachmentSet return ((ArtifactRegistryStubSettings) getStubSettings()).deleteAttachmentOperationSettings(); } + /** Returns the object with the settings used for calls to exportArtifact. */ + public UnaryCallSettings exportArtifactSettings() { + return ((ArtifactRegistryStubSettings) getStubSettings()).exportArtifactSettings(); + } + + /** Returns the object with the settings used for calls to exportArtifact. */ + public OperationCallSettings< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationSettings() { + return ((ArtifactRegistryStubSettings) getStubSettings()).exportArtifactOperationSettings(); + } + /** Returns the object with the settings used for calls to listLocations. */ public PagedCallSettings listLocationsSettings() { @@ -930,6 +942,18 @@ public UnaryCallSettings.Builder getAttachment return getStubSettingsBuilder().deleteAttachmentOperationSettings(); } + /** Returns the builder for the settings used for calls to exportArtifact. */ + public UnaryCallSettings.Builder exportArtifactSettings() { + return getStubSettingsBuilder().exportArtifactSettings(); + } + + /** Returns the builder for the settings used for calls to exportArtifact. */ + public OperationCallSettings.Builder< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationSettings() { + return getStubSettingsBuilder().exportArtifactOperationSettings(); + } + /** Returns the builder for the settings used for calls to listLocations. */ public PagedCallSettings.Builder< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/gapic_metadata.json b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/gapic_metadata.json index 8fa82a3cfce5..c166d531bab3 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/gapic_metadata.json +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/gapic_metadata.json @@ -46,6 +46,9 @@ "DeleteVersion": { "methods": ["deleteVersionAsync", "deleteVersionAsync", "deleteVersionOperationCallable", "deleteVersionCallable"] }, + "ExportArtifact": { + "methods": ["exportArtifactAsync", "exportArtifactOperationCallable", "exportArtifactCallable"] + }, "GetAttachment": { "methods": ["getAttachment", "getAttachment", "getAttachment", "getAttachmentCallable"] }, diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/package-info.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/package-info.java index f20f16638541..63e020829a6e 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/package-info.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStub.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStub.java index ef5b390ecfbd..71f478bb1e29 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStub.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,9 @@ import com.google.devtools.artifactregistry.v1.DeleteTagRequest; import com.google.devtools.artifactregistry.v1.DeleteVersionRequest; import com.google.devtools.artifactregistry.v1.DockerImage; +import com.google.devtools.artifactregistry.v1.ExportArtifactMetadata; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.ExportArtifactResponse; import com.google.devtools.artifactregistry.v1.File; import com.google.devtools.artifactregistry.v1.GetAttachmentRequest; import com.google.devtools.artifactregistry.v1.GetDockerImageRequest; @@ -446,6 +449,15 @@ public UnaryCallable deleteAttachmentCallabl throw new UnsupportedOperationException("Not implemented: deleteAttachmentCallable()"); } + public OperationCallable + exportArtifactOperationCallable() { + throw new UnsupportedOperationException("Not implemented: exportArtifactOperationCallable()"); + } + + public UnaryCallable exportArtifactCallable() { + throw new UnsupportedOperationException("Not implemented: exportArtifactCallable()"); + } + public UnaryCallable listLocationsPagedCallable() { throw new UnsupportedOperationException("Not implemented: listLocationsPagedCallable()"); diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStubSettings.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStubSettings.java index 1f4819fc006e..38feae56e7d9 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStubSettings.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,6 +82,9 @@ import com.google.devtools.artifactregistry.v1.DeleteTagRequest; import com.google.devtools.artifactregistry.v1.DeleteVersionRequest; import com.google.devtools.artifactregistry.v1.DockerImage; +import com.google.devtools.artifactregistry.v1.ExportArtifactMetadata; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.ExportArtifactResponse; import com.google.devtools.artifactregistry.v1.File; import com.google.devtools.artifactregistry.v1.GetAttachmentRequest; import com.google.devtools.artifactregistry.v1.GetDockerImageRequest; @@ -203,8 +206,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to @@ -336,6 +339,10 @@ public class ArtifactRegistryStubSettings extends StubSettings deleteAttachmentSettings; private final OperationCallSettings deleteAttachmentOperationSettings; + private final UnaryCallSettings exportArtifactSettings; + private final OperationCallSettings< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationSettings; private final PagedCallSettings< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> listLocationsSettings; @@ -1312,6 +1319,18 @@ public UnaryCallSettings deleteAttachmentSet return deleteAttachmentOperationSettings; } + /** Returns the object with the settings used for calls to exportArtifact. */ + public UnaryCallSettings exportArtifactSettings() { + return exportArtifactSettings; + } + + /** Returns the object with the settings used for calls to exportArtifact. */ + public OperationCallSettings< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationSettings() { + return exportArtifactOperationSettings; + } + /** Returns the object with the settings used for calls to listLocations. */ public PagedCallSettings listLocationsSettings() { @@ -1496,6 +1515,8 @@ protected ArtifactRegistryStubSettings(Builder settingsBuilder) throws IOExcepti createAttachmentOperationSettings = settingsBuilder.createAttachmentOperationSettings().build(); deleteAttachmentSettings = settingsBuilder.deleteAttachmentSettings().build(); deleteAttachmentOperationSettings = settingsBuilder.deleteAttachmentOperationSettings().build(); + exportArtifactSettings = settingsBuilder.exportArtifactSettings().build(); + exportArtifactOperationSettings = settingsBuilder.exportArtifactOperationSettings().build(); listLocationsSettings = settingsBuilder.listLocationsSettings().build(); getLocationSettings = settingsBuilder.getLocationSettings().build(); } @@ -1615,6 +1636,11 @@ public static class Builder extends StubSettings.Builder deleteAttachmentOperationSettings; + private final UnaryCallSettings.Builder + exportArtifactSettings; + private final OperationCallSettings.Builder< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationSettings; private final PagedCallSettings.Builder< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> listLocationsSettings; @@ -1712,6 +1738,8 @@ protected Builder(ClientContext clientContext) { createAttachmentOperationSettings = OperationCallSettings.newBuilder(); deleteAttachmentSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); deleteAttachmentOperationSettings = OperationCallSettings.newBuilder(); + exportArtifactSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + exportArtifactOperationSettings = OperationCallSettings.newBuilder(); listLocationsSettings = PagedCallSettings.newBuilder(LIST_LOCATIONS_PAGE_STR_FACT); getLocationSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); @@ -1766,6 +1794,7 @@ protected Builder(ClientContext clientContext) { getAttachmentSettings, createAttachmentSettings, deleteAttachmentSettings, + exportArtifactSettings, listLocationsSettings, getLocationSettings); initDefaults(this); @@ -1836,6 +1865,8 @@ protected Builder(ArtifactRegistryStubSettings settings) { createAttachmentOperationSettings = settings.createAttachmentOperationSettings.toBuilder(); deleteAttachmentSettings = settings.deleteAttachmentSettings.toBuilder(); deleteAttachmentOperationSettings = settings.deleteAttachmentOperationSettings.toBuilder(); + exportArtifactSettings = settings.exportArtifactSettings.toBuilder(); + exportArtifactOperationSettings = settings.exportArtifactOperationSettings.toBuilder(); listLocationsSettings = settings.listLocationsSettings.toBuilder(); getLocationSettings = settings.getLocationSettings.toBuilder(); @@ -1890,6 +1921,7 @@ protected Builder(ArtifactRegistryStubSettings settings) { getAttachmentSettings, createAttachmentSettings, deleteAttachmentSettings, + exportArtifactSettings, listLocationsSettings, getLocationSettings); } @@ -2164,6 +2196,11 @@ private static Builder initDefaults(Builder builder) { .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_0_params")); + builder + .exportArtifactSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_0_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_0_params")); + builder .listLocationsSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_0_codes")) @@ -2418,6 +2455,30 @@ private static Builder initDefaults(Builder builder) { .setTotalTimeoutDuration(Duration.ofMillis(300000L)) .build())); + builder + .exportArtifactOperationSettings() + .setInitialCallSettings( + UnaryCallSettings + .newUnaryCallSettingsBuilder() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_0_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_0_params")) + .build()) + .setResponseTransformer( + ProtoOperationTransformers.ResponseTransformer.create(ExportArtifactResponse.class)) + .setMetadataTransformer( + ProtoOperationTransformers.MetadataTransformer.create(ExportArtifactMetadata.class)) + .setPollingAlgorithm( + OperationTimedPollAlgorithm.create( + RetrySettings.newBuilder() + .setInitialRetryDelayDuration(Duration.ofMillis(5000L)) + .setRetryDelayMultiplier(1.5) + .setMaxRetryDelayDuration(Duration.ofMillis(45000L)) + .setInitialRpcTimeoutDuration(Duration.ZERO) + .setRpcTimeoutMultiplier(1.0) + .setMaxRpcTimeoutDuration(Duration.ZERO) + .setTotalTimeoutDuration(Duration.ofMillis(300000L)) + .build())); + return builder; } @@ -2777,6 +2838,18 @@ public UnaryCallSettings.Builder getAttachment return deleteAttachmentOperationSettings; } + /** Returns the builder for the settings used for calls to exportArtifact. */ + public UnaryCallSettings.Builder exportArtifactSettings() { + return exportArtifactSettings; + } + + /** Returns the builder for the settings used for calls to exportArtifact. */ + public OperationCallSettings.Builder< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationSettings() { + return exportArtifactOperationSettings; + } + /** Returns the builder for the settings used for calls to listLocations. */ public PagedCallSettings.Builder< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryCallableFactory.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryCallableFactory.java index 2c2d36618fc3..f1559c5d473a 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryCallableFactory.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryStub.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryStub.java index 80cddd9b2269..d7924d439d8f 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryStub.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/GrpcArtifactRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,6 +56,9 @@ import com.google.devtools.artifactregistry.v1.DeleteTagRequest; import com.google.devtools.artifactregistry.v1.DeleteVersionRequest; import com.google.devtools.artifactregistry.v1.DockerImage; +import com.google.devtools.artifactregistry.v1.ExportArtifactMetadata; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.ExportArtifactResponse; import com.google.devtools.artifactregistry.v1.File; import com.google.devtools.artifactregistry.v1.GetAttachmentRequest; import com.google.devtools.artifactregistry.v1.GetDockerImageRequest; @@ -683,6 +686,18 @@ public class GrpcArtifactRegistryStub extends ArtifactRegistryStub { .setSampledToLocalTracing(true) .build(); + private static final MethodDescriptor + exportArtifactMethodDescriptor = + MethodDescriptor.newBuilder() + .setType(MethodDescriptor.MethodType.UNARY) + .setFullMethodName( + "google.devtools.artifactregistry.v1.ArtifactRegistry/ExportArtifact") + .setRequestMarshaller( + ProtoUtils.marshaller(ExportArtifactRequest.getDefaultInstance())) + .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance())) + .setSampledToLocalTracing(true) + .build(); + private static final MethodDescriptor listLocationsMethodDescriptor = MethodDescriptor.newBuilder() @@ -803,6 +818,10 @@ public class GrpcArtifactRegistryStub extends ArtifactRegistryStub { private final UnaryCallable deleteAttachmentCallable; private final OperationCallable deleteAttachmentOperationCallable; + private final UnaryCallable exportArtifactCallable; + private final OperationCallable< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationCallable; private final UnaryCallable listLocationsCallable; private final UnaryCallable listLocationsPagedCallable; @@ -1354,6 +1373,16 @@ protected GrpcArtifactRegistryStub( return builder.build(); }) .build(); + GrpcCallSettings exportArtifactTransportSettings = + GrpcCallSettings.newBuilder() + .setMethodDescriptor(exportArtifactMethodDescriptor) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("repository", String.valueOf(request.getRepository())); + return builder.build(); + }) + .build(); GrpcCallSettings listLocationsTransportSettings = GrpcCallSettings.newBuilder() .setMethodDescriptor(listLocationsMethodDescriptor) @@ -1637,6 +1666,15 @@ protected GrpcArtifactRegistryStub( settings.deleteAttachmentOperationSettings(), clientContext, operationsStub); + this.exportArtifactCallable = + callableFactory.createUnaryCallable( + exportArtifactTransportSettings, settings.exportArtifactSettings(), clientContext); + this.exportArtifactOperationCallable = + callableFactory.createOperationCallable( + exportArtifactTransportSettings, + settings.exportArtifactOperationSettings(), + clientContext, + operationsStub); this.listLocationsCallable = callableFactory.createUnaryCallable( listLocationsTransportSettings, settings.listLocationsSettings(), clientContext); @@ -2029,6 +2067,17 @@ public UnaryCallable deleteAttachmentCallabl return deleteAttachmentOperationCallable; } + @Override + public UnaryCallable exportArtifactCallable() { + return exportArtifactCallable; + } + + @Override + public OperationCallable + exportArtifactOperationCallable() { + return exportArtifactOperationCallable; + } + @Override public UnaryCallable listLocationsCallable() { return listLocationsCallable; diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryCallableFactory.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryCallableFactory.java index f03823c16b95..973bf4fc8bb0 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryCallableFactory.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryStub.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryStub.java index 0677da759fb8..b162f1963705 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryStub.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/HttpJsonArtifactRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -65,6 +65,9 @@ import com.google.devtools.artifactregistry.v1.DeleteTagRequest; import com.google.devtools.artifactregistry.v1.DeleteVersionRequest; import com.google.devtools.artifactregistry.v1.DockerImage; +import com.google.devtools.artifactregistry.v1.ExportArtifactMetadata; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.ExportArtifactResponse; import com.google.devtools.artifactregistry.v1.File; import com.google.devtools.artifactregistry.v1.GetAttachmentRequest; import com.google.devtools.artifactregistry.v1.GetDockerImageRequest; @@ -154,12 +157,14 @@ public class HttpJsonArtifactRegistryStub extends ArtifactRegistryStub { TypeRegistry.newBuilder() .add(BatchDeleteVersionsMetadata.getDescriptor()) .add(Attachment.getDescriptor()) + .add(ExportArtifactResponse.getDescriptor()) .add(Empty.getDescriptor()) .add(ImportYumArtifactsResponse.getDescriptor()) .add(ImportAptArtifactsResponse.getDescriptor()) .add(ImportYumArtifactsMetadata.getDescriptor()) .add(ImportAptArtifactsMetadata.getDescriptor()) .add(Repository.getDescriptor()) + .add(ExportArtifactMetadata.getDescriptor()) .add(OperationMetadata.getDescriptor()) .build(); @@ -1982,6 +1987,47 @@ public class HttpJsonArtifactRegistryStub extends ArtifactRegistryStub { HttpJsonOperationSnapshot.create(response)) .build(); + private static final ApiMethodDescriptor + exportArtifactMethodDescriptor = + ApiMethodDescriptor.newBuilder() + .setFullMethodName( + "google.devtools.artifactregistry.v1.ArtifactRegistry/ExportArtifact") + .setHttpMethod("POST") + .setType(ApiMethodDescriptor.MethodType.UNARY) + .setRequestFormatter( + ProtoMessageRequestFormatter.newBuilder() + .setPath( + "/v1/{repository=projects/*/locations/*/repositories/*}:exportArtifact", + request -> { + Map fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putPathParam(fields, "repository", request.getRepository()); + return fields; + }) + .setQueryParamsExtractor( + request -> { + Map> fields = new HashMap<>(); + ProtoRestSerializer serializer = + ProtoRestSerializer.create(); + serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); + return fields; + }) + .setRequestBodyExtractor( + request -> + ProtoRestSerializer.create() + .toBody("*", request.toBuilder().clearRepository().build(), true)) + .build()) + .setResponseParser( + ProtoMessageResponseParser.newBuilder() + .setDefaultInstance(Operation.getDefaultInstance()) + .setDefaultTypeRegistry(typeRegistry) + .build()) + .setOperationSnapshotFactory( + (ExportArtifactRequest request, Operation response) -> + HttpJsonOperationSnapshot.create(response)) + .build(); + private static final ApiMethodDescriptor listLocationsMethodDescriptor = ApiMethodDescriptor.newBuilder() @@ -2149,6 +2195,10 @@ public class HttpJsonArtifactRegistryStub extends ArtifactRegistryStub { private final UnaryCallable deleteAttachmentCallable; private final OperationCallable deleteAttachmentOperationCallable; + private final UnaryCallable exportArtifactCallable; + private final OperationCallable< + ExportArtifactRequest, ExportArtifactResponse, ExportArtifactMetadata> + exportArtifactOperationCallable; private final UnaryCallable listLocationsCallable; private final UnaryCallable listLocationsPagedCallable; @@ -2761,6 +2811,17 @@ protected HttpJsonArtifactRegistryStub( return builder.build(); }) .build(); + HttpJsonCallSettings exportArtifactTransportSettings = + HttpJsonCallSettings.newBuilder() + .setMethodDescriptor(exportArtifactMethodDescriptor) + .setTypeRegistry(typeRegistry) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("repository", String.valueOf(request.getRepository())); + return builder.build(); + }) + .build(); HttpJsonCallSettings listLocationsTransportSettings = HttpJsonCallSettings.newBuilder() @@ -3047,6 +3108,15 @@ protected HttpJsonArtifactRegistryStub( settings.deleteAttachmentOperationSettings(), clientContext, httpJsonOperationsStub); + this.exportArtifactCallable = + callableFactory.createUnaryCallable( + exportArtifactTransportSettings, settings.exportArtifactSettings(), clientContext); + this.exportArtifactOperationCallable = + callableFactory.createOperationCallable( + exportArtifactTransportSettings, + settings.exportArtifactOperationSettings(), + clientContext, + httpJsonOperationsStub); this.listLocationsCallable = callableFactory.createUnaryCallable( listLocationsTransportSettings, settings.listLocationsSettings(), clientContext); @@ -3113,6 +3183,7 @@ public static List getMethodDescriptors() { methodDescriptors.add(getAttachmentMethodDescriptor); methodDescriptors.add(createAttachmentMethodDescriptor); methodDescriptors.add(deleteAttachmentMethodDescriptor); + methodDescriptors.add(exportArtifactMethodDescriptor); methodDescriptors.add(listLocationsMethodDescriptor); methodDescriptors.add(getLocationMethodDescriptor); return methodDescriptors; @@ -3496,6 +3567,17 @@ public UnaryCallable deleteAttachmentCallabl return deleteAttachmentOperationCallable; } + @Override + public UnaryCallable exportArtifactCallable() { + return exportArtifactCallable; + } + + @Override + public OperationCallable + exportArtifactOperationCallable() { + return exportArtifactOperationCallable; + } + @Override public UnaryCallable listLocationsCallable() { return listLocationsCallable; diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClient.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClient.java index ca34e88980c4..a3b081c2f004 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClient.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistrySettings.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistrySettings.java index 1e326a281b2f..e4f4b27b0352 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistrySettings.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistrySettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/package-info.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/package-info.java index 301742624034..e6a502d3b43c 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/package-info.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStub.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStub.java index 909f1fa6a9b6..e5f4895b5671 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStub.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStubSettings.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStubSettings.java index 97b94906f9cc..f62080505946 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStubSettings.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/ArtifactRegistryStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -159,8 +159,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryCallableFactory.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryCallableFactory.java index 930d3b788e9f..bcc7fa5bf0d5 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryCallableFactory.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryStub.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryStub.java index 649937fe3131..79443b7665b6 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryStub.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/GrpcArtifactRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryCallableFactory.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryCallableFactory.java index f9e9d11848b0..c8afaaf1126b 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryCallableFactory.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryStub.java b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryStub.java index 668469b8503f..2238bbcd8df7 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryStub.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1beta2/stub/HttpJsonArtifactRegistryStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/main/resources/META-INF/native-image/com.google.devtools.artifactregistry.v1/reflect-config.json b/java-artifact-registry/google-cloud-artifact-registry/src/main/resources/META-INF/native-image/com.google.devtools.artifactregistry.v1/reflect-config.json index b454f9ed8499..cc4a674fa6d2 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/main/resources/META-INF/native-image/com.google.devtools.artifactregistry.v1/reflect-config.json +++ b/java-artifact-registry/google-cloud-artifact-registry/src/main/resources/META-INF/native-image/com.google.devtools.artifactregistry.v1/reflect-config.json @@ -854,6 +854,78 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactMetadata", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactMetadata$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactMetadata$ExportedFile", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactMetadata$ExportedFile$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactRequest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactRequest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactResponse", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ExportArtifactResponse$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.devtools.artifactregistry.v1.File", "queryAllDeclaredConstructors": true, @@ -1169,6 +1241,24 @@ "allDeclaredClasses": true, "allPublicClasses": true }, + { + "name": "com.google.devtools.artifactregistry.v1.ImageManifest", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, + { + "name": "com.google.devtools.artifactregistry.v1.ImageManifest$Builder", + "queryAllDeclaredConstructors": true, + "queryAllPublicConstructors": true, + "queryAllDeclaredMethods": true, + "allPublicMethods": true, + "allDeclaredClasses": true, + "allPublicClasses": true + }, { "name": "com.google.devtools.artifactregistry.v1.ImportAptArtifactsErrorInfo", "queryAllDeclaredConstructors": true, diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientHttpJsonTest.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientHttpJsonTest.java index b4ffd55bc3e2..8e5a4e41b3bc 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientHttpJsonTest.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -173,6 +173,8 @@ public void getDockerImageTest() throws Exception { .setMediaType("mediaType2140463422") .setBuildTime(Timestamp.newBuilder().build()) .setUpdateTime(Timestamp.newBuilder().build()) + .setArtifactType("artifactType-672214996") + .addAllImageManifests(new ArrayList()) .build(); mockService.addResponse(expectedResponse); @@ -228,6 +230,8 @@ public void getDockerImageTest2() throws Exception { .setMediaType("mediaType2140463422") .setBuildTime(Timestamp.newBuilder().build()) .setUpdateTime(Timestamp.newBuilder().build()) + .setArtifactType("artifactType-672214996") + .addAllImageManifests(new ArrayList()) .build(); mockService.addResponse(expectedResponse); @@ -1898,6 +1902,7 @@ public void getVersionTest() throws Exception { .addAllRelatedTags(new ArrayList()) .setMetadata(Struct.newBuilder().build()) .putAllAnnotations(new HashMap()) + .addAllFingerprints(new ArrayList()) .build(); mockService.addResponse(expectedResponse); @@ -2095,6 +2100,7 @@ public void updateVersionTest() throws Exception { .addAllRelatedTags(new ArrayList()) .setMetadata(Struct.newBuilder().build()) .putAllAnnotations(new HashMap()) + .addAllFingerprints(new ArrayList()) .build(); mockService.addResponse(expectedResponse); @@ -2109,6 +2115,7 @@ public void updateVersionTest() throws Exception { .addAllRelatedTags(new ArrayList()) .setMetadata(Struct.newBuilder().build()) .putAllAnnotations(new HashMap()) + .addAllFingerprints(new ArrayList()) .build(); FieldMask updateMask = FieldMask.newBuilder().build(); @@ -2150,6 +2157,7 @@ public void updateVersionExceptionTest() throws Exception { .addAllRelatedTags(new ArrayList()) .setMetadata(Struct.newBuilder().build()) .putAllAnnotations(new HashMap()) + .addAllFingerprints(new ArrayList()) .build(); FieldMask updateMask = FieldMask.newBuilder().build(); client.updateVersion(version, updateMask); @@ -2583,7 +2591,12 @@ public void listTagsExceptionTest() throws Exception { @Test public void getTagTest() throws Exception { Tag expectedResponse = - Tag.newBuilder().setName("name3373707").setVersion("version351608024").build(); + Tag.newBuilder() + .setName( + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) + .setVersion("version351608024") + .build(); mockService.addResponse(expectedResponse); String name = @@ -2627,7 +2640,12 @@ public void getTagExceptionTest() throws Exception { @Test public void createTagTest() throws Exception { Tag expectedResponse = - Tag.newBuilder().setName("name3373707").setVersion("version351608024").build(); + Tag.newBuilder() + .setName( + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) + .setVersion("version351608024") + .build(); mockService.addResponse(expectedResponse); String parent = @@ -2675,13 +2693,19 @@ public void createTagExceptionTest() throws Exception { @Test public void updateTagTest() throws Exception { Tag expectedResponse = - Tag.newBuilder().setName("name3373707").setVersion("version351608024").build(); + Tag.newBuilder() + .setName( + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) + .setVersion("version351608024") + .build(); mockService.addResponse(expectedResponse); Tag tag = Tag.newBuilder() .setName( - "projects/project-5748/locations/location-5748/repositories/repositorie-5748/packages/package-5748/tags/tag-5748") + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) .setVersion("version351608024") .build(); FieldMask updateMask = FieldMask.newBuilder().build(); @@ -2715,7 +2739,8 @@ public void updateTagExceptionTest() throws Exception { Tag tag = Tag.newBuilder() .setName( - "projects/project-5748/locations/location-5748/repositories/repositorie-5748/packages/package-5748/tags/tag-5748") + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) .setVersion("version351608024") .build(); FieldMask updateMask = FieldMask.newBuilder().build(); @@ -4150,6 +4175,62 @@ public void deleteAttachmentExceptionTest2() throws Exception { } } + @Test + public void exportArtifactTest() throws Exception { + ExportArtifactResponse expectedResponse = + ExportArtifactResponse.newBuilder() + .setExportedVersion(Version.newBuilder().build()) + .build(); + Operation resultOperation = + Operation.newBuilder() + .setName("exportArtifactTest") + .setDone(true) + .setResponse(Any.pack(expectedResponse)) + .build(); + mockService.addResponse(resultOperation); + + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + + ExportArtifactResponse actualResponse = client.exportArtifactAsync(request).get(); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockService.getRequestPaths(); + Assert.assertEquals(1, actualRequests.size()); + + String apiClientHeaderKey = + mockService + .getRequestHeaders() + .get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()) + .iterator() + .next(); + Assert.assertTrue( + GaxHttpJsonProperties.getDefaultApiClientHeaderPattern() + .matcher(apiClientHeaderKey) + .matches()); + } + + @Test + public void exportArtifactExceptionTest() throws Exception { + ApiException exception = + ApiExceptionFactory.createException( + new Exception(), FakeStatusCode.of(StatusCode.Code.INVALID_ARGUMENT), false); + mockService.addException(exception); + + try { + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository( + RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + client.exportArtifactAsync(request).get(); + Assert.fail("No exception raised"); + } catch (ExecutionException e) { + } + } + @Test public void listLocationsTest() throws Exception { Location responsesElement = Location.newBuilder().build(); diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientTest.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientTest.java index 96f80af4081e..b3c8dd57ede5 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientTest.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -174,6 +174,8 @@ public void getDockerImageTest() throws Exception { .setMediaType("mediaType2140463422") .setBuildTime(Timestamp.newBuilder().build()) .setUpdateTime(Timestamp.newBuilder().build()) + .setArtifactType("artifactType-672214996") + .addAllImageManifests(new ArrayList()) .build(); mockArtifactRegistry.addResponse(expectedResponse); @@ -223,6 +225,8 @@ public void getDockerImageTest2() throws Exception { .setMediaType("mediaType2140463422") .setBuildTime(Timestamp.newBuilder().build()) .setUpdateTime(Timestamp.newBuilder().build()) + .setArtifactType("artifactType-672214996") + .addAllImageManifests(new ArrayList()) .build(); mockArtifactRegistry.addResponse(expectedResponse); @@ -1678,6 +1682,7 @@ public void getVersionTest() throws Exception { .addAllRelatedTags(new ArrayList()) .setMetadata(Struct.newBuilder().build()) .putAllAnnotations(new HashMap()) + .addAllFingerprints(new ArrayList()) .build(); mockArtifactRegistry.addResponse(expectedResponse); @@ -1856,6 +1861,7 @@ public void updateVersionTest() throws Exception { .addAllRelatedTags(new ArrayList()) .setMetadata(Struct.newBuilder().build()) .putAllAnnotations(new HashMap()) + .addAllFingerprints(new ArrayList()) .build(); mockArtifactRegistry.addResponse(expectedResponse); @@ -2249,7 +2255,12 @@ public void listTagsExceptionTest() throws Exception { @Test public void getTagTest() throws Exception { Tag expectedResponse = - Tag.newBuilder().setName("name3373707").setVersion("version351608024").build(); + Tag.newBuilder() + .setName( + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) + .setVersion("version351608024") + .build(); mockArtifactRegistry.addResponse(expectedResponse); String name = "name3373707"; @@ -2285,7 +2296,12 @@ public void getTagExceptionTest() throws Exception { @Test public void createTagTest() throws Exception { Tag expectedResponse = - Tag.newBuilder().setName("name3373707").setVersion("version351608024").build(); + Tag.newBuilder() + .setName( + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) + .setVersion("version351608024") + .build(); mockArtifactRegistry.addResponse(expectedResponse); String parent = "parent-995424086"; @@ -2327,7 +2343,12 @@ public void createTagExceptionTest() throws Exception { @Test public void updateTagTest() throws Exception { Tag expectedResponse = - Tag.newBuilder().setName("name3373707").setVersion("version351608024").build(); + Tag.newBuilder() + .setName( + TagName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[PACKAGE]", "[TAG]") + .toString()) + .setVersion("version351608024") + .build(); mockArtifactRegistry.addResponse(expectedResponse); Tag tag = Tag.newBuilder().build(); @@ -3598,6 +3619,62 @@ public void deleteAttachmentExceptionTest2() throws Exception { } } + @Test + public void exportArtifactTest() throws Exception { + ExportArtifactResponse expectedResponse = + ExportArtifactResponse.newBuilder() + .setExportedVersion(Version.newBuilder().build()) + .build(); + Operation resultOperation = + Operation.newBuilder() + .setName("exportArtifactTest") + .setDone(true) + .setResponse(Any.pack(expectedResponse)) + .build(); + mockArtifactRegistry.addResponse(resultOperation); + + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + + ExportArtifactResponse actualResponse = client.exportArtifactAsync(request).get(); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockArtifactRegistry.getRequests(); + Assert.assertEquals(1, actualRequests.size()); + ExportArtifactRequest actualRequest = ((ExportArtifactRequest) actualRequests.get(0)); + + Assert.assertEquals(request.getSourceVersion(), actualRequest.getSourceVersion()); + Assert.assertEquals(request.getSourceTag(), actualRequest.getSourceTag()); + Assert.assertEquals(request.getGcsPath(), actualRequest.getGcsPath()); + Assert.assertEquals(request.getRepository(), actualRequest.getRepository()); + Assert.assertTrue( + channelProvider.isHeaderSent( + ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), + GaxGrpcProperties.getDefaultApiClientHeaderPattern())); + } + + @Test + public void exportArtifactExceptionTest() throws Exception { + StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT); + mockArtifactRegistry.addException(exception); + + try { + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository( + RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + client.exportArtifactAsync(request).get(); + Assert.fail("No exception raised"); + } catch (ExecutionException e) { + Assert.assertEquals(InvalidArgumentException.class, e.getCause().getClass()); + InvalidArgumentException apiException = ((InvalidArgumentException) e.getCause()); + Assert.assertEquals(StatusCode.Code.INVALID_ARGUMENT, apiException.getStatusCode().getCode()); + } + } + @Test public void listLocationsTest() throws Exception { Location responsesElement = Location.newBuilder().build(); diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistry.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistry.java index 583b5ca60bfe..13475ea0ef18 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistry.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistryImpl.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistryImpl.java index 66306ccd48f6..5ec553e37d70 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistryImpl.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockArtifactRegistryImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1081,4 +1081,25 @@ public void deleteAttachment( Exception.class.getName()))); } } + + @Override + public void exportArtifact( + ExportArtifactRequest request, StreamObserver responseObserver) { + Object response = responses.poll(); + if (response instanceof Operation) { + requests.add(request); + responseObserver.onNext(((Operation) response)); + responseObserver.onCompleted(); + } else if (response instanceof Exception) { + responseObserver.onError(((Exception) response)); + } else { + responseObserver.onError( + new IllegalArgumentException( + String.format( + "Unrecognized response type %s for method ExportArtifact, expected %s or %s", + response == null ? "null" : response.getClass().getName(), + Operation.class.getName(), + Exception.class.getName()))); + } + } } diff --git a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocations.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocations.java index 20126f5c446f..b9869ce67586 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocations.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocationsImpl.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocationsImpl.java index 1091ddd57eb5..0461ab2e1518 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocationsImpl.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientHttpJsonTest.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientHttpJsonTest.java index d416d9c68fc0..ed9a616b29e3 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientHttpJsonTest.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientTest.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientTest.java index c9fbde33345a..873c74505e27 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientTest.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistry.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistry.java index 9f3f4b6edbe1..04a40f5ddd1e 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistry.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistryImpl.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistryImpl.java index cbfffb9c0074..7ed38404d074 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistryImpl.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockArtifactRegistryImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocations.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocations.java index 637492026450..0b305994a7bc 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocations.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocationsImpl.java b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocationsImpl.java index 2d821c9b4117..6289df32885a 100644 --- a/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocationsImpl.java +++ b/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1beta2/MockLocationsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/pom.xml b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/pom.xml index e084da5891b0..ee556fccf0fa 100644 --- a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/pom.xml +++ b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-artifact-registry-v1 - 1.80.0-SNAPSHOT + 1.81.0 grpc-google-cloud-artifact-registry-v1 GRPC library for google-cloud-artifact-registry com.google.cloud google-cloud-artifact-registry-parent - 1.80.0-SNAPSHOT + 1.81.0 diff --git a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryGrpc.java b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryGrpc.java index cc2e67b68404..61c16b8aeb3c 100644 --- a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryGrpc.java +++ b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -2304,6 +2304,52 @@ private ArtifactRegistryGrpc() {} return getDeleteAttachmentMethod; } + private static volatile io.grpc.MethodDescriptor< + com.google.devtools.artifactregistry.v1.ExportArtifactRequest, + com.google.longrunning.Operation> + getExportArtifactMethod; + + @io.grpc.stub.annotations.RpcMethod( + fullMethodName = SERVICE_NAME + '/' + "ExportArtifact", + requestType = com.google.devtools.artifactregistry.v1.ExportArtifactRequest.class, + responseType = com.google.longrunning.Operation.class, + methodType = io.grpc.MethodDescriptor.MethodType.UNARY) + public static io.grpc.MethodDescriptor< + com.google.devtools.artifactregistry.v1.ExportArtifactRequest, + com.google.longrunning.Operation> + getExportArtifactMethod() { + io.grpc.MethodDescriptor< + com.google.devtools.artifactregistry.v1.ExportArtifactRequest, + com.google.longrunning.Operation> + getExportArtifactMethod; + if ((getExportArtifactMethod = ArtifactRegistryGrpc.getExportArtifactMethod) == null) { + synchronized (ArtifactRegistryGrpc.class) { + if ((getExportArtifactMethod = ArtifactRegistryGrpc.getExportArtifactMethod) == null) { + ArtifactRegistryGrpc.getExportArtifactMethod = + getExportArtifactMethod = + io.grpc.MethodDescriptor + . + newBuilder() + .setType(io.grpc.MethodDescriptor.MethodType.UNARY) + .setFullMethodName(generateFullMethodName(SERVICE_NAME, "ExportArtifact")) + .setSampledToLocalTracing(true) + .setRequestMarshaller( + io.grpc.protobuf.ProtoUtils.marshaller( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest + .getDefaultInstance())) + .setResponseMarshaller( + io.grpc.protobuf.ProtoUtils.marshaller( + com.google.longrunning.Operation.getDefaultInstance())) + .setSchemaDescriptor( + new ArtifactRegistryMethodDescriptorSupplier("ExportArtifact")) + .build(); + } + } + } + return getExportArtifactMethod; + } + /** Creates a new async stub that supports all call types for the service */ public static ArtifactRegistryStub newStub(io.grpc.Channel channel) { io.grpc.stub.AbstractStub.StubFactory factory = @@ -3098,6 +3144,20 @@ default void deleteAttachment( io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall( getDeleteAttachmentMethod(), responseObserver); } + + /** + * + * + *

+     * Exports an artifact to a Cloud Storage bucket.
+     * 
+ */ + default void exportArtifact( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall( + getExportArtifactMethod(), responseObserver); + } } /** @@ -3956,6 +4016,22 @@ public void deleteAttachment( request, responseObserver); } + + /** + * + * + *
+     * Exports an artifact to a Cloud Storage bucket.
+     * 
+ */ + public void exportArtifact( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ClientCalls.asyncUnaryCall( + getChannel().newCall(getExportArtifactMethod(), getCallOptions()), + request, + responseObserver); + } } /** @@ -4686,6 +4762,20 @@ public com.google.longrunning.Operation deleteAttachment( return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getDeleteAttachmentMethod(), getCallOptions(), request); } + + /** + * + * + *
+     * Exports an artifact to a Cloud Storage bucket.
+     * 
+ */ + public com.google.longrunning.Operation exportArtifact( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest request) + throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( + getChannel(), getExportArtifactMethod(), getCallOptions(), request); + } } /** @@ -5367,6 +5457,19 @@ public com.google.longrunning.Operation deleteAttachment( return io.grpc.stub.ClientCalls.blockingUnaryCall( getChannel(), getDeleteAttachmentMethod(), getCallOptions(), request); } + + /** + * + * + *
+     * Exports an artifact to a Cloud Storage bucket.
+     * 
+ */ + public com.google.longrunning.Operation exportArtifact( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getExportArtifactMethod(), getCallOptions(), request); + } } /** @@ -6093,6 +6196,19 @@ public com.google.common.util.concurrent.ListenableFuture + * Exports an artifact to a Cloud Storage bucket. + * + */ + public com.google.common.util.concurrent.ListenableFuture + exportArtifact(com.google.devtools.artifactregistry.v1.ExportArtifactRequest request) { + return io.grpc.stub.ClientCalls.futureUnaryCall( + getChannel().newCall(getExportArtifactMethod(), getCallOptions()), request); + } } private static final int METHODID_LIST_DOCKER_IMAGES = 0; @@ -6144,6 +6260,7 @@ public com.google.common.util.concurrent.ListenableFuture implements io.grpc.stub.ServerCalls.UnaryMethod, @@ -6453,6 +6570,11 @@ public void invoke(Req request, io.grpc.stub.StreamObserver responseObserv (com.google.devtools.artifactregistry.v1.DeleteAttachmentRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; + case METHODID_EXPORT_ARTIFACT: + serviceImpl.exportArtifact( + (com.google.devtools.artifactregistry.v1.ExportArtifactRequest) request, + (io.grpc.stub.StreamObserver) responseObserver); + break; default: throw new AssertionError(); } @@ -6790,6 +6912,12 @@ public static final io.grpc.ServerServiceDefinition bindService(AsyncService ser new MethodHandlers< com.google.devtools.artifactregistry.v1.DeleteAttachmentRequest, com.google.longrunning.Operation>(service, METHODID_DELETE_ATTACHMENT))) + .addMethod( + getExportArtifactMethod(), + io.grpc.stub.ServerCalls.asyncUnaryCall( + new MethodHandlers< + com.google.devtools.artifactregistry.v1.ExportArtifactRequest, + com.google.longrunning.Operation>(service, METHODID_EXPORT_ARTIFACT))) .build(); } @@ -6890,6 +7018,7 @@ public static io.grpc.ServiceDescriptor getServiceDescriptor() { .addMethod(getGetAttachmentMethod()) .addMethod(getCreateAttachmentMethod()) .addMethod(getDeleteAttachmentMethod()) + .addMethod(getExportArtifactMethod()) .build(); } } diff --git a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/pom.xml b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/pom.xml index 84aafd9b77a6..11f9a5853f0a 100644 --- a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/pom.xml +++ b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-artifact-registry-v1beta2 - 0.86.0-SNAPSHOT + 0.87.0 grpc-google-cloud-artifact-registry-v1beta2 GRPC library for google-cloud-artifact-registry com.google.cloud google-cloud-artifact-registry-parent - 1.80.0-SNAPSHOT + 1.81.0 diff --git a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryGrpc.java b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryGrpc.java index 47b6cae176d3..bfdfab523219 100644 --- a/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryGrpc.java +++ b/java-artifact-registry/grpc-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ArtifactRegistryGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/pom.xml b/java-artifact-registry/pom.xml index 3ad2cffe88f6..9770f6d9d715 100644 --- a/java-artifact-registry/pom.xml +++ b/java-artifact-registry/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-artifact-registry-parent pom - 1.80.0-SNAPSHOT + 1.81.0 Google Artifact Registry Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,27 +29,27 @@ com.google.cloud google-cloud-artifact-registry - 1.80.0-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-artifact-registry-v1 - 1.80.0-SNAPSHOT + 1.81.0 com.google.api.grpc grpc-google-cloud-artifact-registry-v1 - 1.80.0-SNAPSHOT + 1.81.0 com.google.api.grpc proto-google-cloud-artifact-registry-v1beta2 - 0.86.0-SNAPSHOT + 0.87.0 com.google.api.grpc grpc-google-cloud-artifact-registry-v1beta2 - 0.86.0-SNAPSHOT + 0.87.0 diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/pom.xml b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/pom.xml index f9f677a72a53..5070b3884991 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/pom.xml +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-artifact-registry-v1 - 1.80.0-SNAPSHOT + 1.81.0 proto-google-cloud-artifact-registry-v1 Proto library for google-cloud-artifact-registry com.google.cloud google-cloud-artifact-registry-parent - 1.80.0-SNAPSHOT + 1.81.0 diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifact.java index a40325b24538..356258db74bc 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactOrBuilder.java index 3dd282c1c60d..a7aebd737a0f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactProto.java index c2ac00eb40ba..36ecacae9862 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AptArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactProto.java index 716e601d6a89..ddb126468d4c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,6 +32,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r internal_static_google_devtools_artifactregistry_v1_DockerImage_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_devtools_artifactregistry_v1_DockerImage_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_devtools_artifactregistry_v1_ImageManifest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_devtools_artifactregistry_v1_ImageManifest_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_devtools_artifactregistry_v1_ListDockerImagesRequest_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable @@ -104,7 +108,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "\n" + "2google/devtools/artifactregistry/v1/artifact.proto\022#google.devtools.artifactre" + "gistry.v1\032\037google/api/field_behavior.pro" - + "to\032\031google/api/resource.proto\032\037google/protobuf/timestamp.proto\"\230\003\n" + + "to\032\031google/api/resource.proto\032\037google/protobuf/timestamp.proto\"\201\004\n" + "\013DockerImage\022\021\n" + "\004name\030\001 \001(\tB\003\340A\002\022\020\n" + "\003uri\030\002 \001(\tB\003\340A\002\022\014\n" @@ -114,22 +118,32 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "media_type\030\006 \001(\t\022.\n\n" + "build_time\030\007 \001(\0132\032.google.protobuf.Timestamp\0224\n" + "\013update_time\030\010" - + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003:\220\001\352A\214\001\n" - + "+artifactregistry.googleapis.com/DockerImage\022]projects/{project}/l" - + "ocations/{location}/repositories/{repository}/dockerImages/{docker_image}\"g\n" + + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\025\n\r" + + "artifact_type\030\t \001(\t\022P\n" + + "\017image_manifests\030\013" + + " \003(\01322.google.devtools.artifactregistry.v1.ImageManifestB\003\340A\001:\220\001\352A\214\001\n" + + "+artifactregistry.googleapis.com/DockerImage\022]projects/{project}/locations/{locat" + + "ion}/repositories/{repository}/dockerImages/{docker_image}\"\262\001\n\r" + + "ImageManifest\022\031\n" + + "\014architecture\030\001 \001(\tB\003\340A\001\022\017\n" + + "\002os\030\002 \001(\tB\003\340A\001\022\023\n" + + "\006digest\030\003 \001(\tB\003\340A\001\022\027\n\n" + + "media_type\030\004 \001(\tB\003\340A\001\022\027\n\n" + + "os_version\030\005 \001(\tB\003\340A\001\022\030\n" + + "\013os_features\030\006 \003(\tB\003\340A\001\022\024\n" + + "\007variant\030\007 \001(\tB\003\340A\001\"g\n" + "\027ListDockerImagesRequest\022\023\n" + "\006parent\030\001 \001(\tB\003\340A\002\022\021\n" + "\tpage_size\030\002 \001(\005\022\022\n\n" + "page_token\030\003 \001(\t\022\020\n" + "\010order_by\030\004 \001(\t\"|\n" + "\030ListDockerImagesResponse\022G\n\r" - + "docker_images\030\001 \003(\01320.google.d" - + "evtools.artifactregistry.v1.DockerImage\022\027\n" + + "docker_images\030\001 \003(\01320.go" + + "ogle.devtools.artifactregistry.v1.DockerImage\022\027\n" + "\017next_page_token\030\002 \001(\t\"Z\n" + "\025GetDockerImageRequest\022A\n" + "\004name\030\001 \001(\tB3\340A\002\372A-\n" - + "+artifactregistry.googleapis.com/DockerImage\"\365\002\n" - + "\r" + + "+artifactregistry.googleapis.com/DockerImage\"\365\002\n\r" + "MavenArtifact\022\021\n" + "\004name\030\001 \001(\tB\003\340A\002\022\024\n" + "\007pom_uri\030\002 \001(\tB\003\340A\002\022\020\n" @@ -139,12 +153,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\013create_time\030\006 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + "\013update_time\030\007" + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003:\226\001\352A\222\001\n" - + "-artifactregistry.googleapis.com/MavenArtifact\022aproje" - + "cts/{project}/locations/{location}/repos" - + "itories/{repository}/mavenArtifacts/{maven_artifact}\"\211\001\n" + + "-artifactregistry.googleapis.com/MavenArtifact\022" + + "aprojects/{project}/locations/{location}" + + "/repositories/{repository}/mavenArtifacts/{maven_artifact}\"\211\001\n" + "\031ListMavenArtifactsRequest\022E\n" - + "\006parent\030\001 \001(" - + "\tB5\340A\002\372A/\022-artifactregistry.googleapis.com/MavenArtifact\022\021\n" + + "\006parent\030\001 \001(\tB5\340A\002\372A/\022-artifa" + + "ctregistry.googleapis.com/MavenArtifact\022\021\n" + "\tpage_size\030\002 \001(\005\022\022\n\n" + "page_token\030\003 \001(\t\"\202\001\n" + "\032ListMavenArtifactsResponse\022K\n" @@ -162,17 +176,17 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\013create_time\030\006 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" + "\013update_time\030\007" + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003:\215\001\352A\211\001\n" - + "*artifactregistry.googleapis.com/NpmPackage\022[projects/{p" - + "roject}/locations/{location}/repositorie" - + "s/{repository}/npmPackages/{npm_package}\"\203\001\n" + + "*artifactregistry.googleapis.com/NpmPackage\022[proje" + + "cts/{project}/locations/{location}/repos" + + "itories/{repository}/npmPackages/{npm_package}\"\203\001\n" + "\026ListNpmPackagesRequest\022B\n" + "\006parent\030\001 \001(" + "\tB2\340A\002\372A,\022*artifactregistry.googleapis.com/NpmPackage\022\021\n" + "\tpage_size\030\002 \001(\005\022\022\n\n" + "page_token\030\003 \001(\t\"y\n" + "\027ListNpmPackagesResponse\022E\n" - + "\014npm_packages\030\001" - + " \003(\0132/.google.devtools.artifactregistry.v1.NpmPackage\022\027\n" + + "\014npm_packages\030\001 \003(\0132/.google.d" + + "evtools.artifactregistry.v1.NpmPackage\022\027\n" + "\017next_page_token\030\002 \001(\t\"X\n" + "\024GetNpmPackageRequest\022@\n" + "\004name\030\001 \001(\tB2\340A\002\372A,\n" @@ -183,13 +197,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\014package_name\030\003 \001(\t\022\017\n" + "\007version\030\004 \001(\t\0224\n" + "\013create_time\030\006 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n" - + "\013update_time\030\007" - + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003:\226\001\352A\222\001\n" - + "-artifactregistry.googleapis.com/PythonPackage\022aprojects/{project}/locations/{locat" - + "ion}/repositories/{repository}/pythonPackages/{python_package}\"\211\001\n" + + "\013update_time\030\007 \001" + + "(\0132\032.google.protobuf.TimestampB\003\340A\003:\226\001\352A\222\001\n" + + "-artifactregistry.googleapis.com/PythonPackage\022aprojects/{project}/locations/" + + "{location}/repositories/{repository}/pythonPackages/{python_package}\"\211\001\n" + "\031ListPythonPackagesRequest\022E\n" - + "\006parent\030\001 \001(\tB5\340A\002\372A/\022-ar" - + "tifactregistry.googleapis.com/PythonPackage\022\021\n" + + "\006parent\030\001 \001(\tB5\340A\002\372" + + "A/\022-artifactregistry.googleapis.com/PythonPackage\022\021\n" + "\tpage_size\030\002 \001(\005\022\022\n\n" + "page_token\030\003 \001(\t\"\202\001\n" + "\032ListPythonPackagesResponse\022K\n" @@ -200,10 +214,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\004name\030\001 \001(\tB5\340A\002\372A/\n" + "-artifactregistry.googleapis.com/PythonPackageB\370\001\n" + "\'com.google.devtools.artifactregistry.v1B\r" - + "ArtifactProtoP\001ZPcloud.google.com/go/artifa" - + "ctregistry/apiv1/artifactregistrypb;artifactregistrypb\252\002" - + " Google.Cloud.ArtifactRegistry.V1\312\002 Google\\Cloud\\ArtifactRegistr" - + "y\\V1\352\002#Google::Cloud::ArtifactRegistry::V1b\006proto3" + + "ArtifactProtoP\001ZPcloud.google.com/go/" + + "artifactregistry/apiv1/artifactregistrypb;artifactregistrypb\252\002" + + " Google.Cloud.ArtifactRegistry.V1\312\002 Google\\Cloud\\ArtifactR" + + "egistry\\V1\352\002#Google::Cloud::ArtifactRegistry::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -227,9 +241,19 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MediaType", "BuildTime", "UpdateTime", + "ArtifactType", + "ImageManifests", }); - internal_static_google_devtools_artifactregistry_v1_ListDockerImagesRequest_descriptor = + internal_static_google_devtools_artifactregistry_v1_ImageManifest_descriptor = getDescriptor().getMessageTypes().get(1); + internal_static_google_devtools_artifactregistry_v1_ImageManifest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_devtools_artifactregistry_v1_ImageManifest_descriptor, + new java.lang.String[] { + "Architecture", "Os", "Digest", "MediaType", "OsVersion", "OsFeatures", "Variant", + }); + internal_static_google_devtools_artifactregistry_v1_ListDockerImagesRequest_descriptor = + getDescriptor().getMessageTypes().get(2); internal_static_google_devtools_artifactregistry_v1_ListDockerImagesRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListDockerImagesRequest_descriptor, @@ -237,7 +261,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Parent", "PageSize", "PageToken", "OrderBy", }); internal_static_google_devtools_artifactregistry_v1_ListDockerImagesResponse_descriptor = - getDescriptor().getMessageTypes().get(2); + getDescriptor().getMessageTypes().get(3); internal_static_google_devtools_artifactregistry_v1_ListDockerImagesResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListDockerImagesResponse_descriptor, @@ -245,7 +269,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "DockerImages", "NextPageToken", }); internal_static_google_devtools_artifactregistry_v1_GetDockerImageRequest_descriptor = - getDescriptor().getMessageTypes().get(3); + getDescriptor().getMessageTypes().get(4); internal_static_google_devtools_artifactregistry_v1_GetDockerImageRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_GetDockerImageRequest_descriptor, @@ -253,7 +277,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", }); internal_static_google_devtools_artifactregistry_v1_MavenArtifact_descriptor = - getDescriptor().getMessageTypes().get(4); + getDescriptor().getMessageTypes().get(5); internal_static_google_devtools_artifactregistry_v1_MavenArtifact_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_MavenArtifact_descriptor, @@ -261,7 +285,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", "PomUri", "GroupId", "ArtifactId", "Version", "CreateTime", "UpdateTime", }); internal_static_google_devtools_artifactregistry_v1_ListMavenArtifactsRequest_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(6); internal_static_google_devtools_artifactregistry_v1_ListMavenArtifactsRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListMavenArtifactsRequest_descriptor, @@ -269,7 +293,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Parent", "PageSize", "PageToken", }); internal_static_google_devtools_artifactregistry_v1_ListMavenArtifactsResponse_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(7); internal_static_google_devtools_artifactregistry_v1_ListMavenArtifactsResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListMavenArtifactsResponse_descriptor, @@ -277,7 +301,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "MavenArtifacts", "NextPageToken", }); internal_static_google_devtools_artifactregistry_v1_GetMavenArtifactRequest_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(8); internal_static_google_devtools_artifactregistry_v1_GetMavenArtifactRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_GetMavenArtifactRequest_descriptor, @@ -285,7 +309,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", }); internal_static_google_devtools_artifactregistry_v1_NpmPackage_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(9); internal_static_google_devtools_artifactregistry_v1_NpmPackage_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_NpmPackage_descriptor, @@ -293,7 +317,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", "PackageName", "Version", "Tags", "CreateTime", "UpdateTime", }); internal_static_google_devtools_artifactregistry_v1_ListNpmPackagesRequest_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(10); internal_static_google_devtools_artifactregistry_v1_ListNpmPackagesRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListNpmPackagesRequest_descriptor, @@ -301,7 +325,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Parent", "PageSize", "PageToken", }); internal_static_google_devtools_artifactregistry_v1_ListNpmPackagesResponse_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(11); internal_static_google_devtools_artifactregistry_v1_ListNpmPackagesResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListNpmPackagesResponse_descriptor, @@ -309,7 +333,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "NpmPackages", "NextPageToken", }); internal_static_google_devtools_artifactregistry_v1_GetNpmPackageRequest_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(12); internal_static_google_devtools_artifactregistry_v1_GetNpmPackageRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_GetNpmPackageRequest_descriptor, @@ -317,7 +341,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", }); internal_static_google_devtools_artifactregistry_v1_PythonPackage_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(13); internal_static_google_devtools_artifactregistry_v1_PythonPackage_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_PythonPackage_descriptor, @@ -325,7 +349,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Name", "Uri", "PackageName", "Version", "CreateTime", "UpdateTime", }); internal_static_google_devtools_artifactregistry_v1_ListPythonPackagesRequest_descriptor = - getDescriptor().getMessageTypes().get(13); + getDescriptor().getMessageTypes().get(14); internal_static_google_devtools_artifactregistry_v1_ListPythonPackagesRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListPythonPackagesRequest_descriptor, @@ -333,7 +357,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "Parent", "PageSize", "PageToken", }); internal_static_google_devtools_artifactregistry_v1_ListPythonPackagesResponse_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(15); internal_static_google_devtools_artifactregistry_v1_ListPythonPackagesResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_ListPythonPackagesResponse_descriptor, @@ -341,7 +365,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "PythonPackages", "NextPageToken", }); internal_static_google_devtools_artifactregistry_v1_GetPythonPackageRequest_descriptor = - getDescriptor().getMessageTypes().get(15); + getDescriptor().getMessageTypes().get(16); internal_static_google_devtools_artifactregistry_v1_GetPythonPackageRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_devtools_artifactregistry_v1_GetPythonPackageRequest_descriptor, diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Attachment.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Attachment.java index 7a142c6eb269..dadd209b110d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Attachment.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Attachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentName.java index 12131ff651aa..fdcfc5f09ea7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentOrBuilder.java index 29f91fb2e85a..50e2875d1c38 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentProto.java index 4ca8d3859b4b..5c3cbded08d3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/AttachmentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadata.java index 2b92c6a5ec13..78e31ff23979 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadataOrBuilder.java index 390a7b957db9..3049b32d263b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequest.java index ffb1fd708134..34a39603273b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequestOrBuilder.java index 582d301e8031..0d4abfeaa970 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/BatchDeleteVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicy.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicy.java index cd5e2ed07c9e..b88ff7556024 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicy.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyCondition.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyCondition.java index 96386d3cb940..f59a9e460d4c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyCondition.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyCondition.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyConditionOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyConditionOrBuilder.java index 7ac75297caff..f7d12dacafd0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyConditionOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyConditionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersions.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersions.java index a310e859f944..a0d13743523f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersions.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersionsOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersionsOrBuilder.java index 171cf343948a..d028768d7a6a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersionsOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyMostRecentVersionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyOrBuilder.java index 682d28f862fe..86a57ca60708 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CleanupPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequest.java index 598277de9343..f7a59d8abfc9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequestOrBuilder.java index 15c1de20dddd..ac58e2c8f393 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequest.java index a3528dfbef0e..7a4ed93a4fea 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequestOrBuilder.java index c34302c2668d..844c956aa3dc 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequest.java index 55ee874c31b3..4b7320b293d5 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequestOrBuilder.java index da85bf8e9335..d15a5af2cc16 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequest.java index 7660a539e5f6..da88133684f9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequestOrBuilder.java index d82d66044ce3..51910b7ad864 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/CreateTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequest.java index f259c27e4a0b..b9dab0ef519d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequestOrBuilder.java index 26b61e8a03a7..0d81fb772e19 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequest.java index 1d230107921a..ce47b7d3d035 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequestOrBuilder.java index 9cd65c0ebf52..3be9be155f62 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequest.java index 817ad41612a3..4b8759032e67 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequestOrBuilder.java index 58a438ce9ec2..084025b13caa 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeletePackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequest.java index dd80fdfb145a..3e6e8d0874d1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequestOrBuilder.java index 3246d79e75a6..8eb2fb8a2dbe 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequest.java index 207be0265f6c..b13f88ff703f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequestOrBuilder.java index 0be20229e9d2..b7b3a39d1652 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequest.java index 11d429e626fb..bc1496d0f0a0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequestOrBuilder.java index 2503590d9a58..8e423a6d94d3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequest.java index 430d42daf792..9fe9cbb79b3e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequestOrBuilder.java index adbe152481ba..20ab5cd542bf 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DeleteVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImage.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImage.java index 2393e100d56b..9e7fc66d2a8d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImage.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,6 +49,8 @@ private DockerImage() { uri_ = ""; tags_ = com.google.protobuf.LazyStringArrayList.emptyList(); mediaType_ = ""; + artifactType_ = ""; + imageManifests_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -84,7 +86,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { *
    * Required. registry_location, project_id, repository_name and image id forms
    * a unique image
-   * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+   * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
    * For example,
    * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
    * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -117,7 +119,7 @@ public java.lang.String getName() {
    * 
    * Required. registry_location, project_id, repository_name and image id forms
    * a unique image
-   * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+   * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
    * For example,
    * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
    * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -511,6 +513,158 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() {
     return updateTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : updateTime_;
   }
 
+  public static final int ARTIFACT_TYPE_FIELD_NUMBER = 9;
+
+  @SuppressWarnings("serial")
+  private volatile java.lang.Object artifactType_ = "";
+
+  /**
+   *
+   *
+   * 
+   * ArtifactType of this image, e.g. "application/vnd.example+type".
+   * If the `subject_digest` is set and no `artifact_type` is given, the
+   * `media_type` will be considered as the `artifact_type`. This field is
+   * returned as the `metadata.artifactType` field in the Version resource.
+   * 
+ * + * string artifact_type = 9; + * + * @return The artifactType. + */ + @java.lang.Override + public java.lang.String getArtifactType() { + java.lang.Object ref = artifactType_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + artifactType_ = s; + return s; + } + } + + /** + * + * + *
+   * ArtifactType of this image, e.g. "application/vnd.example+type".
+   * If the `subject_digest` is set and no `artifact_type` is given, the
+   * `media_type` will be considered as the `artifact_type`. This field is
+   * returned as the `metadata.artifactType` field in the Version resource.
+   * 
+ * + * string artifact_type = 9; + * + * @return The bytes for artifactType. + */ + @java.lang.Override + public com.google.protobuf.ByteString getArtifactTypeBytes() { + java.lang.Object ref = artifactType_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + artifactType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int IMAGE_MANIFESTS_FIELD_NUMBER = 11; + + @SuppressWarnings("serial") + private java.util.List imageManifests_; + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getImageManifestsList() { + return imageManifests_; + } + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public java.util.List + getImageManifestsOrBuilderList() { + return imageManifests_; + } + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public int getImageManifestsCount() { + return imageManifests_.size(); + } + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ImageManifest getImageManifests(int index) { + return imageManifests_.get(index); + } + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder getImageManifestsOrBuilder( + int index) { + return imageManifests_.get(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -549,6 +703,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000004) != 0)) { output.writeMessage(8, getUpdateTime()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(artifactType_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 9, artifactType_); + } + for (int i = 0; i < imageManifests_.size(); i++) { + output.writeMessage(11, imageManifests_.get(i)); + } getUnknownFields().writeTo(output); } @@ -587,6 +747,12 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, getUpdateTime()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(artifactType_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, artifactType_); + } + for (int i = 0; i < imageManifests_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(11, imageManifests_.get(i)); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -620,6 +786,8 @@ public boolean equals(final java.lang.Object obj) { if (hasUpdateTime()) { if (!getUpdateTime().equals(other.getUpdateTime())) return false; } + if (!getArtifactType().equals(other.getArtifactType())) return false; + if (!getImageManifestsList().equals(other.getImageManifestsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -655,6 +823,12 @@ public int hashCode() { hash = (37 * hash) + UPDATE_TIME_FIELD_NUMBER; hash = (53 * hash) + getUpdateTime().hashCode(); } + hash = (37 * hash) + ARTIFACT_TYPE_FIELD_NUMBER; + hash = (53 * hash) + getArtifactType().hashCode(); + if (getImageManifestsCount() > 0) { + hash = (37 * hash) + IMAGE_MANIFESTS_FIELD_NUMBER; + hash = (53 * hash) + getImageManifestsList().hashCode(); + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -804,6 +978,7 @@ private void maybeForceBuilderInitialization() { getUploadTimeFieldBuilder(); getBuildTimeFieldBuilder(); getUpdateTimeFieldBuilder(); + getImageManifestsFieldBuilder(); } } @@ -831,6 +1006,14 @@ public Builder clear() { updateTimeBuilder_.dispose(); updateTimeBuilder_ = null; } + artifactType_ = ""; + if (imageManifestsBuilder_ == null) { + imageManifests_ = java.util.Collections.emptyList(); + } else { + imageManifests_ = null; + imageManifestsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000200); return this; } @@ -858,6 +1041,7 @@ public com.google.devtools.artifactregistry.v1.DockerImage build() { public com.google.devtools.artifactregistry.v1.DockerImage buildPartial() { com.google.devtools.artifactregistry.v1.DockerImage result = new com.google.devtools.artifactregistry.v1.DockerImage(this); + buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } @@ -865,6 +1049,19 @@ public com.google.devtools.artifactregistry.v1.DockerImage buildPartial() { return result; } + private void buildPartialRepeatedFields( + com.google.devtools.artifactregistry.v1.DockerImage result) { + if (imageManifestsBuilder_ == null) { + if (((bitField0_ & 0x00000200) != 0)) { + imageManifests_ = java.util.Collections.unmodifiableList(imageManifests_); + bitField0_ = (bitField0_ & ~0x00000200); + } + result.imageManifests_ = imageManifests_; + } else { + result.imageManifests_ = imageManifestsBuilder_.build(); + } + } + private void buildPartial0(com.google.devtools.artifactregistry.v1.DockerImage result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { @@ -896,6 +1093,9 @@ private void buildPartial0(com.google.devtools.artifactregistry.v1.DockerImage r result.updateTime_ = updateTimeBuilder_ == null ? updateTime_ : updateTimeBuilder_.build(); to_bitField0_ |= 0x00000004; } + if (((from_bitField0_ & 0x00000100) != 0)) { + result.artifactType_ = artifactType_; + } result.bitField0_ |= to_bitField0_; } @@ -982,6 +1182,38 @@ public Builder mergeFrom(com.google.devtools.artifactregistry.v1.DockerImage oth if (other.hasUpdateTime()) { mergeUpdateTime(other.getUpdateTime()); } + if (!other.getArtifactType().isEmpty()) { + artifactType_ = other.artifactType_; + bitField0_ |= 0x00000100; + onChanged(); + } + if (imageManifestsBuilder_ == null) { + if (!other.imageManifests_.isEmpty()) { + if (imageManifests_.isEmpty()) { + imageManifests_ = other.imageManifests_; + bitField0_ = (bitField0_ & ~0x00000200); + } else { + ensureImageManifestsIsMutable(); + imageManifests_.addAll(other.imageManifests_); + } + onChanged(); + } + } else { + if (!other.imageManifests_.isEmpty()) { + if (imageManifestsBuilder_.isEmpty()) { + imageManifestsBuilder_.dispose(); + imageManifestsBuilder_ = null; + imageManifests_ = other.imageManifests_; + bitField0_ = (bitField0_ & ~0x00000200); + imageManifestsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getImageManifestsFieldBuilder() + : null; + } else { + imageManifestsBuilder_.addAllMessages(other.imageManifests_); + } + } + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -1057,6 +1289,26 @@ public Builder mergeFrom( bitField0_ |= 0x00000080; break; } // case 66 + case 74: + { + artifactType_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000100; + break; + } // case 74 + case 90: + { + com.google.devtools.artifactregistry.v1.ImageManifest m = + input.readMessage( + com.google.devtools.artifactregistry.v1.ImageManifest.parser(), + extensionRegistry); + if (imageManifestsBuilder_ == null) { + ensureImageManifestsIsMutable(); + imageManifests_.add(m); + } else { + imageManifestsBuilder_.addMessage(m); + } + break; + } // case 90 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -1084,7 +1336,7 @@ public Builder mergeFrom( *
      * Required. registry_location, project_id, repository_name and image id forms
      * a unique image
-     * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+     * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
      * For example,
      * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
      * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -1116,7 +1368,7 @@ public java.lang.String getName() {
      * 
      * Required. registry_location, project_id, repository_name and image id forms
      * a unique image
-     * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+     * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
      * For example,
      * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
      * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -1148,7 +1400,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      * 
      * Required. registry_location, project_id, repository_name and image id forms
      * a unique image
-     * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+     * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
      * For example,
      * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
      * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -1179,7 +1431,7 @@ public Builder setName(java.lang.String value) {
      * 
      * Required. registry_location, project_id, repository_name and image id forms
      * a unique image
-     * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+     * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
      * For example,
      * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
      * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -1206,7 +1458,7 @@ public Builder clearName() {
      * 
      * Required. registry_location, project_id, repository_name and image id forms
      * a unique image
-     * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+     * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
      * For example,
      * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
      * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -2356,6 +2608,567 @@ public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() {
       return updateTimeBuilder_;
     }
 
+    private java.lang.Object artifactType_ = "";
+
+    /**
+     *
+     *
+     * 
+     * ArtifactType of this image, e.g. "application/vnd.example+type".
+     * If the `subject_digest` is set and no `artifact_type` is given, the
+     * `media_type` will be considered as the `artifact_type`. This field is
+     * returned as the `metadata.artifactType` field in the Version resource.
+     * 
+ * + * string artifact_type = 9; + * + * @return The artifactType. + */ + public java.lang.String getArtifactType() { + java.lang.Object ref = artifactType_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + artifactType_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * ArtifactType of this image, e.g. "application/vnd.example+type".
+     * If the `subject_digest` is set and no `artifact_type` is given, the
+     * `media_type` will be considered as the `artifact_type`. This field is
+     * returned as the `metadata.artifactType` field in the Version resource.
+     * 
+ * + * string artifact_type = 9; + * + * @return The bytes for artifactType. + */ + public com.google.protobuf.ByteString getArtifactTypeBytes() { + java.lang.Object ref = artifactType_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + artifactType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * ArtifactType of this image, e.g. "application/vnd.example+type".
+     * If the `subject_digest` is set and no `artifact_type` is given, the
+     * `media_type` will be considered as the `artifact_type`. This field is
+     * returned as the `metadata.artifactType` field in the Version resource.
+     * 
+ * + * string artifact_type = 9; + * + * @param value The artifactType to set. + * @return This builder for chaining. + */ + public Builder setArtifactType(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + artifactType_ = value; + bitField0_ |= 0x00000100; + onChanged(); + return this; + } + + /** + * + * + *
+     * ArtifactType of this image, e.g. "application/vnd.example+type".
+     * If the `subject_digest` is set and no `artifact_type` is given, the
+     * `media_type` will be considered as the `artifact_type`. This field is
+     * returned as the `metadata.artifactType` field in the Version resource.
+     * 
+ * + * string artifact_type = 9; + * + * @return This builder for chaining. + */ + public Builder clearArtifactType() { + artifactType_ = getDefaultInstance().getArtifactType(); + bitField0_ = (bitField0_ & ~0x00000100); + onChanged(); + return this; + } + + /** + * + * + *
+     * ArtifactType of this image, e.g. "application/vnd.example+type".
+     * If the `subject_digest` is set and no `artifact_type` is given, the
+     * `media_type` will be considered as the `artifact_type`. This field is
+     * returned as the `metadata.artifactType` field in the Version resource.
+     * 
+ * + * string artifact_type = 9; + * + * @param value The bytes for artifactType to set. + * @return This builder for chaining. + */ + public Builder setArtifactTypeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + artifactType_ = value; + bitField0_ |= 0x00000100; + onChanged(); + return this; + } + + private java.util.List imageManifests_ = + java.util.Collections.emptyList(); + + private void ensureImageManifestsIsMutable() { + if (!((bitField0_ & 0x00000200) != 0)) { + imageManifests_ = + new java.util.ArrayList( + imageManifests_); + bitField0_ |= 0x00000200; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.ImageManifest, + com.google.devtools.artifactregistry.v1.ImageManifest.Builder, + com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder> + imageManifestsBuilder_; + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getImageManifestsList() { + if (imageManifestsBuilder_ == null) { + return java.util.Collections.unmodifiableList(imageManifests_); + } else { + return imageManifestsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public int getImageManifestsCount() { + if (imageManifestsBuilder_ == null) { + return imageManifests_.size(); + } else { + return imageManifestsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.devtools.artifactregistry.v1.ImageManifest getImageManifests(int index) { + if (imageManifestsBuilder_ == null) { + return imageManifests_.get(index); + } else { + return imageManifestsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setImageManifests( + int index, com.google.devtools.artifactregistry.v1.ImageManifest value) { + if (imageManifestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureImageManifestsIsMutable(); + imageManifests_.set(index, value); + onChanged(); + } else { + imageManifestsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder setImageManifests( + int index, com.google.devtools.artifactregistry.v1.ImageManifest.Builder builderForValue) { + if (imageManifestsBuilder_ == null) { + ensureImageManifestsIsMutable(); + imageManifests_.set(index, builderForValue.build()); + onChanged(); + } else { + imageManifestsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addImageManifests(com.google.devtools.artifactregistry.v1.ImageManifest value) { + if (imageManifestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureImageManifestsIsMutable(); + imageManifests_.add(value); + onChanged(); + } else { + imageManifestsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addImageManifests( + int index, com.google.devtools.artifactregistry.v1.ImageManifest value) { + if (imageManifestsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureImageManifestsIsMutable(); + imageManifests_.add(index, value); + onChanged(); + } else { + imageManifestsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addImageManifests( + com.google.devtools.artifactregistry.v1.ImageManifest.Builder builderForValue) { + if (imageManifestsBuilder_ == null) { + ensureImageManifestsIsMutable(); + imageManifests_.add(builderForValue.build()); + onChanged(); + } else { + imageManifestsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addImageManifests( + int index, com.google.devtools.artifactregistry.v1.ImageManifest.Builder builderForValue) { + if (imageManifestsBuilder_ == null) { + ensureImageManifestsIsMutable(); + imageManifests_.add(index, builderForValue.build()); + onChanged(); + } else { + imageManifestsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder addAllImageManifests( + java.lang.Iterable + values) { + if (imageManifestsBuilder_ == null) { + ensureImageManifestsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, imageManifests_); + onChanged(); + } else { + imageManifestsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder clearImageManifests() { + if (imageManifestsBuilder_ == null) { + imageManifests_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000200); + onChanged(); + } else { + imageManifestsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public Builder removeImageManifests(int index) { + if (imageManifestsBuilder_ == null) { + ensureImageManifestsIsMutable(); + imageManifests_.remove(index); + onChanged(); + } else { + imageManifestsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.devtools.artifactregistry.v1.ImageManifest.Builder getImageManifestsBuilder( + int index) { + return getImageManifestsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder + getImageManifestsOrBuilder(int index) { + if (imageManifestsBuilder_ == null) { + return imageManifests_.get(index); + } else { + return imageManifestsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getImageManifestsOrBuilderList() { + if (imageManifestsBuilder_ != null) { + return imageManifestsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(imageManifests_); + } + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.devtools.artifactregistry.v1.ImageManifest.Builder + addImageManifestsBuilder() { + return getImageManifestsFieldBuilder() + .addBuilder(com.google.devtools.artifactregistry.v1.ImageManifest.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public com.google.devtools.artifactregistry.v1.ImageManifest.Builder addImageManifestsBuilder( + int index) { + return getImageManifestsFieldBuilder() + .addBuilder( + index, com.google.devtools.artifactregistry.v1.ImageManifest.getDefaultInstance()); + } + + /** + * + * + *
+     * Optional. For multi-arch images (manifest lists), this field contains the
+     * list of image manifests.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + public java.util.List + getImageManifestsBuilderList() { + return getImageManifestsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.ImageManifest, + com.google.devtools.artifactregistry.v1.ImageManifest.Builder, + com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder> + getImageManifestsFieldBuilder() { + if (imageManifestsBuilder_ == null) { + imageManifestsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.ImageManifest, + com.google.devtools.artifactregistry.v1.ImageManifest.Builder, + com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder>( + imageManifests_, + ((bitField0_ & 0x00000200) != 0), + getParentForChildren(), + isClean()); + imageManifests_ = null; + } + return imageManifestsBuilder_; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageName.java index 4a34dbbf579b..3057dc51f9a8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageOrBuilder.java index 7b3bdfafbd8b..daec4d04a27a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/DockerImageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ public interface DockerImageOrBuilder *
    * Required. registry_location, project_id, repository_name and image id forms
    * a unique image
-   * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+   * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
    * For example,
    * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
    * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -52,7 +52,7 @@ public interface DockerImageOrBuilder
    * 
    * Required. registry_location, project_id, repository_name and image id forms
    * a unique image
-   * name:`projects/<project_id>/locations/<location>/repository/<repository_name>/dockerImages/<docker_image>`.
+   * name:`projects/<project_id>/locations/<location>/repositories/<repository_name>/dockerImages/<docker_image>`.
    * For example,
    * "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/
    * nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf",
@@ -324,4 +324,108 @@ public interface DockerImageOrBuilder
    * 
    */
   com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
+
+  /**
+   *
+   *
+   * 
+   * ArtifactType of this image, e.g. "application/vnd.example+type".
+   * If the `subject_digest` is set and no `artifact_type` is given, the
+   * `media_type` will be considered as the `artifact_type`. This field is
+   * returned as the `metadata.artifactType` field in the Version resource.
+   * 
+ * + * string artifact_type = 9; + * + * @return The artifactType. + */ + java.lang.String getArtifactType(); + + /** + * + * + *
+   * ArtifactType of this image, e.g. "application/vnd.example+type".
+   * If the `subject_digest` is set and no `artifact_type` is given, the
+   * `media_type` will be considered as the `artifact_type`. This field is
+   * returned as the `metadata.artifactType` field in the Version resource.
+   * 
+ * + * string artifact_type = 9; + * + * @return The bytes for artifactType. + */ + com.google.protobuf.ByteString getArtifactTypeBytes(); + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List getImageManifestsList(); + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.devtools.artifactregistry.v1.ImageManifest getImageManifests(int index); + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + int getImageManifestsCount(); + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + java.util.List + getImageManifestsOrBuilderList(); + + /** + * + * + *
+   * Optional. For multi-arch images (manifest lists), this field contains the
+   * list of image manifests.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ImageManifest image_manifests = 11 [(.google.api.field_behavior) = OPTIONAL]; + * + */ + com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder getImageManifestsOrBuilder( + int index); } diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactMetadata.java new file mode 100644 index 000000000000..92b725b9230e --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactMetadata.java @@ -0,0 +1,2696 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +/** + * + * + *
+ * The LRO metadata for exporting an artifact.
+ * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactMetadata} + */ +public final class ExportArtifactMetadata extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1.ExportArtifactMetadata) + ExportArtifactMetadataOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ExportArtifactMetadata.newBuilder() to construct. + private ExportArtifactMetadata(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ExportArtifactMetadata() { + exportedFiles_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ExportArtifactMetadata(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.class, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.Builder.class); + } + + public interface ExportedFileOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+     * Cloud Storage Object path of the exported file. Examples:
+     * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+     * 
+ * + * string gcs_object_path = 2; + * + * @return Whether the gcsObjectPath field is set. + */ + boolean hasGcsObjectPath(); + + /** + * + * + *
+     * Cloud Storage Object path of the exported file. Examples:
+     * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+     * 
+ * + * string gcs_object_path = 2; + * + * @return The gcsObjectPath. + */ + java.lang.String getGcsObjectPath(); + + /** + * + * + *
+     * Cloud Storage Object path of the exported file. Examples:
+     * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+     * 
+ * + * string gcs_object_path = 2; + * + * @return The bytes for gcsObjectPath. + */ + com.google.protobuf.ByteString getGcsObjectPathBytes(); + + /** + * + * + *
+     * Name of the exported artifact file.
+     * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+     * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return The name. + */ + java.lang.String getName(); + + /** + * + * + *
+     * Name of the exported artifact file.
+     * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+     * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for name. + */ + com.google.protobuf.ByteString getNameBytes(); + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + java.util.List getHashesList(); + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + com.google.devtools.artifactregistry.v1.Hash getHashes(int index); + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + int getHashesCount(); + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + java.util.List + getHashesOrBuilderList(); + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + com.google.devtools.artifactregistry.v1.HashOrBuilder getHashesOrBuilder(int index); + + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.DestinationCase + getDestinationCase(); + } + + /** + * + * + *
+   * The exported artifact file.
+   * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile} + */ + public static final class ExportedFile extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) + ExportedFileOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ExportedFile.newBuilder() to construct. + private ExportedFile(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ExportedFile() { + name_ = ""; + hashes_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ExportedFile(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.class, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + .class); + } + + private int destinationCase_ = 0; + + @SuppressWarnings("serial") + private java.lang.Object destination_; + + public enum DestinationCase + implements + com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + GCS_OBJECT_PATH(2), + DESTINATION_NOT_SET(0); + private final int value; + + private DestinationCase(int value) { + this.value = value; + } + + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static DestinationCase valueOf(int value) { + return forNumber(value); + } + + public static DestinationCase forNumber(int value) { + switch (value) { + case 2: + return GCS_OBJECT_PATH; + case 0: + return DESTINATION_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public DestinationCase getDestinationCase() { + return DestinationCase.forNumber(destinationCase_); + } + + public static final int GCS_OBJECT_PATH_FIELD_NUMBER = 2; + + /** + * + * + *
+     * Cloud Storage Object path of the exported file. Examples:
+     * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+     * 
+ * + * string gcs_object_path = 2; + * + * @return Whether the gcsObjectPath field is set. + */ + public boolean hasGcsObjectPath() { + return destinationCase_ == 2; + } + + /** + * + * + *
+     * Cloud Storage Object path of the exported file. Examples:
+     * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+     * 
+ * + * string gcs_object_path = 2; + * + * @return The gcsObjectPath. + */ + public java.lang.String getGcsObjectPath() { + java.lang.Object ref = ""; + if (destinationCase_ == 2) { + ref = destination_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (destinationCase_ == 2) { + destination_ = s; + } + return s; + } + } + + /** + * + * + *
+     * Cloud Storage Object path of the exported file. Examples:
+     * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+     * 
+ * + * string gcs_object_path = 2; + * + * @return The bytes for gcsObjectPath. + */ + public com.google.protobuf.ByteString getGcsObjectPathBytes() { + java.lang.Object ref = ""; + if (destinationCase_ == 2) { + ref = destination_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (destinationCase_ == 2) { + destination_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int NAME_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object name_ = ""; + + /** + * + * + *
+     * Name of the exported artifact file.
+     * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+     * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return The name. + */ + @java.lang.Override + public java.lang.String getName() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; + return s; + } + } + + /** + * + * + *
+     * Name of the exported artifact file.
+     * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+     * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for name. + */ + @java.lang.Override + public com.google.protobuf.ByteString getNameBytes() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + name_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int HASHES_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private java.util.List hashes_; + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + @java.lang.Override + public java.util.List getHashesList() { + return hashes_; + } + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + @java.lang.Override + public java.util.List + getHashesOrBuilderList() { + return hashes_; + } + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + @java.lang.Override + public int getHashesCount() { + return hashes_.size(); + } + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.Hash getHashes(int index) { + return hashes_.get(index); + } + + /** + * + * + *
+     * The hashes of the file content.
+     * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.HashOrBuilder getHashesOrBuilder(int index) { + return hashes_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); + } + if (destinationCase_ == 2) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, destination_); + } + for (int i = 0; i < hashes_.size(); i++) { + output.writeMessage(3, hashes_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); + } + if (destinationCase_ == 2) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, destination_); + } + for (int i = 0; i < hashes_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, hashes_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile)) { + return super.equals(obj); + } + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile other = + (com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) obj; + + if (!getName().equals(other.getName())) return false; + if (!getHashesList().equals(other.getHashesList())) return false; + if (!getDestinationCase().equals(other.getDestinationCase())) return false; + switch (destinationCase_) { + case 2: + if (!getGcsObjectPath().equals(other.getGcsObjectPath())) return false; + break; + case 0: + default: + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + NAME_FIELD_NUMBER; + hash = (53 * hash) + getName().hashCode(); + if (getHashesCount() > 0) { + hash = (37 * hash) + HASHES_FIELD_NUMBER; + hash = (53 * hash) + getHashesList().hashCode(); + } + switch (destinationCase_) { + case 2: + hash = (37 * hash) + GCS_OBJECT_PATH_FIELD_NUMBER; + hash = (53 * hash) + getGcsObjectPath().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom(java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom(com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+     * The exported artifact file.
+     * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile} + */ + public static final class Builder + extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.class, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + .class); + } + + // Construct using + // com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + name_ = ""; + if (hashesBuilder_ == null) { + hashes_ = java.util.Collections.emptyList(); + } else { + hashes_ = null; + hashesBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); + destinationCase_ = 0; + destination_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_descriptor; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + getDefaultInstanceForType() { + return com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + .getDefaultInstance(); + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile build() { + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile result = + buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + buildPartial() { + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile result = + new com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + buildPartialOneofs(result); + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile result) { + if (hashesBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0)) { + hashes_ = java.util.Collections.unmodifiableList(hashes_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.hashes_ = hashes_; + } else { + result.hashes_ = hashesBuilder_.build(); + } + } + + private void buildPartial0( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.name_ = name_; + } + } + + private void buildPartialOneofs( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile result) { + result.destinationCase_ = destinationCase_; + result.destination_ = this.destination_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, + java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) { + return mergeFrom( + (com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile other) { + if (other + == com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + .getDefaultInstance()) return this; + if (!other.getName().isEmpty()) { + name_ = other.name_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (hashesBuilder_ == null) { + if (!other.hashes_.isEmpty()) { + if (hashes_.isEmpty()) { + hashes_ = other.hashes_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensureHashesIsMutable(); + hashes_.addAll(other.hashes_); + } + onChanged(); + } + } else { + if (!other.hashes_.isEmpty()) { + if (hashesBuilder_.isEmpty()) { + hashesBuilder_.dispose(); + hashesBuilder_ = null; + hashes_ = other.hashes_; + bitField0_ = (bitField0_ & ~0x00000004); + hashesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getHashesFieldBuilder() + : null; + } else { + hashesBuilder_.addAllMessages(other.hashes_); + } + } + } + switch (other.getDestinationCase()) { + case GCS_OBJECT_PATH: + { + destinationCase_ = 2; + destination_ = other.destination_; + onChanged(); + break; + } + case DESTINATION_NOT_SET: + { + break; + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + name_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + destinationCase_ = 2; + destination_ = s; + break; + } // case 18 + case 26: + { + com.google.devtools.artifactregistry.v1.Hash m = + input.readMessage( + com.google.devtools.artifactregistry.v1.Hash.parser(), extensionRegistry); + if (hashesBuilder_ == null) { + ensureHashesIsMutable(); + hashes_.add(m); + } else { + hashesBuilder_.addMessage(m); + } + break; + } // case 26 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int destinationCase_ = 0; + private java.lang.Object destination_; + + public DestinationCase getDestinationCase() { + return DestinationCase.forNumber(destinationCase_); + } + + public Builder clearDestination() { + destinationCase_ = 0; + destination_ = null; + onChanged(); + return this; + } + + private int bitField0_; + + /** + * + * + *
+       * Cloud Storage Object path of the exported file. Examples:
+       * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+       * 
+ * + * string gcs_object_path = 2; + * + * @return Whether the gcsObjectPath field is set. + */ + @java.lang.Override + public boolean hasGcsObjectPath() { + return destinationCase_ == 2; + } + + /** + * + * + *
+       * Cloud Storage Object path of the exported file. Examples:
+       * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+       * 
+ * + * string gcs_object_path = 2; + * + * @return The gcsObjectPath. + */ + @java.lang.Override + public java.lang.String getGcsObjectPath() { + java.lang.Object ref = ""; + if (destinationCase_ == 2) { + ref = destination_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (destinationCase_ == 2) { + destination_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+       * Cloud Storage Object path of the exported file. Examples:
+       * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+       * 
+ * + * string gcs_object_path = 2; + * + * @return The bytes for gcsObjectPath. + */ + @java.lang.Override + public com.google.protobuf.ByteString getGcsObjectPathBytes() { + java.lang.Object ref = ""; + if (destinationCase_ == 2) { + ref = destination_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (destinationCase_ == 2) { + destination_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+       * Cloud Storage Object path of the exported file. Examples:
+       * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+       * 
+ * + * string gcs_object_path = 2; + * + * @param value The gcsObjectPath to set. + * @return This builder for chaining. + */ + public Builder setGcsObjectPath(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + destinationCase_ = 2; + destination_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+       * Cloud Storage Object path of the exported file. Examples:
+       * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+       * 
+ * + * string gcs_object_path = 2; + * + * @return This builder for chaining. + */ + public Builder clearGcsObjectPath() { + if (destinationCase_ == 2) { + destinationCase_ = 0; + destination_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+       * Cloud Storage Object path of the exported file. Examples:
+       * `dst_bucket/file1`, `dst_bucket/sub_dir/file1`
+       * 
+ * + * string gcs_object_path = 2; + * + * @param value The bytes for gcsObjectPath to set. + * @return This builder for chaining. + */ + public Builder setGcsObjectPathBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + destinationCase_ = 2; + destination_ = value; + onChanged(); + return this; + } + + private java.lang.Object name_ = ""; + + /** + * + * + *
+       * Name of the exported artifact file.
+       * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+       * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return The name. + */ + public java.lang.String getName() { + java.lang.Object ref = name_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+       * Name of the exported artifact file.
+       * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+       * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for name. + */ + public com.google.protobuf.ByteString getNameBytes() { + java.lang.Object ref = name_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + name_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+       * Name of the exported artifact file.
+       * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+       * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @param value The name to set. + * @return This builder for chaining. + */ + public Builder setName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + name_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+       * Name of the exported artifact file.
+       * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+       * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @return This builder for chaining. + */ + public Builder clearName() { + name_ = getDefaultInstance().getName(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+       * Name of the exported artifact file.
+       * Format: `projects/p1/locations/us/repositories/repo1/files/file1`
+       * 
+ * + * string name = 1 [(.google.api.resource_reference) = { ... } + * + * @param value The bytes for name to set. + * @return This builder for chaining. + */ + public Builder setNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + name_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.util.List hashes_ = + java.util.Collections.emptyList(); + + private void ensureHashesIsMutable() { + if (!((bitField0_ & 0x00000004) != 0)) { + hashes_ = new java.util.ArrayList(hashes_); + bitField0_ |= 0x00000004; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Hash, + com.google.devtools.artifactregistry.v1.Hash.Builder, + com.google.devtools.artifactregistry.v1.HashOrBuilder> + hashesBuilder_; + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public java.util.List getHashesList() { + if (hashesBuilder_ == null) { + return java.util.Collections.unmodifiableList(hashes_); + } else { + return hashesBuilder_.getMessageList(); + } + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public int getHashesCount() { + if (hashesBuilder_ == null) { + return hashes_.size(); + } else { + return hashesBuilder_.getCount(); + } + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public com.google.devtools.artifactregistry.v1.Hash getHashes(int index) { + if (hashesBuilder_ == null) { + return hashes_.get(index); + } else { + return hashesBuilder_.getMessage(index); + } + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder setHashes(int index, com.google.devtools.artifactregistry.v1.Hash value) { + if (hashesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureHashesIsMutable(); + hashes_.set(index, value); + onChanged(); + } else { + hashesBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder setHashes( + int index, com.google.devtools.artifactregistry.v1.Hash.Builder builderForValue) { + if (hashesBuilder_ == null) { + ensureHashesIsMutable(); + hashes_.set(index, builderForValue.build()); + onChanged(); + } else { + hashesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder addHashes(com.google.devtools.artifactregistry.v1.Hash value) { + if (hashesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureHashesIsMutable(); + hashes_.add(value); + onChanged(); + } else { + hashesBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder addHashes(int index, com.google.devtools.artifactregistry.v1.Hash value) { + if (hashesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureHashesIsMutable(); + hashes_.add(index, value); + onChanged(); + } else { + hashesBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder addHashes( + com.google.devtools.artifactregistry.v1.Hash.Builder builderForValue) { + if (hashesBuilder_ == null) { + ensureHashesIsMutable(); + hashes_.add(builderForValue.build()); + onChanged(); + } else { + hashesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder addHashes( + int index, com.google.devtools.artifactregistry.v1.Hash.Builder builderForValue) { + if (hashesBuilder_ == null) { + ensureHashesIsMutable(); + hashes_.add(index, builderForValue.build()); + onChanged(); + } else { + hashesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder addAllHashes( + java.lang.Iterable values) { + if (hashesBuilder_ == null) { + ensureHashesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, hashes_); + onChanged(); + } else { + hashesBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder clearHashes() { + if (hashesBuilder_ == null) { + hashes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + } else { + hashesBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public Builder removeHashes(int index) { + if (hashesBuilder_ == null) { + ensureHashesIsMutable(); + hashes_.remove(index); + onChanged(); + } else { + hashesBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public com.google.devtools.artifactregistry.v1.Hash.Builder getHashesBuilder(int index) { + return getHashesFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public com.google.devtools.artifactregistry.v1.HashOrBuilder getHashesOrBuilder(int index) { + if (hashesBuilder_ == null) { + return hashes_.get(index); + } else { + return hashesBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public java.util.List + getHashesOrBuilderList() { + if (hashesBuilder_ != null) { + return hashesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(hashes_); + } + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public com.google.devtools.artifactregistry.v1.Hash.Builder addHashesBuilder() { + return getHashesFieldBuilder() + .addBuilder(com.google.devtools.artifactregistry.v1.Hash.getDefaultInstance()); + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public com.google.devtools.artifactregistry.v1.Hash.Builder addHashesBuilder(int index) { + return getHashesFieldBuilder() + .addBuilder(index, com.google.devtools.artifactregistry.v1.Hash.getDefaultInstance()); + } + + /** + * + * + *
+       * The hashes of the file content.
+       * 
+ * + * repeated .google.devtools.artifactregistry.v1.Hash hashes = 3; + */ + public java.util.List + getHashesBuilderList() { + return getHashesFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Hash, + com.google.devtools.artifactregistry.v1.Hash.Builder, + com.google.devtools.artifactregistry.v1.HashOrBuilder> + getHashesFieldBuilder() { + if (hashesBuilder_ == null) { + hashesBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Hash, + com.google.devtools.artifactregistry.v1.Hash.Builder, + com.google.devtools.artifactregistry.v1.HashOrBuilder>( + hashes_, ((bitField0_ & 0x00000004) != 0), getParentForChildren(), isClean()); + hashes_ = null; + } + return hashesBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) + } + + // @@protoc_insertion_point(class_scope:google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile) + private static final com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile(); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ExportedFile parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException() + .setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + } + + public static final int EXPORTED_FILES_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private java.util.List< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile> + exportedFiles_; + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + @java.lang.Override + public java.util.List + getExportedFilesList() { + return exportedFiles_; + } + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + @java.lang.Override + public java.util.List< + ? extends + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder> + getExportedFilesOrBuilderList() { + return exportedFiles_; + } + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + @java.lang.Override + public int getExportedFilesCount() { + return exportedFiles_.size(); + } + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + getExportedFiles(int index) { + return exportedFiles_.get(index); + } + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder + getExportedFilesOrBuilder(int index) { + return exportedFiles_.get(index); + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < exportedFiles_.size(); i++) { + output.writeMessage(1, exportedFiles_.get(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < exportedFiles_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, exportedFiles_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.devtools.artifactregistry.v1.ExportArtifactMetadata)) { + return super.equals(obj); + } + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata other = + (com.google.devtools.artifactregistry.v1.ExportArtifactMetadata) obj; + + if (!getExportedFilesList().equals(other.getExportedFilesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getExportedFilesCount() > 0) { + hash = (37 * hash) + EXPORTED_FILES_FIELD_NUMBER; + hash = (53 * hash) + getExportedFilesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * The LRO metadata for exporting an artifact.
+   * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactMetadata} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.devtools.artifactregistry.v1.ExportArtifactMetadata) + com.google.devtools.artifactregistry.v1.ExportArtifactMetadataOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.class, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.Builder.class); + } + + // Construct using com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + if (exportedFilesBuilder_ == null) { + exportedFiles_ = java.util.Collections.emptyList(); + } else { + exportedFiles_ = null; + exportedFilesBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata + getDefaultInstanceForType() { + return com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.getDefaultInstance(); + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata build() { + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata buildPartial() { + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata result = + new com.google.devtools.artifactregistry.v1.ExportArtifactMetadata(this); + buildPartialRepeatedFields(result); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartialRepeatedFields( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata result) { + if (exportedFilesBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + exportedFiles_ = java.util.Collections.unmodifiableList(exportedFiles_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.exportedFiles_ = exportedFiles_; + } else { + result.exportedFiles_ = exportedFilesBuilder_.build(); + } + } + + private void buildPartial0( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata result) { + int from_bitField0_ = bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.devtools.artifactregistry.v1.ExportArtifactMetadata) { + return mergeFrom((com.google.devtools.artifactregistry.v1.ExportArtifactMetadata) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.devtools.artifactregistry.v1.ExportArtifactMetadata other) { + if (other + == com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.getDefaultInstance()) + return this; + if (exportedFilesBuilder_ == null) { + if (!other.exportedFiles_.isEmpty()) { + if (exportedFiles_.isEmpty()) { + exportedFiles_ = other.exportedFiles_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureExportedFilesIsMutable(); + exportedFiles_.addAll(other.exportedFiles_); + } + onChanged(); + } + } else { + if (!other.exportedFiles_.isEmpty()) { + if (exportedFilesBuilder_.isEmpty()) { + exportedFilesBuilder_.dispose(); + exportedFilesBuilder_ = null; + exportedFiles_ = other.exportedFiles_; + bitField0_ = (bitField0_ & ~0x00000001); + exportedFilesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getExportedFilesFieldBuilder() + : null; + } else { + exportedFilesBuilder_.addAllMessages(other.exportedFiles_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile m = + input.readMessage( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + .parser(), + extensionRegistry); + if (exportedFilesBuilder_ == null) { + ensureExportedFilesIsMutable(); + exportedFiles_.add(m); + } else { + exportedFilesBuilder_.addMessage(m); + } + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.util.List< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile> + exportedFiles_ = java.util.Collections.emptyList(); + + private void ensureExportedFilesIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + exportedFiles_ = + new java.util.ArrayList< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile>( + exportedFiles_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder> + exportedFilesBuilder_; + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public java.util.List< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile> + getExportedFilesList() { + if (exportedFilesBuilder_ == null) { + return java.util.Collections.unmodifiableList(exportedFiles_); + } else { + return exportedFilesBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public int getExportedFilesCount() { + if (exportedFilesBuilder_ == null) { + return exportedFiles_.size(); + } else { + return exportedFilesBuilder_.getCount(); + } + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + getExportedFiles(int index) { + if (exportedFilesBuilder_ == null) { + return exportedFiles_.get(index); + } else { + return exportedFilesBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder setExportedFiles( + int index, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile value) { + if (exportedFilesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureExportedFilesIsMutable(); + exportedFiles_.set(index, value); + onChanged(); + } else { + exportedFilesBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder setExportedFiles( + int index, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + builderForValue) { + if (exportedFilesBuilder_ == null) { + ensureExportedFilesIsMutable(); + exportedFiles_.set(index, builderForValue.build()); + onChanged(); + } else { + exportedFilesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder addExportedFiles( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile value) { + if (exportedFilesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureExportedFilesIsMutable(); + exportedFiles_.add(value); + onChanged(); + } else { + exportedFilesBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder addExportedFiles( + int index, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile value) { + if (exportedFilesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureExportedFilesIsMutable(); + exportedFiles_.add(index, value); + onChanged(); + } else { + exportedFilesBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder addExportedFiles( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + builderForValue) { + if (exportedFilesBuilder_ == null) { + ensureExportedFilesIsMutable(); + exportedFiles_.add(builderForValue.build()); + onChanged(); + } else { + exportedFilesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder addExportedFiles( + int index, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + builderForValue) { + if (exportedFilesBuilder_ == null) { + ensureExportedFilesIsMutable(); + exportedFiles_.add(index, builderForValue.build()); + onChanged(); + } else { + exportedFilesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder addAllExportedFiles( + java.lang.Iterable< + ? extends + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile> + values) { + if (exportedFilesBuilder_ == null) { + ensureExportedFilesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, exportedFiles_); + onChanged(); + } else { + exportedFilesBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder clearExportedFiles() { + if (exportedFilesBuilder_ == null) { + exportedFiles_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + exportedFilesBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public Builder removeExportedFiles(int index) { + if (exportedFilesBuilder_ == null) { + ensureExportedFilesIsMutable(); + exportedFiles_.remove(index); + onChanged(); + } else { + exportedFilesBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + getExportedFilesBuilder(int index) { + return getExportedFilesFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder + getExportedFilesOrBuilder(int index) { + if (exportedFilesBuilder_ == null) { + return exportedFiles_.get(index); + } else { + return exportedFilesBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public java.util.List< + ? extends + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata + .ExportedFileOrBuilder> + getExportedFilesOrBuilderList() { + if (exportedFilesBuilder_ != null) { + return exportedFilesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(exportedFiles_); + } + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + addExportedFilesBuilder() { + return getExportedFilesFieldBuilder() + .addBuilder( + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + .getDefaultInstance()); + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder + addExportedFilesBuilder(int index) { + return getExportedFilesFieldBuilder() + .addBuilder( + index, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile + .getDefaultInstance()); + } + + /** + * + * + *
+     * The exported artifact files.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + public java.util.List< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder> + getExportedFilesBuilderList() { + return getExportedFilesFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder> + getExportedFilesFieldBuilder() { + if (exportedFilesBuilder_ == null) { + exportedFilesBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile.Builder, + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata + .ExportedFileOrBuilder>( + exportedFiles_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + exportedFiles_ = null; + } + return exportedFilesBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.devtools.artifactregistry.v1.ExportArtifactMetadata) + } + + // @@protoc_insertion_point(class_scope:google.devtools.artifactregistry.v1.ExportArtifactMetadata) + private static final com.google.devtools.artifactregistry.v1.ExportArtifactMetadata + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.devtools.artifactregistry.v1.ExportArtifactMetadata(); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactMetadata + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ExportArtifactMetadata parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactMetadata + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactMetadataOrBuilder.java new file mode 100644 index 000000000000..b8983204da70 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactMetadataOrBuilder.java @@ -0,0 +1,97 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +public interface ExportArtifactMetadataOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1.ExportArtifactMetadata) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + java.util.List + getExportedFilesList(); + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile getExportedFiles( + int index); + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + int getExportedFilesCount(); + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + java.util.List< + ? extends + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder> + getExportedFilesOrBuilderList(); + + /** + * + * + *
+   * The exported artifact files.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFile exported_files = 1; + * + */ + com.google.devtools.artifactregistry.v1.ExportArtifactMetadata.ExportedFileOrBuilder + getExportedFilesOrBuilder(int index); +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactRequest.java new file mode 100644 index 000000000000..d07ad3a5cac0 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactRequest.java @@ -0,0 +1,1599 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +/** + * + * + *
+ * The request for exporting an artifact to a destination.
+ * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactRequest} + */ +public final class ExportArtifactRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1.ExportArtifactRequest) + ExportArtifactRequestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ExportArtifactRequest.newBuilder() to construct. + private ExportArtifactRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ExportArtifactRequest() { + repository_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ExportArtifactRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest.class, + com.google.devtools.artifactregistry.v1.ExportArtifactRequest.Builder.class); + } + + private int sourceArtifactCase_ = 0; + + @SuppressWarnings("serial") + private java.lang.Object sourceArtifact_; + + public enum SourceArtifactCase + implements + com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + SOURCE_VERSION(2), + SOURCE_TAG(4), + SOURCEARTIFACT_NOT_SET(0); + private final int value; + + private SourceArtifactCase(int value) { + this.value = value; + } + + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static SourceArtifactCase valueOf(int value) { + return forNumber(value); + } + + public static SourceArtifactCase forNumber(int value) { + switch (value) { + case 2: + return SOURCE_VERSION; + case 4: + return SOURCE_TAG; + case 0: + return SOURCEARTIFACT_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public SourceArtifactCase getSourceArtifactCase() { + return SourceArtifactCase.forNumber(sourceArtifactCase_); + } + + private int destinationCase_ = 0; + + @SuppressWarnings("serial") + private java.lang.Object destination_; + + public enum DestinationCase + implements + com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + GCS_PATH(3), + DESTINATION_NOT_SET(0); + private final int value; + + private DestinationCase(int value) { + this.value = value; + } + + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static DestinationCase valueOf(int value) { + return forNumber(value); + } + + public static DestinationCase forNumber(int value) { + switch (value) { + case 3: + return GCS_PATH; + case 0: + return DESTINATION_NOT_SET; + default: + return null; + } + } + + public int getNumber() { + return this.value; + } + }; + + public DestinationCase getDestinationCase() { + return DestinationCase.forNumber(destinationCase_); + } + + public static final int SOURCE_VERSION_FIELD_NUMBER = 2; + + /** + * + * + *
+   * The artifact version to export.
+   * Format:
+   * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+   * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return Whether the sourceVersion field is set. + */ + public boolean hasSourceVersion() { + return sourceArtifactCase_ == 2; + } + + /** + * + * + *
+   * The artifact version to export.
+   * Format:
+   * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+   * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return The sourceVersion. + */ + public java.lang.String getSourceVersion() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 2) { + ref = sourceArtifact_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (sourceArtifactCase_ == 2) { + sourceArtifact_ = s; + } + return s; + } + } + + /** + * + * + *
+   * The artifact version to export.
+   * Format:
+   * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+   * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for sourceVersion. + */ + public com.google.protobuf.ByteString getSourceVersionBytes() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 2) { + ref = sourceArtifact_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (sourceArtifactCase_ == 2) { + sourceArtifact_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int SOURCE_TAG_FIELD_NUMBER = 4; + + /** + * + * + *
+   * The artifact tag to export.
+   * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+   * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return Whether the sourceTag field is set. + */ + public boolean hasSourceTag() { + return sourceArtifactCase_ == 4; + } + + /** + * + * + *
+   * The artifact tag to export.
+   * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+   * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return The sourceTag. + */ + public java.lang.String getSourceTag() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 4) { + ref = sourceArtifact_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (sourceArtifactCase_ == 4) { + sourceArtifact_ = s; + } + return s; + } + } + + /** + * + * + *
+   * The artifact tag to export.
+   * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+   * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for sourceTag. + */ + public com.google.protobuf.ByteString getSourceTagBytes() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 4) { + ref = sourceArtifact_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (sourceArtifactCase_ == 4) { + sourceArtifact_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int GCS_PATH_FIELD_NUMBER = 3; + + /** + * + * + *
+   * The Cloud Storage path to export the artifact to. Should start with the
+   * bucket name, and optionally have a directory path. Examples:
+   * `dst_bucket`, `dst_bucket/sub_dir`.
+   * Existing objects with the same path will be overwritten.
+   * 
+ * + * string gcs_path = 3; + * + * @return Whether the gcsPath field is set. + */ + public boolean hasGcsPath() { + return destinationCase_ == 3; + } + + /** + * + * + *
+   * The Cloud Storage path to export the artifact to. Should start with the
+   * bucket name, and optionally have a directory path. Examples:
+   * `dst_bucket`, `dst_bucket/sub_dir`.
+   * Existing objects with the same path will be overwritten.
+   * 
+ * + * string gcs_path = 3; + * + * @return The gcsPath. + */ + public java.lang.String getGcsPath() { + java.lang.Object ref = ""; + if (destinationCase_ == 3) { + ref = destination_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (destinationCase_ == 3) { + destination_ = s; + } + return s; + } + } + + /** + * + * + *
+   * The Cloud Storage path to export the artifact to. Should start with the
+   * bucket name, and optionally have a directory path. Examples:
+   * `dst_bucket`, `dst_bucket/sub_dir`.
+   * Existing objects with the same path will be overwritten.
+   * 
+ * + * string gcs_path = 3; + * + * @return The bytes for gcsPath. + */ + public com.google.protobuf.ByteString getGcsPathBytes() { + java.lang.Object ref = ""; + if (destinationCase_ == 3) { + ref = destination_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (destinationCase_ == 3) { + destination_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REPOSITORY_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object repository_ = ""; + + /** + * + * + *
+   * Required. The repository of the artifact to export.
+   * Format: projects/{project}/locations/{location}/repositories/{repository}
+   * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The repository. + */ + @java.lang.Override + public java.lang.String getRepository() { + java.lang.Object ref = repository_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + repository_ = s; + return s; + } + } + + /** + * + * + *
+   * Required. The repository of the artifact to export.
+   * Format: projects/{project}/locations/{location}/repositories/{repository}
+   * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for repository. + */ + @java.lang.Override + public com.google.protobuf.ByteString getRepositoryBytes() { + java.lang.Object ref = repository_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + repository_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(repository_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, repository_); + } + if (sourceArtifactCase_ == 2) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, sourceArtifact_); + } + if (destinationCase_ == 3) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, destination_); + } + if (sourceArtifactCase_ == 4) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, sourceArtifact_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(repository_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, repository_); + } + if (sourceArtifactCase_ == 2) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, sourceArtifact_); + } + if (destinationCase_ == 3) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, destination_); + } + if (sourceArtifactCase_ == 4) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, sourceArtifact_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.devtools.artifactregistry.v1.ExportArtifactRequest)) { + return super.equals(obj); + } + com.google.devtools.artifactregistry.v1.ExportArtifactRequest other = + (com.google.devtools.artifactregistry.v1.ExportArtifactRequest) obj; + + if (!getRepository().equals(other.getRepository())) return false; + if (!getSourceArtifactCase().equals(other.getSourceArtifactCase())) return false; + switch (sourceArtifactCase_) { + case 2: + if (!getSourceVersion().equals(other.getSourceVersion())) return false; + break; + case 4: + if (!getSourceTag().equals(other.getSourceTag())) return false; + break; + case 0: + default: + } + if (!getDestinationCase().equals(other.getDestinationCase())) return false; + switch (destinationCase_) { + case 3: + if (!getGcsPath().equals(other.getGcsPath())) return false; + break; + case 0: + default: + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + REPOSITORY_FIELD_NUMBER; + hash = (53 * hash) + getRepository().hashCode(); + switch (sourceArtifactCase_) { + case 2: + hash = (37 * hash) + SOURCE_VERSION_FIELD_NUMBER; + hash = (53 * hash) + getSourceVersion().hashCode(); + break; + case 4: + hash = (37 * hash) + SOURCE_TAG_FIELD_NUMBER; + hash = (53 * hash) + getSourceTag().hashCode(); + break; + case 0: + default: + } + switch (destinationCase_) { + case 3: + hash = (37 * hash) + GCS_PATH_FIELD_NUMBER; + hash = (53 * hash) + getGcsPath().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * The request for exporting an artifact to a destination.
+   * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.devtools.artifactregistry.v1.ExportArtifactRequest) + com.google.devtools.artifactregistry.v1.ExportArtifactRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest.class, + com.google.devtools.artifactregistry.v1.ExportArtifactRequest.Builder.class); + } + + // Construct using com.google.devtools.artifactregistry.v1.ExportArtifactRequest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + repository_ = ""; + sourceArtifactCase_ = 0; + sourceArtifact_ = null; + destinationCase_ = 0; + destination_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_descriptor; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactRequest + getDefaultInstanceForType() { + return com.google.devtools.artifactregistry.v1.ExportArtifactRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactRequest build() { + com.google.devtools.artifactregistry.v1.ExportArtifactRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactRequest buildPartial() { + com.google.devtools.artifactregistry.v1.ExportArtifactRequest result = + new com.google.devtools.artifactregistry.v1.ExportArtifactRequest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + buildPartialOneofs(result); + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000008) != 0)) { + result.repository_ = repository_; + } + } + + private void buildPartialOneofs( + com.google.devtools.artifactregistry.v1.ExportArtifactRequest result) { + result.sourceArtifactCase_ = sourceArtifactCase_; + result.sourceArtifact_ = this.sourceArtifact_; + result.destinationCase_ = destinationCase_; + result.destination_ = this.destination_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.devtools.artifactregistry.v1.ExportArtifactRequest) { + return mergeFrom((com.google.devtools.artifactregistry.v1.ExportArtifactRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.devtools.artifactregistry.v1.ExportArtifactRequest other) { + if (other + == com.google.devtools.artifactregistry.v1.ExportArtifactRequest.getDefaultInstance()) + return this; + if (!other.getRepository().isEmpty()) { + repository_ = other.repository_; + bitField0_ |= 0x00000008; + onChanged(); + } + switch (other.getSourceArtifactCase()) { + case SOURCE_VERSION: + { + sourceArtifactCase_ = 2; + sourceArtifact_ = other.sourceArtifact_; + onChanged(); + break; + } + case SOURCE_TAG: + { + sourceArtifactCase_ = 4; + sourceArtifact_ = other.sourceArtifact_; + onChanged(); + break; + } + case SOURCEARTIFACT_NOT_SET: + { + break; + } + } + switch (other.getDestinationCase()) { + case GCS_PATH: + { + destinationCase_ = 3; + destination_ = other.destination_; + onChanged(); + break; + } + case DESTINATION_NOT_SET: + { + break; + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + repository_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 10 + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + sourceArtifactCase_ = 2; + sourceArtifact_ = s; + break; + } // case 18 + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + destinationCase_ = 3; + destination_ = s; + break; + } // case 26 + case 34: + { + java.lang.String s = input.readStringRequireUtf8(); + sourceArtifactCase_ = 4; + sourceArtifact_ = s; + break; + } // case 34 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int sourceArtifactCase_ = 0; + private java.lang.Object sourceArtifact_; + + public SourceArtifactCase getSourceArtifactCase() { + return SourceArtifactCase.forNumber(sourceArtifactCase_); + } + + public Builder clearSourceArtifact() { + sourceArtifactCase_ = 0; + sourceArtifact_ = null; + onChanged(); + return this; + } + + private int destinationCase_ = 0; + private java.lang.Object destination_; + + public DestinationCase getDestinationCase() { + return DestinationCase.forNumber(destinationCase_); + } + + public Builder clearDestination() { + destinationCase_ = 0; + destination_ = null; + onChanged(); + return this; + } + + private int bitField0_; + + /** + * + * + *
+     * The artifact version to export.
+     * Format:
+     * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+     * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return Whether the sourceVersion field is set. + */ + @java.lang.Override + public boolean hasSourceVersion() { + return sourceArtifactCase_ == 2; + } + + /** + * + * + *
+     * The artifact version to export.
+     * Format:
+     * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+     * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return The sourceVersion. + */ + @java.lang.Override + public java.lang.String getSourceVersion() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 2) { + ref = sourceArtifact_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (sourceArtifactCase_ == 2) { + sourceArtifact_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * The artifact version to export.
+     * Format:
+     * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+     * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for sourceVersion. + */ + @java.lang.Override + public com.google.protobuf.ByteString getSourceVersionBytes() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 2) { + ref = sourceArtifact_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (sourceArtifactCase_ == 2) { + sourceArtifact_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * The artifact version to export.
+     * Format:
+     * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+     * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @param value The sourceVersion to set. + * @return This builder for chaining. + */ + public Builder setSourceVersion(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + sourceArtifactCase_ = 2; + sourceArtifact_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * The artifact version to export.
+     * Format:
+     * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+     * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return This builder for chaining. + */ + public Builder clearSourceVersion() { + if (sourceArtifactCase_ == 2) { + sourceArtifactCase_ = 0; + sourceArtifact_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The artifact version to export.
+     * Format:
+     * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+     * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @param value The bytes for sourceVersion to set. + * @return This builder for chaining. + */ + public Builder setSourceVersionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + sourceArtifactCase_ = 2; + sourceArtifact_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * The artifact tag to export.
+     * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+     * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return Whether the sourceTag field is set. + */ + @java.lang.Override + public boolean hasSourceTag() { + return sourceArtifactCase_ == 4; + } + + /** + * + * + *
+     * The artifact tag to export.
+     * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+     * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return The sourceTag. + */ + @java.lang.Override + public java.lang.String getSourceTag() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 4) { + ref = sourceArtifact_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (sourceArtifactCase_ == 4) { + sourceArtifact_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * The artifact tag to export.
+     * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+     * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for sourceTag. + */ + @java.lang.Override + public com.google.protobuf.ByteString getSourceTagBytes() { + java.lang.Object ref = ""; + if (sourceArtifactCase_ == 4) { + ref = sourceArtifact_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (sourceArtifactCase_ == 4) { + sourceArtifact_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * The artifact tag to export.
+     * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+     * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @param value The sourceTag to set. + * @return This builder for chaining. + */ + public Builder setSourceTag(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + sourceArtifactCase_ = 4; + sourceArtifact_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * The artifact tag to export.
+     * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+     * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return This builder for chaining. + */ + public Builder clearSourceTag() { + if (sourceArtifactCase_ == 4) { + sourceArtifactCase_ = 0; + sourceArtifact_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The artifact tag to export.
+     * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+     * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @param value The bytes for sourceTag to set. + * @return This builder for chaining. + */ + public Builder setSourceTagBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + sourceArtifactCase_ = 4; + sourceArtifact_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * The Cloud Storage path to export the artifact to. Should start with the
+     * bucket name, and optionally have a directory path. Examples:
+     * `dst_bucket`, `dst_bucket/sub_dir`.
+     * Existing objects with the same path will be overwritten.
+     * 
+ * + * string gcs_path = 3; + * + * @return Whether the gcsPath field is set. + */ + @java.lang.Override + public boolean hasGcsPath() { + return destinationCase_ == 3; + } + + /** + * + * + *
+     * The Cloud Storage path to export the artifact to. Should start with the
+     * bucket name, and optionally have a directory path. Examples:
+     * `dst_bucket`, `dst_bucket/sub_dir`.
+     * Existing objects with the same path will be overwritten.
+     * 
+ * + * string gcs_path = 3; + * + * @return The gcsPath. + */ + @java.lang.Override + public java.lang.String getGcsPath() { + java.lang.Object ref = ""; + if (destinationCase_ == 3) { + ref = destination_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (destinationCase_ == 3) { + destination_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * The Cloud Storage path to export the artifact to. Should start with the
+     * bucket name, and optionally have a directory path. Examples:
+     * `dst_bucket`, `dst_bucket/sub_dir`.
+     * Existing objects with the same path will be overwritten.
+     * 
+ * + * string gcs_path = 3; + * + * @return The bytes for gcsPath. + */ + @java.lang.Override + public com.google.protobuf.ByteString getGcsPathBytes() { + java.lang.Object ref = ""; + if (destinationCase_ == 3) { + ref = destination_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + if (destinationCase_ == 3) { + destination_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * The Cloud Storage path to export the artifact to. Should start with the
+     * bucket name, and optionally have a directory path. Examples:
+     * `dst_bucket`, `dst_bucket/sub_dir`.
+     * Existing objects with the same path will be overwritten.
+     * 
+ * + * string gcs_path = 3; + * + * @param value The gcsPath to set. + * @return This builder for chaining. + */ + public Builder setGcsPath(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + destinationCase_ = 3; + destination_ = value; + onChanged(); + return this; + } + + /** + * + * + *
+     * The Cloud Storage path to export the artifact to. Should start with the
+     * bucket name, and optionally have a directory path. Examples:
+     * `dst_bucket`, `dst_bucket/sub_dir`.
+     * Existing objects with the same path will be overwritten.
+     * 
+ * + * string gcs_path = 3; + * + * @return This builder for chaining. + */ + public Builder clearGcsPath() { + if (destinationCase_ == 3) { + destinationCase_ = 0; + destination_ = null; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The Cloud Storage path to export the artifact to. Should start with the
+     * bucket name, and optionally have a directory path. Examples:
+     * `dst_bucket`, `dst_bucket/sub_dir`.
+     * Existing objects with the same path will be overwritten.
+     * 
+ * + * string gcs_path = 3; + * + * @param value The bytes for gcsPath to set. + * @return This builder for chaining. + */ + public Builder setGcsPathBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + destinationCase_ = 3; + destination_ = value; + onChanged(); + return this; + } + + private java.lang.Object repository_ = ""; + + /** + * + * + *
+     * Required. The repository of the artifact to export.
+     * Format: projects/{project}/locations/{location}/repositories/{repository}
+     * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The repository. + */ + public java.lang.String getRepository() { + java.lang.Object ref = repository_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + repository_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Required. The repository of the artifact to export.
+     * Format: projects/{project}/locations/{location}/repositories/{repository}
+     * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for repository. + */ + public com.google.protobuf.ByteString getRepositoryBytes() { + java.lang.Object ref = repository_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + repository_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Required. The repository of the artifact to export.
+     * Format: projects/{project}/locations/{location}/repositories/{repository}
+     * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The repository to set. + * @return This builder for chaining. + */ + public Builder setRepository(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + repository_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The repository of the artifact to export.
+     * Format: projects/{project}/locations/{location}/repositories/{repository}
+     * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return This builder for chaining. + */ + public Builder clearRepository() { + repository_ = getDefaultInstance().getRepository(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+     * Required. The repository of the artifact to export.
+     * Format: projects/{project}/locations/{location}/repositories/{repository}
+     * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @param value The bytes for repository to set. + * @return This builder for chaining. + */ + public Builder setRepositoryBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + repository_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.devtools.artifactregistry.v1.ExportArtifactRequest) + } + + // @@protoc_insertion_point(class_scope:google.devtools.artifactregistry.v1.ExportArtifactRequest) + private static final com.google.devtools.artifactregistry.v1.ExportArtifactRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.devtools.artifactregistry.v1.ExportArtifactRequest(); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ExportArtifactRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactRequestOrBuilder.java new file mode 100644 index 000000000000..5a5bd508f840 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactRequestOrBuilder.java @@ -0,0 +1,199 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +public interface ExportArtifactRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1.ExportArtifactRequest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The artifact version to export.
+   * Format:
+   * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+   * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return Whether the sourceVersion field is set. + */ + boolean hasSourceVersion(); + + /** + * + * + *
+   * The artifact version to export.
+   * Format:
+   * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+   * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return The sourceVersion. + */ + java.lang.String getSourceVersion(); + + /** + * + * + *
+   * The artifact version to export.
+   * Format:
+   * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version}
+   * 
+ * + * string source_version = 2 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for sourceVersion. + */ + com.google.protobuf.ByteString getSourceVersionBytes(); + + /** + * + * + *
+   * The artifact tag to export.
+   * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+   * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return Whether the sourceTag field is set. + */ + boolean hasSourceTag(); + + /** + * + * + *
+   * The artifact tag to export.
+   * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+   * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return The sourceTag. + */ + java.lang.String getSourceTag(); + + /** + * + * + *
+   * The artifact tag to export.
+   * Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}
+   * 
+ * + * string source_tag = 4 [(.google.api.resource_reference) = { ... } + * + * @return The bytes for sourceTag. + */ + com.google.protobuf.ByteString getSourceTagBytes(); + + /** + * + * + *
+   * The Cloud Storage path to export the artifact to. Should start with the
+   * bucket name, and optionally have a directory path. Examples:
+   * `dst_bucket`, `dst_bucket/sub_dir`.
+   * Existing objects with the same path will be overwritten.
+   * 
+ * + * string gcs_path = 3; + * + * @return Whether the gcsPath field is set. + */ + boolean hasGcsPath(); + + /** + * + * + *
+   * The Cloud Storage path to export the artifact to. Should start with the
+   * bucket name, and optionally have a directory path. Examples:
+   * `dst_bucket`, `dst_bucket/sub_dir`.
+   * Existing objects with the same path will be overwritten.
+   * 
+ * + * string gcs_path = 3; + * + * @return The gcsPath. + */ + java.lang.String getGcsPath(); + + /** + * + * + *
+   * The Cloud Storage path to export the artifact to. Should start with the
+   * bucket name, and optionally have a directory path. Examples:
+   * `dst_bucket`, `dst_bucket/sub_dir`.
+   * Existing objects with the same path will be overwritten.
+   * 
+ * + * string gcs_path = 3; + * + * @return The bytes for gcsPath. + */ + com.google.protobuf.ByteString getGcsPathBytes(); + + /** + * + * + *
+   * Required. The repository of the artifact to export.
+   * Format: projects/{project}/locations/{location}/repositories/{repository}
+   * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The repository. + */ + java.lang.String getRepository(); + + /** + * + * + *
+   * Required. The repository of the artifact to export.
+   * Format: projects/{project}/locations/{location}/repositories/{repository}
+   * 
+ * + * + * string repository = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } + * + * + * @return The bytes for repository. + */ + com.google.protobuf.ByteString getRepositoryBytes(); + + com.google.devtools.artifactregistry.v1.ExportArtifactRequest.SourceArtifactCase + getSourceArtifactCase(); + + com.google.devtools.artifactregistry.v1.ExportArtifactRequest.DestinationCase + getDestinationCase(); +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactResponse.java new file mode 100644 index 000000000000..d1135ef634bd --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactResponse.java @@ -0,0 +1,757 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +/** + * + * + *
+ * The response for exporting an artifact to a destination.
+ * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactResponse} + */ +public final class ExportArtifactResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1.ExportArtifactResponse) + ExportArtifactResponseOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ExportArtifactResponse.newBuilder() to construct. + private ExportArtifactResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ExportArtifactResponse() {} + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ExportArtifactResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactResponse.class, + com.google.devtools.artifactregistry.v1.ExportArtifactResponse.Builder.class); + } + + private int bitField0_; + public static final int EXPORTED_VERSION_FIELD_NUMBER = 1; + private com.google.devtools.artifactregistry.v1.Version exportedVersion_; + + /** + * + * + *
+   * The exported version. Should be the same as the request version with
+   * fingerprint resource name.
+   * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + * + * @return Whether the exportedVersion field is set. + */ + @java.lang.Override + public boolean hasExportedVersion() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+   * The exported version. Should be the same as the request version with
+   * fingerprint resource name.
+   * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + * + * @return The exportedVersion. + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.Version getExportedVersion() { + return exportedVersion_ == null + ? com.google.devtools.artifactregistry.v1.Version.getDefaultInstance() + : exportedVersion_; + } + + /** + * + * + *
+   * The exported version. Should be the same as the request version with
+   * fingerprint resource name.
+   * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.VersionOrBuilder getExportedVersionOrBuilder() { + return exportedVersion_ == null + ? com.google.devtools.artifactregistry.v1.Version.getDefaultInstance() + : exportedVersion_; + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getExportedVersion()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getExportedVersion()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.devtools.artifactregistry.v1.ExportArtifactResponse)) { + return super.equals(obj); + } + com.google.devtools.artifactregistry.v1.ExportArtifactResponse other = + (com.google.devtools.artifactregistry.v1.ExportArtifactResponse) obj; + + if (hasExportedVersion() != other.hasExportedVersion()) return false; + if (hasExportedVersion()) { + if (!getExportedVersion().equals(other.getExportedVersion())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasExportedVersion()) { + hash = (37 * hash) + EXPORTED_VERSION_FIELD_NUMBER; + hash = (53 * hash) + getExportedVersion().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.devtools.artifactregistry.v1.ExportArtifactResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * The response for exporting an artifact to a destination.
+   * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ExportArtifactResponse} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.devtools.artifactregistry.v1.ExportArtifactResponse) + com.google.devtools.artifactregistry.v1.ExportArtifactResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ExportArtifactResponse.class, + com.google.devtools.artifactregistry.v1.ExportArtifactResponse.Builder.class); + } + + // Construct using com.google.devtools.artifactregistry.v1.ExportArtifactResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getExportedVersionFieldBuilder(); + } + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + exportedVersion_ = null; + if (exportedVersionBuilder_ != null) { + exportedVersionBuilder_.dispose(); + exportedVersionBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.devtools.artifactregistry.v1.ExportProto + .internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_descriptor; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactResponse + getDefaultInstanceForType() { + return com.google.devtools.artifactregistry.v1.ExportArtifactResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactResponse build() { + com.google.devtools.artifactregistry.v1.ExportArtifactResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactResponse buildPartial() { + com.google.devtools.artifactregistry.v1.ExportArtifactResponse result = + new com.google.devtools.artifactregistry.v1.ExportArtifactResponse(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0( + com.google.devtools.artifactregistry.v1.ExportArtifactResponse result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.exportedVersion_ = + exportedVersionBuilder_ == null ? exportedVersion_ : exportedVersionBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.devtools.artifactregistry.v1.ExportArtifactResponse) { + return mergeFrom((com.google.devtools.artifactregistry.v1.ExportArtifactResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.devtools.artifactregistry.v1.ExportArtifactResponse other) { + if (other + == com.google.devtools.artifactregistry.v1.ExportArtifactResponse.getDefaultInstance()) + return this; + if (other.hasExportedVersion()) { + mergeExportedVersion(other.getExportedVersion()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + input.readMessage(getExportedVersionFieldBuilder().getBuilder(), extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private com.google.devtools.artifactregistry.v1.Version exportedVersion_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Version, + com.google.devtools.artifactregistry.v1.Version.Builder, + com.google.devtools.artifactregistry.v1.VersionOrBuilder> + exportedVersionBuilder_; + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + * + * @return Whether the exportedVersion field is set. + */ + public boolean hasExportedVersion() { + return ((bitField0_ & 0x00000001) != 0); + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + * + * @return The exportedVersion. + */ + public com.google.devtools.artifactregistry.v1.Version getExportedVersion() { + if (exportedVersionBuilder_ == null) { + return exportedVersion_ == null + ? com.google.devtools.artifactregistry.v1.Version.getDefaultInstance() + : exportedVersion_; + } else { + return exportedVersionBuilder_.getMessage(); + } + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + public Builder setExportedVersion(com.google.devtools.artifactregistry.v1.Version value) { + if (exportedVersionBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + exportedVersion_ = value; + } else { + exportedVersionBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + public Builder setExportedVersion( + com.google.devtools.artifactregistry.v1.Version.Builder builderForValue) { + if (exportedVersionBuilder_ == null) { + exportedVersion_ = builderForValue.build(); + } else { + exportedVersionBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + public Builder mergeExportedVersion(com.google.devtools.artifactregistry.v1.Version value) { + if (exportedVersionBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) + && exportedVersion_ != null + && exportedVersion_ + != com.google.devtools.artifactregistry.v1.Version.getDefaultInstance()) { + getExportedVersionBuilder().mergeFrom(value); + } else { + exportedVersion_ = value; + } + } else { + exportedVersionBuilder_.mergeFrom(value); + } + if (exportedVersion_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + public Builder clearExportedVersion() { + bitField0_ = (bitField0_ & ~0x00000001); + exportedVersion_ = null; + if (exportedVersionBuilder_ != null) { + exportedVersionBuilder_.dispose(); + exportedVersionBuilder_ = null; + } + onChanged(); + return this; + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + public com.google.devtools.artifactregistry.v1.Version.Builder getExportedVersionBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getExportedVersionFieldBuilder().getBuilder(); + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + public com.google.devtools.artifactregistry.v1.VersionOrBuilder getExportedVersionOrBuilder() { + if (exportedVersionBuilder_ != null) { + return exportedVersionBuilder_.getMessageOrBuilder(); + } else { + return exportedVersion_ == null + ? com.google.devtools.artifactregistry.v1.Version.getDefaultInstance() + : exportedVersion_; + } + } + + /** + * + * + *
+     * The exported version. Should be the same as the request version with
+     * fingerprint resource name.
+     * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Version, + com.google.devtools.artifactregistry.v1.Version.Builder, + com.google.devtools.artifactregistry.v1.VersionOrBuilder> + getExportedVersionFieldBuilder() { + if (exportedVersionBuilder_ == null) { + exportedVersionBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Version, + com.google.devtools.artifactregistry.v1.Version.Builder, + com.google.devtools.artifactregistry.v1.VersionOrBuilder>( + getExportedVersion(), getParentForChildren(), isClean()); + exportedVersion_ = null; + } + return exportedVersionBuilder_; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.devtools.artifactregistry.v1.ExportArtifactResponse) + } + + // @@protoc_insertion_point(class_scope:google.devtools.artifactregistry.v1.ExportArtifactResponse) + private static final com.google.devtools.artifactregistry.v1.ExportArtifactResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.devtools.artifactregistry.v1.ExportArtifactResponse(); + } + + public static com.google.devtools.artifactregistry.v1.ExportArtifactResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ExportArtifactResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ExportArtifactResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactResponseOrBuilder.java new file mode 100644 index 000000000000..b4d939a16e11 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportArtifactResponseOrBuilder.java @@ -0,0 +1,66 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +public interface ExportArtifactResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1.ExportArtifactResponse) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * The exported version. Should be the same as the request version with
+   * fingerprint resource name.
+   * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + * + * @return Whether the exportedVersion field is set. + */ + boolean hasExportedVersion(); + + /** + * + * + *
+   * The exported version. Should be the same as the request version with
+   * fingerprint resource name.
+   * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + * + * @return The exportedVersion. + */ + com.google.devtools.artifactregistry.v1.Version getExportedVersion(); + + /** + * + * + *
+   * The exported version. Should be the same as the request version with
+   * fingerprint resource name.
+   * 
+ * + * .google.devtools.artifactregistry.v1.Version exported_version = 1; + */ + com.google.devtools.artifactregistry.v1.VersionOrBuilder getExportedVersionOrBuilder(); +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportProto.java new file mode 100644 index 000000000000..572af019ad17 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ExportProto.java @@ -0,0 +1,148 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/export.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +public final class ExportProto { + private ExportProto() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n0google/devtools/artifactregistry/v1/ex" + + "port.proto\022#google.devtools.artifactregi" + + "stry.v1\032\037google/api/field_behavior.proto" + + "\032\031google/api/resource.proto\032.google/devt" + + "ools/artifactregistry/v1/file.proto\0321goo" + + "gle/devtools/artifactregistry/v1/version" + + ".proto\"\235\002\n\025ExportArtifactRequest\022F\n\016sour" + + "ce_version\030\002 \001(\tB,\372A)\n\'artifactregistry." + + "googleapis.com/VersionH\000\022>\n\nsource_tag\030\004" + + " \001(\tB(\372A%\n#artifactregistry.googleapis.c" + + "om/TagH\000\022\022\n\010gcs_path\030\003 \001(\tH\001\022F\n\nreposito" + + "ry\030\001 \001(\tB2\340A\002\372A,\n*artifactregistry.googl" + + "eapis.com/RepositoryB\021\n\017source_artifactB" + + "\r\n\013destination\"`\n\026ExportArtifactResponse" + + "\022F\n\020exported_version\030\001 \001(\0132,.google.devt" + + "ools.artifactregistry.v1.Version\"\251\002\n\026Exp" + + "ortArtifactMetadata\022`\n\016exported_files\030\001 " + + "\003(\0132H.google.devtools.artifactregistry.v" + + "1.ExportArtifactMetadata.ExportedFile\032\254\001" + + "\n\014ExportedFile\022\031\n\017gcs_object_path\030\002 \001(\tH" + + "\000\0227\n\004name\030\001 \001(\tB)\372A&\n$artifactregistry.g" + + "oogleapis.com/File\0229\n\006hashes\030\003 \003(\0132).goo" + + "gle.devtools.artifactregistry.v1.HashB\r\n" + + "\013destinationB\366\001\n\'com.google.devtools.art" + + "ifactregistry.v1B\013ExportProtoP\001ZPcloud.g" + + "oogle.com/go/artifactregistry/apiv1/arti" + + "factregistrypb;artifactregistrypb\252\002 Goog" + + "le.Cloud.ArtifactRegistry.V1\312\002 Google\\Cl" + + "oud\\ArtifactRegistry\\V1\352\002#Google::Cloud:" + + ":ArtifactRegistry::V1b\006proto3" + }; + descriptor = + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.api.FieldBehaviorProto.getDescriptor(), + com.google.api.ResourceProto.getDescriptor(), + com.google.devtools.artifactregistry.v1.FileProto.getDescriptor(), + com.google.devtools.artifactregistry.v1.VersionProto.getDescriptor(), + }); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_devtools_artifactregistry_v1_ExportArtifactRequest_descriptor, + new java.lang.String[] { + "SourceVersion", + "SourceTag", + "GcsPath", + "Repository", + "SourceArtifact", + "Destination", + }); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_descriptor = + getDescriptor().getMessageTypes().get(1); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_devtools_artifactregistry_v1_ExportArtifactResponse_descriptor, + new java.lang.String[] { + "ExportedVersion", + }); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor = + getDescriptor().getMessageTypes().get(2); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor, + new java.lang.String[] { + "ExportedFiles", + }); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_descriptor = + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_descriptor + .getNestedTypes() + .get(0); + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_devtools_artifactregistry_v1_ExportArtifactMetadata_ExportedFile_descriptor, + new java.lang.String[] { + "GcsObjectPath", "Name", "Hashes", "Destination", + }); + com.google.protobuf.ExtensionRegistry registry = + com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); + registry.add(com.google.api.ResourceProto.resourceReference); + com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( + descriptor, registry); + com.google.api.FieldBehaviorProto.getDescriptor(); + com.google.api.ResourceProto.getDescriptor(); + com.google.devtools.artifactregistry.v1.FileProto.getDescriptor(); + com.google.devtools.artifactregistry.v1.VersionProto.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/File.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/File.java index 42b8cbd78e3e..5e60b8a29f13 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/File.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/File.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileName.java index d76a3dc7402e..5f4e570e6330 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileOrBuilder.java index 2c4d4b2897ba..aedf773f3185 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileProto.java index a461090678bd..124977ab2dcf 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/FileProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifact.java index 6591be5766c6..fe81be5d1d08 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifactOrBuilder.java index 3bdc20893402..a396aa9a8c37 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericProto.java index 03a926e4f68a..68208438082a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GenericProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequest.java index be668f7cb0fa..a2594dec356c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequestOrBuilder.java index 223db1fd10fb..4a957af55ebe 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetAttachmentRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequest.java index 53e0e0295caa..44f4cd4e6723 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequestOrBuilder.java index 6607b0ec2c80..100fd46f970b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetDockerImageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequest.java index 0a8c84a172cf..717fb2043aa7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequestOrBuilder.java index 764bae3278ff..a13966148b08 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequest.java index 266e3b3ec2da..c8b7dad2fb70 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequestOrBuilder.java index 2d05536a4cf0..b318f09c6291 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetMavenArtifactRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequest.java index c680ad0a9590..8d848d46a690 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequestOrBuilder.java index e687c9a09c9c..274a36a40aa0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetNpmPackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequest.java index 1c0d5567d282..4cb7aad96543 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequestOrBuilder.java index 86755dbb92ee..8e53818483bf 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequest.java index 43b434b1ade4..ac6c350b7fce 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequestOrBuilder.java index 717dca2677ff..074feea5b033 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetProjectSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequest.java index 81c5de2ef7ef..41ad250e3374 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequestOrBuilder.java index d22944cbe5b0..9eeb6a928163 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetPythonPackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequest.java index ca000d1b39c1..9f6911a78be1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequestOrBuilder.java index 7c1f9b3ca8ef..dda11db145c8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequest.java index 729419c7a5aa..e5494e071ea0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequestOrBuilder.java index bfc1f2d3b6db..cc5e06d03248 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequest.java index c341a280e785..1e62c8d0f19c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequestOrBuilder.java index 0bf714a99bef..845123d422d9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequest.java index 6d4f33ce940a..05f4ea189a68 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequestOrBuilder.java index 67a2e6b62348..fe88b23b082e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVPCSCConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequest.java index 52672804ae6c..8f1f7a4a1c2f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequestOrBuilder.java index 030b94734a90..0f1d671e55e0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModule.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModule.java index e6dce8131a69..05bdeb7303cf 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModule.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModuleOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModuleOrBuilder.java index 1f3aba337379..09ab312832fc 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModuleOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoModuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoProto.java index da34db808122..3ae58b44444a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/GoProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Hash.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Hash.java index 54bfa381875a..777bd046ffac 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Hash.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Hash.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/HashOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/HashOrBuilder.java index 0bc189acfebc..cd49bbe5fd2d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/HashOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/HashOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImageManifest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImageManifest.java new file mode 100644 index 000000000000..a2ea5edbd3e1 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImageManifest.java @@ -0,0 +1,1939 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/artifact.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +/** + * + * + *
+ * Details of a single image manifest within a multi-arch image.
+ * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ImageManifest} + */ +public final class ImageManifest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1.ImageManifest) + ImageManifestOrBuilder { + private static final long serialVersionUID = 0L; + + // Use ImageManifest.newBuilder() to construct. + private ImageManifest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ImageManifest() { + architecture_ = ""; + os_ = ""; + digest_ = ""; + mediaType_ = ""; + osVersion_ = ""; + osFeatures_ = com.google.protobuf.LazyStringArrayList.emptyList(); + variant_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + return new ImageManifest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ArtifactProto + .internal_static_google_devtools_artifactregistry_v1_ImageManifest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ArtifactProto + .internal_static_google_devtools_artifactregistry_v1_ImageManifest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ImageManifest.class, + com.google.devtools.artifactregistry.v1.ImageManifest.Builder.class); + } + + public static final int ARCHITECTURE_FIELD_NUMBER = 1; + + @SuppressWarnings("serial") + private volatile java.lang.Object architecture_ = ""; + + /** + * + * + *
+   * Optional. The CPU architecture of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+   * "riscv64", "mips64le", etc.
+   * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The architecture. + */ + @java.lang.Override + public java.lang.String getArchitecture() { + java.lang.Object ref = architecture_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + architecture_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The CPU architecture of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+   * "riscv64", "mips64le", etc.
+   * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for architecture. + */ + @java.lang.Override + public com.google.protobuf.ByteString getArchitectureBytes() { + java.lang.Object ref = architecture_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + architecture_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int OS_FIELD_NUMBER = 2; + + @SuppressWarnings("serial") + private volatile java.lang.Object os_ = ""; + + /** + * + * + *
+   * Optional. The operating system of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+   * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The os. + */ + @java.lang.Override + public java.lang.String getOs() { + java.lang.Object ref = os_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + os_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The operating system of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+   * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for os. + */ + @java.lang.Override + public com.google.protobuf.ByteString getOsBytes() { + java.lang.Object ref = os_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + os_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int DIGEST_FIELD_NUMBER = 3; + + @SuppressWarnings("serial") + private volatile java.lang.Object digest_ = ""; + + /** + * + * + *
+   * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+   * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The digest. + */ + @java.lang.Override + public java.lang.String getDigest() { + java.lang.Object ref = digest_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + digest_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+   * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for digest. + */ + @java.lang.Override + public com.google.protobuf.ByteString getDigestBytes() { + java.lang.Object ref = digest_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + digest_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int MEDIA_TYPE_FIELD_NUMBER = 4; + + @SuppressWarnings("serial") + private volatile java.lang.Object mediaType_ = ""; + + /** + * + * + *
+   * Optional. The media type of the manifest, e.g.,
+   * "application/vnd.docker.distribution.manifest.v2+json"
+   * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mediaType. + */ + @java.lang.Override + public java.lang.String getMediaType() { + java.lang.Object ref = mediaType_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mediaType_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The media type of the manifest, e.g.,
+   * "application/vnd.docker.distribution.manifest.v2+json"
+   * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mediaType. + */ + @java.lang.Override + public com.google.protobuf.ByteString getMediaTypeBytes() { + java.lang.Object ref = mediaType_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mediaType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int OS_VERSION_FIELD_NUMBER = 5; + + @SuppressWarnings("serial") + private volatile java.lang.Object osVersion_ = ""; + + /** + * + * + *
+   * Optional. The OS version of the image, for example on Windows
+   * `10.0.14393.1066`.
+   * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The osVersion. + */ + @java.lang.Override + public java.lang.String getOsVersion() { + java.lang.Object ref = osVersion_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + osVersion_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The OS version of the image, for example on Windows
+   * `10.0.14393.1066`.
+   * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for osVersion. + */ + @java.lang.Override + public com.google.protobuf.ByteString getOsVersionBytes() { + java.lang.Object ref = osVersion_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + osVersion_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int OS_FEATURES_FIELD_NUMBER = 6; + + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList osFeatures_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return A list containing the osFeatures. + */ + public com.google.protobuf.ProtocolStringList getOsFeaturesList() { + return osFeatures_; + } + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The count of osFeatures. + */ + public int getOsFeaturesCount() { + return osFeatures_.size(); + } + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index of the element to return. + * @return The osFeatures at the given index. + */ + public java.lang.String getOsFeatures(int index) { + return osFeatures_.get(index); + } + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index of the value to return. + * @return The bytes of the osFeatures at the given index. + */ + public com.google.protobuf.ByteString getOsFeaturesBytes(int index) { + return osFeatures_.getByteString(index); + } + + public static final int VARIANT_FIELD_NUMBER = 7; + + @SuppressWarnings("serial") + private volatile java.lang.Object variant_ = ""; + + /** + * + * + *
+   * Optional. The variant of the CPU in the image, for example `v7` to specify
+   * ARMv7 when architecture is `arm`.
+   * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The variant. + */ + @java.lang.Override + public java.lang.String getVariant() { + java.lang.Object ref = variant_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + variant_ = s; + return s; + } + } + + /** + * + * + *
+   * Optional. The variant of the CPU in the image, for example `v7` to specify
+   * ARMv7 when architecture is `arm`.
+   * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for variant. + */ + @java.lang.Override + public com.google.protobuf.ByteString getVariantBytes() { + java.lang.Object ref = variant_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + variant_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(architecture_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, architecture_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(os_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, os_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(digest_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, digest_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mediaType_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, mediaType_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(osVersion_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, osVersion_); + } + for (int i = 0; i < osFeatures_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 6, osFeatures_.getRaw(i)); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(variant_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, variant_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(architecture_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, architecture_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(os_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, os_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(digest_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, digest_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mediaType_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, mediaType_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(osVersion_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, osVersion_); + } + { + int dataSize = 0; + for (int i = 0; i < osFeatures_.size(); i++) { + dataSize += computeStringSizeNoTag(osFeatures_.getRaw(i)); + } + size += dataSize; + size += 1 * getOsFeaturesList().size(); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(variant_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, variant_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.devtools.artifactregistry.v1.ImageManifest)) { + return super.equals(obj); + } + com.google.devtools.artifactregistry.v1.ImageManifest other = + (com.google.devtools.artifactregistry.v1.ImageManifest) obj; + + if (!getArchitecture().equals(other.getArchitecture())) return false; + if (!getOs().equals(other.getOs())) return false; + if (!getDigest().equals(other.getDigest())) return false; + if (!getMediaType().equals(other.getMediaType())) return false; + if (!getOsVersion().equals(other.getOsVersion())) return false; + if (!getOsFeaturesList().equals(other.getOsFeaturesList())) return false; + if (!getVariant().equals(other.getVariant())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + ARCHITECTURE_FIELD_NUMBER; + hash = (53 * hash) + getArchitecture().hashCode(); + hash = (37 * hash) + OS_FIELD_NUMBER; + hash = (53 * hash) + getOs().hashCode(); + hash = (37 * hash) + DIGEST_FIELD_NUMBER; + hash = (53 * hash) + getDigest().hashCode(); + hash = (37 * hash) + MEDIA_TYPE_FIELD_NUMBER; + hash = (53 * hash) + getMediaType().hashCode(); + hash = (37 * hash) + OS_VERSION_FIELD_NUMBER; + hash = (53 * hash) + getOsVersion().hashCode(); + if (getOsFeaturesCount() > 0) { + hash = (37 * hash) + OS_FEATURES_FIELD_NUMBER; + hash = (53 * hash) + getOsFeaturesList().hashCode(); + } + hash = (37 * hash) + VARIANT_FIELD_NUMBER; + hash = (53 * hash) + getVariant().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.google.devtools.artifactregistry.v1.ImageManifest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + + /** + * + * + *
+   * Details of a single image manifest within a multi-arch image.
+   * 
+ * + * Protobuf type {@code google.devtools.artifactregistry.v1.ImageManifest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:google.devtools.artifactregistry.v1.ImageManifest) + com.google.devtools.artifactregistry.v1.ImageManifestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.devtools.artifactregistry.v1.ArtifactProto + .internal_static_google_devtools_artifactregistry_v1_ImageManifest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.devtools.artifactregistry.v1.ArtifactProto + .internal_static_google_devtools_artifactregistry_v1_ImageManifest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.devtools.artifactregistry.v1.ImageManifest.class, + com.google.devtools.artifactregistry.v1.ImageManifest.Builder.class); + } + + // Construct using com.google.devtools.artifactregistry.v1.ImageManifest.newBuilder() + private Builder() {} + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + } + + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + architecture_ = ""; + os_ = ""; + digest_ = ""; + mediaType_ = ""; + osVersion_ = ""; + osFeatures_ = com.google.protobuf.LazyStringArrayList.emptyList(); + variant_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.google.devtools.artifactregistry.v1.ArtifactProto + .internal_static_google_devtools_artifactregistry_v1_ImageManifest_descriptor; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ImageManifest getDefaultInstanceForType() { + return com.google.devtools.artifactregistry.v1.ImageManifest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ImageManifest build() { + com.google.devtools.artifactregistry.v1.ImageManifest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ImageManifest buildPartial() { + com.google.devtools.artifactregistry.v1.ImageManifest result = + new com.google.devtools.artifactregistry.v1.ImageManifest(this); + if (bitField0_ != 0) { + buildPartial0(result); + } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.devtools.artifactregistry.v1.ImageManifest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.architecture_ = architecture_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.os_ = os_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.digest_ = digest_; + } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.mediaType_ = mediaType_; + } + if (((from_bitField0_ & 0x00000010) != 0)) { + result.osVersion_ = osVersion_; + } + if (((from_bitField0_ & 0x00000020) != 0)) { + osFeatures_.makeImmutable(); + result.osFeatures_ = osFeatures_; + } + if (((from_bitField0_ & 0x00000040) != 0)) { + result.variant_ = variant_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.setField(field, value); + } + + @java.lang.Override + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + + @java.lang.Override + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return super.addRepeatedField(field, value); + } + + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.devtools.artifactregistry.v1.ImageManifest) { + return mergeFrom((com.google.devtools.artifactregistry.v1.ImageManifest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.devtools.artifactregistry.v1.ImageManifest other) { + if (other == com.google.devtools.artifactregistry.v1.ImageManifest.getDefaultInstance()) + return this; + if (!other.getArchitecture().isEmpty()) { + architecture_ = other.architecture_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.getOs().isEmpty()) { + os_ = other.os_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getDigest().isEmpty()) { + digest_ = other.digest_; + bitField0_ |= 0x00000004; + onChanged(); + } + if (!other.getMediaType().isEmpty()) { + mediaType_ = other.mediaType_; + bitField0_ |= 0x00000008; + onChanged(); + } + if (!other.getOsVersion().isEmpty()) { + osVersion_ = other.osVersion_; + bitField0_ |= 0x00000010; + onChanged(); + } + if (!other.osFeatures_.isEmpty()) { + if (osFeatures_.isEmpty()) { + osFeatures_ = other.osFeatures_; + bitField0_ |= 0x00000020; + } else { + ensureOsFeaturesIsMutable(); + osFeatures_.addAll(other.osFeatures_); + } + onChanged(); + } + if (!other.getVariant().isEmpty()) { + variant_ = other.variant_; + bitField0_ |= 0x00000040; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: + { + architecture_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: + { + os_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: + { + digest_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 34: + { + mediaType_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 34 + case 42: + { + osVersion_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000010; + break; + } // case 42 + case 50: + { + java.lang.String s = input.readStringRequireUtf8(); + ensureOsFeaturesIsMutable(); + osFeatures_.add(s); + break; + } // case 50 + case 58: + { + variant_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000040; + break; + } // case 58 + default: + { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + + private int bitField0_; + + private java.lang.Object architecture_ = ""; + + /** + * + * + *
+     * Optional. The CPU architecture of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+     * "riscv64", "mips64le", etc.
+     * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The architecture. + */ + public java.lang.String getArchitecture() { + java.lang.Object ref = architecture_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + architecture_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The CPU architecture of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+     * "riscv64", "mips64le", etc.
+     * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for architecture. + */ + public com.google.protobuf.ByteString getArchitectureBytes() { + java.lang.Object ref = architecture_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + architecture_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The CPU architecture of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+     * "riscv64", "mips64le", etc.
+     * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The architecture to set. + * @return This builder for chaining. + */ + public Builder setArchitecture(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + architecture_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The CPU architecture of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+     * "riscv64", "mips64le", etc.
+     * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearArchitecture() { + architecture_ = getDefaultInstance().getArchitecture(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The CPU architecture of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+     * "riscv64", "mips64le", etc.
+     * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for architecture to set. + * @return This builder for chaining. + */ + public Builder setArchitectureBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + architecture_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private java.lang.Object os_ = ""; + + /** + * + * + *
+     * Optional. The operating system of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+     * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The os. + */ + public java.lang.String getOs() { + java.lang.Object ref = os_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + os_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The operating system of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+     * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for os. + */ + public com.google.protobuf.ByteString getOsBytes() { + java.lang.Object ref = os_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + os_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The operating system of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+     * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The os to set. + * @return This builder for chaining. + */ + public Builder setOs(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + os_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The operating system of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+     * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearOs() { + os_ = getDefaultInstance().getOs(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The operating system of the image.
+     * Values are provided by the Docker client and are not validated by Artifact
+     * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+     * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for os to set. + * @return This builder for chaining. + */ + public Builder setOsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + os_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object digest_ = ""; + + /** + * + * + *
+     * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+     * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The digest. + */ + public java.lang.String getDigest() { + java.lang.Object ref = digest_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + digest_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+     * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for digest. + */ + public com.google.protobuf.ByteString getDigestBytes() { + java.lang.Object ref = digest_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + digest_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+     * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The digest to set. + * @return This builder for chaining. + */ + public Builder setDigest(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + digest_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+     * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearDigest() { + digest_ = getDefaultInstance().getDigest(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+     * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for digest to set. + * @return This builder for chaining. + */ + public Builder setDigestBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + digest_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + private java.lang.Object mediaType_ = ""; + + /** + * + * + *
+     * Optional. The media type of the manifest, e.g.,
+     * "application/vnd.docker.distribution.manifest.v2+json"
+     * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mediaType. + */ + public java.lang.String getMediaType() { + java.lang.Object ref = mediaType_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mediaType_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The media type of the manifest, e.g.,
+     * "application/vnd.docker.distribution.manifest.v2+json"
+     * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mediaType. + */ + public com.google.protobuf.ByteString getMediaTypeBytes() { + java.lang.Object ref = mediaType_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + mediaType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The media type of the manifest, e.g.,
+     * "application/vnd.docker.distribution.manifest.v2+json"
+     * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The mediaType to set. + * @return This builder for chaining. + */ + public Builder setMediaType(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + mediaType_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The media type of the manifest, e.g.,
+     * "application/vnd.docker.distribution.manifest.v2+json"
+     * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearMediaType() { + mediaType_ = getDefaultInstance().getMediaType(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The media type of the manifest, e.g.,
+     * "application/vnd.docker.distribution.manifest.v2+json"
+     * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for mediaType to set. + * @return This builder for chaining. + */ + public Builder setMediaTypeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + mediaType_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + private java.lang.Object osVersion_ = ""; + + /** + * + * + *
+     * Optional. The OS version of the image, for example on Windows
+     * `10.0.14393.1066`.
+     * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The osVersion. + */ + public java.lang.String getOsVersion() { + java.lang.Object ref = osVersion_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + osVersion_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The OS version of the image, for example on Windows
+     * `10.0.14393.1066`.
+     * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for osVersion. + */ + public com.google.protobuf.ByteString getOsVersionBytes() { + java.lang.Object ref = osVersion_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + osVersion_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The OS version of the image, for example on Windows
+     * `10.0.14393.1066`.
+     * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The osVersion to set. + * @return This builder for chaining. + */ + public Builder setOsVersion(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + osVersion_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The OS version of the image, for example on Windows
+     * `10.0.14393.1066`.
+     * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearOsVersion() { + osVersion_ = getDefaultInstance().getOsVersion(); + bitField0_ = (bitField0_ & ~0x00000010); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The OS version of the image, for example on Windows
+     * `10.0.14393.1066`.
+     * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for osVersion to set. + * @return This builder for chaining. + */ + public Builder setOsVersionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + osVersion_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList osFeatures_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + + private void ensureOsFeaturesIsMutable() { + if (!osFeatures_.isModifiable()) { + osFeatures_ = new com.google.protobuf.LazyStringArrayList(osFeatures_); + } + bitField0_ |= 0x00000020; + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return A list containing the osFeatures. + */ + public com.google.protobuf.ProtocolStringList getOsFeaturesList() { + osFeatures_.makeImmutable(); + return osFeatures_; + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The count of osFeatures. + */ + public int getOsFeaturesCount() { + return osFeatures_.size(); + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index of the element to return. + * @return The osFeatures at the given index. + */ + public java.lang.String getOsFeatures(int index) { + return osFeatures_.get(index); + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index of the value to return. + * @return The bytes of the osFeatures at the given index. + */ + public com.google.protobuf.ByteString getOsFeaturesBytes(int index) { + return osFeatures_.getByteString(index); + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index to set the value at. + * @param value The osFeatures to set. + * @return This builder for chaining. + */ + public Builder setOsFeatures(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureOsFeaturesIsMutable(); + osFeatures_.set(index, value); + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The osFeatures to add. + * @return This builder for chaining. + */ + public Builder addOsFeatures(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureOsFeaturesIsMutable(); + osFeatures_.add(value); + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param values The osFeatures to add. + * @return This builder for chaining. + */ + public Builder addAllOsFeatures(java.lang.Iterable values) { + ensureOsFeaturesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, osFeatures_); + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearOsFeatures() { + osFeatures_ = com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000020); + ; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The required OS features for the image, for example on Windows
+     * `win32k`.
+     * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes of the osFeatures to add. + * @return This builder for chaining. + */ + public Builder addOsFeaturesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureOsFeaturesIsMutable(); + osFeatures_.add(value); + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + private java.lang.Object variant_ = ""; + + /** + * + * + *
+     * Optional. The variant of the CPU in the image, for example `v7` to specify
+     * ARMv7 when architecture is `arm`.
+     * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The variant. + */ + public java.lang.String getVariant() { + java.lang.Object ref = variant_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + variant_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * + * + *
+     * Optional. The variant of the CPU in the image, for example `v7` to specify
+     * ARMv7 when architecture is `arm`.
+     * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for variant. + */ + public com.google.protobuf.ByteString getVariantBytes() { + java.lang.Object ref = variant_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + variant_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * + * + *
+     * Optional. The variant of the CPU in the image, for example `v7` to specify
+     * ARMv7 when architecture is `arm`.
+     * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The variant to set. + * @return This builder for chaining. + */ + public Builder setVariant(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + variant_ = value; + bitField0_ |= 0x00000040; + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The variant of the CPU in the image, for example `v7` to specify
+     * ARMv7 when architecture is `arm`.
+     * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return This builder for chaining. + */ + public Builder clearVariant() { + variant_ = getDefaultInstance().getVariant(); + bitField0_ = (bitField0_ & ~0x00000040); + onChanged(); + return this; + } + + /** + * + * + *
+     * Optional. The variant of the CPU in the image, for example `v7` to specify
+     * ARMv7 when architecture is `arm`.
+     * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param value The bytes for variant to set. + * @return This builder for chaining. + */ + public Builder setVariantBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + variant_ = value; + bitField0_ |= 0x00000040; + onChanged(); + return this; + } + + @java.lang.Override + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:google.devtools.artifactregistry.v1.ImageManifest) + } + + // @@protoc_insertion_point(class_scope:google.devtools.artifactregistry.v1.ImageManifest) + private static final com.google.devtools.artifactregistry.v1.ImageManifest DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.google.devtools.artifactregistry.v1.ImageManifest(); + } + + public static com.google.devtools.artifactregistry.v1.ImageManifest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ImageManifest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.devtools.artifactregistry.v1.ImageManifest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImageManifestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImageManifestOrBuilder.java new file mode 100644 index 000000000000..1321af054f54 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImageManifestOrBuilder.java @@ -0,0 +1,256 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/devtools/artifactregistry/v1/artifact.proto + +// Protobuf Java Version: 3.25.8 +package com.google.devtools.artifactregistry.v1; + +public interface ImageManifestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1.ImageManifest) + com.google.protobuf.MessageOrBuilder { + + /** + * + * + *
+   * Optional. The CPU architecture of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+   * "riscv64", "mips64le", etc.
+   * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The architecture. + */ + java.lang.String getArchitecture(); + + /** + * + * + *
+   * Optional. The CPU architecture of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "amd64", "arm64", "ppc64le", "s390x",
+   * "riscv64", "mips64le", etc.
+   * 
+ * + * string architecture = 1 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for architecture. + */ + com.google.protobuf.ByteString getArchitectureBytes(); + + /** + * + * + *
+   * Optional. The operating system of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+   * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The os. + */ + java.lang.String getOs(); + + /** + * + * + *
+   * Optional. The operating system of the image.
+   * Values are provided by the Docker client and are not validated by Artifact
+   * Registry. Example values include "linux", "windows", "darwin", "aix", etc.
+   * 
+ * + * string os = 2 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for os. + */ + com.google.protobuf.ByteString getOsBytes(); + + /** + * + * + *
+   * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+   * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The digest. + */ + java.lang.String getDigest(); + + /** + * + * + *
+   * Optional. The manifest digest, in the format "sha256:<sha256_hex_digest>".
+   * 
+ * + * string digest = 3 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for digest. + */ + com.google.protobuf.ByteString getDigestBytes(); + + /** + * + * + *
+   * Optional. The media type of the manifest, e.g.,
+   * "application/vnd.docker.distribution.manifest.v2+json"
+   * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The mediaType. + */ + java.lang.String getMediaType(); + + /** + * + * + *
+   * Optional. The media type of the manifest, e.g.,
+   * "application/vnd.docker.distribution.manifest.v2+json"
+   * 
+ * + * string media_type = 4 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for mediaType. + */ + com.google.protobuf.ByteString getMediaTypeBytes(); + + /** + * + * + *
+   * Optional. The OS version of the image, for example on Windows
+   * `10.0.14393.1066`.
+   * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The osVersion. + */ + java.lang.String getOsVersion(); + + /** + * + * + *
+   * Optional. The OS version of the image, for example on Windows
+   * `10.0.14393.1066`.
+   * 
+ * + * string os_version = 5 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for osVersion. + */ + com.google.protobuf.ByteString getOsVersionBytes(); + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return A list containing the osFeatures. + */ + java.util.List getOsFeaturesList(); + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The count of osFeatures. + */ + int getOsFeaturesCount(); + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index of the element to return. + * @return The osFeatures at the given index. + */ + java.lang.String getOsFeatures(int index); + + /** + * + * + *
+   * Optional. The required OS features for the image, for example on Windows
+   * `win32k`.
+   * 
+ * + * repeated string os_features = 6 [(.google.api.field_behavior) = OPTIONAL]; + * + * @param index The index of the value to return. + * @return The bytes of the osFeatures at the given index. + */ + com.google.protobuf.ByteString getOsFeaturesBytes(int index); + + /** + * + * + *
+   * Optional. The variant of the CPU in the image, for example `v7` to specify
+   * ARMv7 when architecture is `arm`.
+   * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The variant. + */ + java.lang.String getVariant(); + + /** + * + * + *
+   * Optional. The variant of the CPU in the image, for example `v7` to specify
+   * ARMv7 when architecture is `arm`.
+   * 
+ * + * string variant = 7 [(.google.api.field_behavior) = OPTIONAL]; + * + * @return The bytes for variant. + */ + com.google.protobuf.ByteString getVariantBytes(); +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfo.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfo.java index 7d405f5c1b15..b9b06cfbb58d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfo.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfoOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfoOrBuilder.java index 07eb15132f46..ea47e9d69447 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfoOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsErrorInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSource.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSource.java index e326cffa665d..a226375051c3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSource.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSourceOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSourceOrBuilder.java index 5e95452c6a18..c16b990d5ffb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSourceOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsGcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadata.java index 8d8c5edce63c..ccc0b6df8f27 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadataOrBuilder.java index 8778d30dd5bd..5959239f5ab9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequest.java index 4933c4ae9180..a0e128dae4f4 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequestOrBuilder.java index 4b8563a54752..7045871f0966 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponse.java index b76a87c0709e..34f7324c1cf7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponseOrBuilder.java index 0c51ce7ddca6..012b660ee7e3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportAptArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfo.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfo.java index 1c02ea088833..bd41500ae133 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfo.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfoOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfoOrBuilder.java index 2790e9dcd960..b35fa1de2c00 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfoOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsErrorInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSource.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSource.java index 32aa757036a5..dcc56369ba5a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSource.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSourceOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSourceOrBuilder.java index dec854ba5d2a..916bee47a4f2 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSourceOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsGcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadata.java index cb4179acff9c..4a040572bef5 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadataOrBuilder.java index 895b757f6bb7..637cda99770b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequest.java index 26c9f8060303..53c3b01c8894 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequestOrBuilder.java index b83f931b6fd7..7afc9945feb7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponse.java index 2df21b2a6a97..a4e46737f99b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponseOrBuilder.java index 27432a80a403..fd6e60b714d8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ImportYumArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifact.java index f06d2c3a3453..5773ea4de8c5 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactOrBuilder.java index 4a51e69fb4dd..654d2a5e7d6f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactProto.java index 9a29939f582c..7a866e5b4221 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/KfpArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequest.java index 7dc648b7e276..cf83ea4388bc 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequestOrBuilder.java index d2167e6ab856..abfe1390fd59 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponse.java index f6be49036ee4..3580a2d3e882 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponseOrBuilder.java index d17a62d47e38..f7d6ecb8aa1e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListAttachmentsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequest.java index 39636bb03803..ff7f672bb63a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequestOrBuilder.java index 4b68e33ec65a..9bdf4f2b691b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponse.java index b6728f8ddc0a..0241ac46db9a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponseOrBuilder.java index 15b3651cb849..799e3acff4cb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListDockerImagesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequest.java index 09bf5d32ba78..91bed47ca32e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequestOrBuilder.java index c40cf4bb5300..31bc575df2eb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponse.java index 8e7c0d08427a..e5ee6d0bfd9e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponseOrBuilder.java index 57586d71f070..147202976f5a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListFilesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequest.java index 9e395aa3e3e4..ca55add84e4d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequestOrBuilder.java index 4f1393126125..53ab740bbe81 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponse.java index b8457522b86a..bfe7f2c08200 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponseOrBuilder.java index 8b75df32d92b..49bf356457bb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListMavenArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequest.java index d5b2faac55b1..a465c9bb87f6 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequestOrBuilder.java index a2a2028c576e..2cd46eab255e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponse.java index 2d8ab1473a1f..d6b18eeb0798 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponseOrBuilder.java index 0a686a87a8af..dc4b260f1989 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListNpmPackagesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequest.java index 120a2794d14e..5df03b7dadd1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequestOrBuilder.java index 6db41a0a5730..8fd82610cb45 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponse.java index 48c976ba823c..d8c651d90f50 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponseOrBuilder.java index 3511c6a08821..34465fae602a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPackagesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequest.java index 1a5cddb78a4c..9396925a55d3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequestOrBuilder.java index 9fe15b2d14c4..f944ec7010f7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponse.java index f58ffbfa58fb..9182fde4ba54 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponseOrBuilder.java index d9c963a9a3a5..9b9594356867 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListPythonPackagesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequest.java index 6146ff128e73..e9482aca4038 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequestOrBuilder.java index 181a115a9785..e95e78854eac 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponse.java index 211519c3f72a..0ddaad5157e3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponseOrBuilder.java index 405cd5137f10..a24dcd1398ed 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRepositoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequest.java index 9af8c53b2883..a82cd8710a3b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequestOrBuilder.java index 4c4e444c60ae..505b1ddb05f3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponse.java index bbf5c249f8c7..96737d47946f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponseOrBuilder.java index 55d10f1fe54c..c40533e40bab 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListRulesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequest.java index 4be0763a203a..4abf727f245e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequestOrBuilder.java index a95605d0a1ac..2d3fd3dab3a5 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponse.java index cb5ccdbb134e..696f5843cb1f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponseOrBuilder.java index 39e1c753106e..5df3918ef5c9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListTagsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequest.java index 4661ac0266f2..52214cf3c0aa 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequestOrBuilder.java index d65d4e2ebedd..384ad0b74b67 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponse.java index fa98c2a306da..28be2db48a7a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponseOrBuilder.java index 2f02cacbb6c4..0a9837acdddf 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ListVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/LocationName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/LocationName.java index 96d96751ea2d..ec8823534835 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/LocationName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifact.java index 46c9e1f8df44..794983b68823 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactName.java index d2d930cc8765..c1c7935e7728 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactOrBuilder.java index 5dc6acfd75bb..88a0dc5fd18f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/MavenArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackage.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackage.java index e27d0ab6f73f..eb4aa72429ab 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackage.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageName.java index 9ee054f7ebbd..60525a2b446c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageOrBuilder.java index 85393341a2bb..cd1060e5a335 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/NpmPackageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadata.java index fe3ec0c97f8a..b7c04026e40a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadataOrBuilder.java index a247f3592a77..12d7f4974900 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Package.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Package.java index 43bdfa48b3d5..90ef8807b967 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Package.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Package.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageName.java index 9b012865a51c..1e1acfe453a0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageOrBuilder.java index 193d82214314..2b9c0d8cc904 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageProto.java index 4d4f60b761b9..2cac26225693 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PackageProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettings.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettings.java index 97c95692be28..e40b96151426 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettings.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsName.java index 32080e42c58d..ffd1fdbea362 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsOrBuilder.java index 87db9f7e0bdf..b5b457119001 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ProjectSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackage.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackage.java index b4f18a31d5a9..5fafa4407adb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackage.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageName.java index 5cded281a28f..42424e71d544 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageOrBuilder.java index 3e787a0a00db..43073adc83ac 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/PythonPackageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfig.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfig.java index 6e2c374343d5..a277b1557cf5 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfig.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfigOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfigOrBuilder.java index ecd42414b172..2b3d13acf421 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfigOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RemoteRepositoryConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Repository.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Repository.java index 1aa845f90155..6f778c53fff6 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Repository.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Repository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -193,6 +193,16 @@ public enum Format implements com.google.protobuf.ProtocolMessageEnum { * GENERIC = 11; */ GENERIC(11), + /** + * + * + *
+     * Ruby package format.
+     * 
+ * + * RUBY = 12; + */ + RUBY(12), UNRECOGNIZED(-1), ; @@ -306,6 +316,17 @@ public enum Format implements com.google.protobuf.ProtocolMessageEnum { */ public static final int GENERIC_VALUE = 11; + /** + * + * + *
+     * Ruby package format.
+     * 
+ * + * RUBY = 12; + */ + public static final int RUBY_VALUE = 12; + public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( @@ -350,6 +371,8 @@ public static Format forNumber(int value) { return GO; case 11: return GENERIC; + case 12: + return RUBY; default: return null; } @@ -2350,7 +2373,8 @@ public enum EnablementConfig implements com.google.protobuf.ProtocolMessageEnum * * *
-       * Not set. This will be treated as INHERITED.
+       * Not set. This will be treated as INHERITED for Docker repositories and
+       * DISABLED for non-Docker repositories.
        * 
* * ENABLEMENT_CONFIG_UNSPECIFIED = 0; @@ -2384,7 +2408,8 @@ public enum EnablementConfig implements com.google.protobuf.ProtocolMessageEnum * * *
-       * Not set. This will be treated as INHERITED.
+       * Not set. This will be treated as INHERITED for Docker repositories and
+       * DISABLED for non-Docker repositories.
        * 
* * ENABLEMENT_CONFIG_UNSPECIFIED = 0; @@ -5032,7 +5057,7 @@ public long getSizeBytes() { * * *
-   * Output only. If set, the repository satisfies physical zone separation.
+   * Output only. Whether or not this repository satisfies PZS.
    * 
* * bool satisfies_pzs = 16 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5158,7 +5183,7 @@ public boolean getDisallowUnspecifiedMode() { * * *
-   * Output only. If set, the repository satisfies physical zone isolation.
+   * Output only. Whether or not this repository satisfies PZI.
    * 
* * bool satisfies_pzi = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -8791,7 +8816,7 @@ public Builder clearSizeBytes() { * * *
-     * Output only. If set, the repository satisfies physical zone separation.
+     * Output only. Whether or not this repository satisfies PZS.
      * 
* * bool satisfies_pzs = 16 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -8807,7 +8832,7 @@ public boolean getSatisfiesPzs() { * * *
-     * Output only. If set, the repository satisfies physical zone separation.
+     * Output only. Whether or not this repository satisfies PZS.
      * 
* * bool satisfies_pzs = 16 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -8827,7 +8852,7 @@ public Builder setSatisfiesPzs(boolean value) { * * *
-     * Output only. If set, the repository satisfies physical zone separation.
+     * Output only. Whether or not this repository satisfies PZS.
      * 
* * bool satisfies_pzs = 16 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -9200,7 +9225,7 @@ public Builder clearDisallowUnspecifiedMode() { * * *
-     * Output only. If set, the repository satisfies physical zone isolation.
+     * Output only. Whether or not this repository satisfies PZI.
      * 
* * bool satisfies_pzi = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -9216,7 +9241,7 @@ public boolean getSatisfiesPzi() { * * *
-     * Output only. If set, the repository satisfies physical zone isolation.
+     * Output only. Whether or not this repository satisfies PZI.
      * 
* * bool satisfies_pzi = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -9236,7 +9261,7 @@ public Builder setSatisfiesPzi(boolean value) { * * *
-     * Output only. If set, the repository satisfies physical zone isolation.
+     * Output only. Whether or not this repository satisfies PZI.
      * 
* * bool satisfies_pzi = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryName.java index de83033f4e0d..fb4c634fb8c9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryOrBuilder.java index 4c164085fb44..37db0783f4b0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -624,7 +624,7 @@ com.google.devtools.artifactregistry.v1.CleanupPolicy getCleanupPoliciesOrThrow( * * *
-   * Output only. If set, the repository satisfies physical zone separation.
+   * Output only. Whether or not this repository satisfies PZS.
    * 
* * bool satisfies_pzs = 16 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -713,7 +713,7 @@ com.google.devtools.artifactregistry.v1.CleanupPolicy getCleanupPoliciesOrThrow( * * *
-   * Output only. If set, the repository satisfies physical zone isolation.
+   * Output only. Whether or not this repository satisfies PZI.
    * 
* * bool satisfies_pzi = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryProto.java index d4e9aa5af70d..6ef7468b3027 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RepositoryProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -339,7 +339,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\010upstream\032*\n" + "\026CommonRemoteRepository\022\020\n" + "\003uri\030\001 \001(\tB\003\340A\002B\017\n\r" - + "remote_source\"\264\024\n\n" + + "remote_source\"\277\024\n\n" + "Repository\022]\n" + "\014maven_config\030\t \001(\0132E.google.devtools.artifa" + "ctregistry.v1.Repository.MavenRepositoryConfigH\000\022_\n\r" @@ -406,7 +406,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\024CleanupPoliciesEntry\022\013\n" + "\003key\030\001 \001(\t\022A\n" + "\005value\030\002 \001(" - + "\01322.google.devtools.artifactregistry.v1.CleanupPolicy:\0028\001\"|\n" + + "\01322.google.devtools.artifactregistry.v1.CleanupPolicy:\0028\001\"\206\001\n" + "\006Format\022\026\n" + "\022FORMAT_UNSPECIFIED\020\000\022\n\n" + "\006DOCKER\020\001\022\t\n" @@ -418,33 +418,34 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\003KFP\020\t\022\006\n" + "\002GO\020\n" + "\022\013\n" - + "\007GENERIC\020\013\"d\n" + + "\007GENERIC\020\013\022\010\n" + + "\004RUBY\020\014\"d\n" + "\004Mode\022\024\n" + "\020MODE_UNSPECIFIED\020\000\022\027\n" + "\023STANDARD_REPOSITORY\020\001\022\026\n" + "\022VIRTUAL_REPOSITORY\020\002\022\025\n" + "\021REMOTE_REPOSITORY\020\003:r\352Ao\n" - + "*artifactregistry.googleapis.com/Repository\022Aprojects/{project}/locat" - + "ions/{location}/repositories/{repository}B\017\n\r" + + "*artifactregistry.googleapis.com/Repository\022Aprojects/{pro" + + "ject}/locations/{location}/repositories/{repository}B\017\n\r" + "format_configB\r\n" + "\013mode_config\"\260\001\n" + "\027ListRepositoriesRequest\022B\n" - + "\006parent\030\001 \001(\tB2\340" - + "A\002\372A,\022*artifactregistry.googleapis.com/Repository\022\021\n" + + "\006parent\030\001 \001(" + + "\tB2\340A\002\372A,\022*artifactregistry.googleapis.com/Repository\022\021\n" + "\tpage_size\030\002 \001(\005\022\022\n\n" + "page_token\030\003 \001(\t\022\023\n" + "\006filter\030\004 \001(\tB\003\340A\001\022\025\n" + "\010order_by\030\005 \001(\tB\003\340A\001\"z\n" + "\030ListRepositoriesResponse\022E\n" - + "\014repositories\030\001" - + " \003(\0132/.google.devtools.artifactregistry.v1.Repository\022\027\n" + + "\014repositories\030\001 \003(\0132/.goog" + + "le.devtools.artifactregistry.v1.Repository\022\027\n" + "\017next_page_token\030\002 \001(\t\"X\n" + "\024GetRepositoryRequest\022@\n" + "\004name\030\001 \001(\tB2\340A\002\372A,\n" + "*artifactregistry.googleapis.com/Repository\"\303\001\n" + "\027CreateRepositoryRequest\022B\n" - + "\006parent\030\001 \001(\tB2\340A\002\372A,\022*" - + "artifactregistry.googleapis.com/Repository\022\032\n\r" + + "\006parent\030\001 \001(" + + "\tB2\340A\002\372A,\022*artifactregistry.googleapis.com/Repository\022\032\n\r" + "repository_id\030\002 \001(\tB\003\340A\002\022H\n\n" + "repository\030\003" + " \001(\0132/.google.devtools.artifactregistry.v1.RepositoryB\003\340A\002\"\217\001\n" @@ -454,15 +455,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\027DeleteRepositoryRequest\022@\n" + "\004name\030\001 \001(\tB2\340A\002\372A,\n" + "*artifactregistry.googleapis.com/RepositoryB\347\003\n" - + "\'com.google.devtools.artifactregistry.v1B\017RepositoryP" - + "rotoP\001ZPcloud.google.com/go/artifactregi" - + "stry/apiv1/artifactregistrypb;artifactregistrypb\252\002" - + " Google.Cloud.ArtifactRegistry.V1\312\002" - + " Google\\Cloud\\ArtifactRegistry\\V1\352\002#Google::Cloud::ArtifactRegistry::V1\352Ak\n" - + "*secretmanager.googleapis.com/SecretVers" - + "ion\022=projects/{project}/secrets/{secret}/versions/{secret_version}\352A|\n" - + "\'servicedirectory.googleapis.com/Service\022Qprojects" - + "/{project}/locations/{location}/namespaces/{namespace}/services/{service}b\006proto3" + + "\'com.google.devtools.artifactregistry.v1B\017" + + "RepositoryProtoP\001ZPcloud.google.com/go/a" + + "rtifactregistry/apiv1/artifactregistrypb;artifactregistrypb\252\002" + + " Google.Cloud.ArtifactRegistry.V1\312\002 Google\\Cloud\\ArtifactRe" + + "gistry\\V1\352\002#Google::Cloud::ArtifactRegistry::V1\352Ak\n" + + "*secretmanager.googleapis.com/SecretVersion\022=projects/{project}/secre" + + "ts/{secret}/versions/{secret_version}\352A|\n" + + "\'servicedirectory.googleapis.com/Service\022Qprojects/{project}/locations/{locatio" + + "n}/namespaces/{namespace}/services/{service}b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Rule.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Rule.java index 95d79b989452..7784bfa8cb13 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Rule.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Rule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleName.java index e2fd5161b145..07f94ee79608 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleOrBuilder.java index 3694a68bebe4..4b4fae61aed8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleProto.java index cfa7a796ce0e..050df9cf9dab 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/RuleProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ServiceProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ServiceProto.java index 20d6d262ef99..4bf78660ef91 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ServiceProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,310 +48,319 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "/artifactregistry/v1/apt_artifact.proto\032" + "2google/devtools/artifactregistry/v1/art" + "ifact.proto\0324google/devtools/artifactreg" - + "istry/v1/attachment.proto\032.google/devtoo" - + "ls/artifactregistry/v1/file.proto\0321googl" - + "e/devtools/artifactregistry/v1/package.p" - + "roto\0324google/devtools/artifactregistry/v" - + "1/repository.proto\032.google/devtools/arti" - + "factregistry/v1/rule.proto\0322google/devto" - + "ols/artifactregistry/v1/settings.proto\032-" - + "google/devtools/artifactregistry/v1/tag." - + "proto\0321google/devtools/artifactregistry/" - + "v1/version.proto\0326google/devtools/artifa" - + "ctregistry/v1/vpcsc_config.proto\0326google" - + "/devtools/artifactregistry/v1/yum_artifa" - + "ct.proto\032\036google/iam/v1/iam_policy.proto" - + "\032\032google/iam/v1/policy.proto\032#google/lon" - + "grunning/operations.proto\032\033google/protob" - + "uf/empty.proto\"\023\n\021OperationMetadata2\352W\n\020" - + "ArtifactRegistry\022\341\001\n\020ListDockerImages\022<." + + "istry/v1/attachment.proto\0320google/devtoo" + + "ls/artifactregistry/v1/export.proto\032.goo" + + "gle/devtools/artifactregistry/v1/file.pr" + + "oto\0321google/devtools/artifactregistry/v1" + + "/package.proto\0324google/devtools/artifact" + + "registry/v1/repository.proto\032.google/dev" + + "tools/artifactregistry/v1/rule.proto\0322go" + + "ogle/devtools/artifactregistry/v1/settin" + + "gs.proto\032-google/devtools/artifactregist" + + "ry/v1/tag.proto\0321google/devtools/artifac" + + "tregistry/v1/version.proto\0326google/devto" + + "ols/artifactregistry/v1/vpcsc_config.pro" + + "to\0326google/devtools/artifactregistry/v1/" + + "yum_artifact.proto\032\036google/iam/v1/iam_po" + + "licy.proto\032\032google/iam/v1/policy.proto\032#" + + "google/longrunning/operations.proto\032\033goo" + + "gle/protobuf/empty.proto\"\023\n\021OperationMet" + + "adata2\246Z\n\020ArtifactRegistry\022\341\001\n\020ListDocke" + + "rImages\022<.google.devtools.artifactregist" + + "ry.v1.ListDockerImagesRequest\032=.google.d" + + "evtools.artifactregistry.v1.ListDockerIm" + + "agesResponse\"P\332A\006parent\202\323\344\223\002A\022?/v1/{pare" + + "nt=projects/*/locations/*/repositories/*" + + "}/dockerImages\022\316\001\n\016GetDockerImage\022:.goog" + + "le.devtools.artifactregistry.v1.GetDocke" + + "rImageRequest\0320.google.devtools.artifact" + + "registry.v1.DockerImage\"N\332A\004name\202\323\344\223\002A\022?" + + "/v1/{name=projects/*/locations/*/reposit" + + "ories/*/dockerImages/*}\022\351\001\n\022ListMavenArt" + + "ifacts\022>.google.devtools.artifactregistr" + + "y.v1.ListMavenArtifactsRequest\032?.google." + + "devtools.artifactregistry.v1.ListMavenAr" + + "tifactsResponse\"R\332A\006parent\202\323\344\223\002C\022A/v1/{p" + + "arent=projects/*/locations/*/repositorie" + + "s/*}/mavenArtifacts\022\326\001\n\020GetMavenArtifact" + + "\022<.google.devtools.artifactregistry.v1.G" + + "etMavenArtifactRequest\0322.google.devtools" + + ".artifactregistry.v1.MavenArtifact\"P\332A\004n" + + "ame\202\323\344\223\002C\022A/v1/{name=projects/*/location" + + "s/*/repositories/*/mavenArtifacts/*}\022\335\001\n" + + "\017ListNpmPackages\022;.google.devtools.artif" + + "actregistry.v1.ListNpmPackagesRequest\032<." + "google.devtools.artifactregistry.v1.List" - + "DockerImagesRequest\032=.google.devtools.ar" - + "tifactregistry.v1.ListDockerImagesRespon" - + "se\"P\332A\006parent\202\323\344\223\002A\022?/v1/{parent=project" - + "s/*/locations/*/repositories/*}/dockerIm" - + "ages\022\316\001\n\016GetDockerImage\022:.google.devtool" - + "s.artifactregistry.v1.GetDockerImageRequ" - + "est\0320.google.devtools.artifactregistry.v" - + "1.DockerImage\"N\332A\004name\202\323\344\223\002A\022?/v1/{name=" - + "projects/*/locations/*/repositories/*/do" - + "ckerImages/*}\022\351\001\n\022ListMavenArtifacts\022>.g" - + "oogle.devtools.artifactregistry.v1.ListM" - + "avenArtifactsRequest\032?.google.devtools.a" - + "rtifactregistry.v1.ListMavenArtifactsRes" - + "ponse\"R\332A\006parent\202\323\344\223\002C\022A/v1/{parent=proj" - + "ects/*/locations/*/repositories/*}/maven" - + "Artifacts\022\326\001\n\020GetMavenArtifact\022<.google." - + "devtools.artifactregistry.v1.GetMavenArt" - + "ifactRequest\0322.google.devtools.artifactr" - + "egistry.v1.MavenArtifact\"P\332A\004name\202\323\344\223\002C\022" - + "A/v1/{name=projects/*/locations/*/reposi" - + "tories/*/mavenArtifacts/*}\022\335\001\n\017ListNpmPa" - + "ckages\022;.google.devtools.artifactregistr" - + "y.v1.ListNpmPackagesRequest\032<.google.dev" - + "tools.artifactregistry.v1.ListNpmPackage" - + "sResponse\"O\332A\006parent\202\323\344\223\002@\022>/v1/{parent=" - + "projects/*/locations/*/repositories/*}/n" - + "pmPackages\022\312\001\n\rGetNpmPackage\0229.google.de" - + "vtools.artifactregistry.v1.GetNpmPackage" - + "Request\032/.google.devtools.artifactregist" - + "ry.v1.NpmPackage\"M\332A\004name\202\323\344\223\002@\022>/v1/{na" - + "me=projects/*/locations/*/repositories/*" - + "/npmPackages/*}\022\351\001\n\022ListPythonPackages\022>" - + ".google.devtools.artifactregistry.v1.Lis" - + "tPythonPackagesRequest\032?.google.devtools" - + ".artifactregistry.v1.ListPythonPackagesR" - + "esponse\"R\332A\006parent\202\323\344\223\002C\022A/v1/{parent=pr" - + "ojects/*/locations/*/repositories/*}/pyt" - + "honPackages\022\326\001\n\020GetPythonPackage\022<.googl" - + "e.devtools.artifactregistry.v1.GetPython" - + "PackageRequest\0322.google.devtools.artifac" - + "tregistry.v1.PythonPackage\"P\332A\004name\202\323\344\223\002" - + "C\022A/v1/{name=projects/*/locations/*/repo" - + "sitories/*/pythonPackages/*}\022\313\002\n\022ImportA" - + "ptArtifacts\022>.google.devtools.artifactre" - + "gistry.v1.ImportAptArtifactsRequest\032\035.go" - + "ogle.longrunning.Operation\"\325\001\312A\200\001\n>googl" - + "e.devtools.artifactregistry.v1.ImportApt" - + "ArtifactsResponse\022>google.devtools.artif" - + "actregistry.v1.ImportAptArtifactsMetadat" - + "a\202\323\344\223\002K\"F/v1/{parent=projects/*/location" - + "s/*/repositories/*}/aptArtifacts:import:" - + "\001*\022\313\002\n\022ImportYumArtifacts\022>.google.devto" - + "ols.artifactregistry.v1.ImportYumArtifac" - + "tsRequest\032\035.google.longrunning.Operation" - + "\"\325\001\312A\200\001\n>google.devtools.artifactregistr" - + "y.v1.ImportYumArtifactsResponse\022>google." - + "devtools.artifactregistry.v1.ImportYumAr" - + "tifactsMetadata\202\323\344\223\002K\"F/v1/{parent=proje" - + "cts/*/locations/*/repositories/*}/yumArt" - + "ifacts:import:\001*\022\322\001\n\020ListRepositories\022<." - + "google.devtools.artifactregistry.v1.List" - + "RepositoriesRequest\032=.google.devtools.ar" - + "tifactregistry.v1.ListRepositoriesRespon" - + "se\"A\332A\006parent\202\323\344\223\0022\0220/v1/{parent=project" - + "s/*/locations/*}/repositories\022\274\001\n\rGetRep" - + "ository\0229.google.devtools.artifactregist" - + "ry.v1.GetRepositoryRequest\032/.google.devt" - + "ools.artifactregistry.v1.Repository\"?\332A\004" - + "name\202\323\344\223\0022\0220/v1/{name=projects/*/locatio" - + "ns/*/repositories/*}\022\302\002\n\020CreateRepositor" - + "y\022<.google.devtools.artifactregistry.v1." - + "CreateRepositoryRequest\032\035.google.longrun" - + "ning.Operation\"\320\001\312Ag\n.google.devtools.ar" - + "tifactregistry.v1.Repository\0225google.dev" - + "tools.artifactregistry.v1.OperationMetad" - + "ata\332A\037parent,repository,repository_id\202\323\344" - + "\223\002>\"0/v1/{parent=projects/*/locations/*}" - + "/repositories:\nrepository\022\353\001\n\020UpdateRepo" - + "sitory\022<.google.devtools.artifactregistr" - + "y.v1.UpdateRepositoryRequest\032/.google.de" - + "vtools.artifactregistry.v1.Repository\"h\332" - + "A\026repository,update_mask\202\323\344\223\002I2;/v1/{rep" - + "ository.name=projects/*/locations/*/repo" - + "sitories/*}:\nrepository\022\202\002\n\020DeleteReposi" - + "tory\022<.google.devtools.artifactregistry." - + "v1.DeleteRepositoryRequest\032\035.google.long" - + "running.Operation\"\220\001\312AN\n\025google.protobuf" - + ".Empty\0225google.devtools.artifactregistry" - + ".v1.OperationMetadata\332A\004name\202\323\344\223\0022*0/v1/" - + "{name=projects/*/locations/*/repositorie" - + "s/*}\022\321\001\n\014ListPackages\0228.google.devtools." - + "artifactregistry.v1.ListPackagesRequest\032" - + "9.google.devtools.artifactregistry.v1.Li" - + "stPackagesResponse\"L\332A\006parent\202\323\344\223\002=\022;/v1" - + "/{parent=projects/*/locations/*/reposito" - + "ries/*}/packages\022\276\001\n\nGetPackage\0226.google" - + ".devtools.artifactregistry.v1.GetPackage" - + "Request\032,.google.devtools.artifactregist" - + "ry.v1.Package\"J\332A\004name\202\323\344\223\002=\022;/v1/{name=" - + "projects/*/locations/*/repositories/*/pa" - + "ckages/*}\022\207\002\n\rDeletePackage\0229.google.dev" - + "tools.artifactregistry.v1.DeletePackageR" - + "equest\032\035.google.longrunning.Operation\"\233\001" + + "NpmPackagesResponse\"O\332A\006parent\202\323\344\223\002@\022>/v" + + "1/{parent=projects/*/locations/*/reposit" + + "ories/*}/npmPackages\022\312\001\n\rGetNpmPackage\0229" + + ".google.devtools.artifactregistry.v1.Get" + + "NpmPackageRequest\032/.google.devtools.arti" + + "factregistry.v1.NpmPackage\"M\332A\004name\202\323\344\223\002" + + "@\022>/v1/{name=projects/*/locations/*/repo" + + "sitories/*/npmPackages/*}\022\351\001\n\022ListPython" + + "Packages\022>.google.devtools.artifactregis" + + "try.v1.ListPythonPackagesRequest\032?.googl" + + "e.devtools.artifactregistry.v1.ListPytho" + + "nPackagesResponse\"R\332A\006parent\202\323\344\223\002C\022A/v1/" + + "{parent=projects/*/locations/*/repositor" + + "ies/*}/pythonPackages\022\326\001\n\020GetPythonPacka" + + "ge\022<.google.devtools.artifactregistry.v1" + + ".GetPythonPackageRequest\0322.google.devtoo" + + "ls.artifactregistry.v1.PythonPackage\"P\332A" + + "\004name\202\323\344\223\002C\022A/v1/{name=projects/*/locati" + + "ons/*/repositories/*/pythonPackages/*}\022\313" + + "\002\n\022ImportAptArtifacts\022>.google.devtools." + + "artifactregistry.v1.ImportAptArtifactsRe" + + "quest\032\035.google.longrunning.Operation\"\325\001\312" + + "A\200\001\n>google.devtools.artifactregistry.v1" + + ".ImportAptArtifactsResponse\022>google.devt" + + "ools.artifactregistry.v1.ImportAptArtifa" + + "ctsMetadata\202\323\344\223\002K\"F/v1/{parent=projects/" + + "*/locations/*/repositories/*}/aptArtifac" + + "ts:import:\001*\022\313\002\n\022ImportYumArtifacts\022>.go" + + "ogle.devtools.artifactregistry.v1.Import" + + "YumArtifactsRequest\032\035.google.longrunning" + + ".Operation\"\325\001\312A\200\001\n>google.devtools.artif" + + "actregistry.v1.ImportYumArtifactsRespons" + + "e\022>google.devtools.artifactregistry.v1.I" + + "mportYumArtifactsMetadata\202\323\344\223\002K\"F/v1/{pa" + + "rent=projects/*/locations/*/repositories" + + "/*}/yumArtifacts:import:\001*\022\322\001\n\020ListRepos" + + "itories\022<.google.devtools.artifactregist" + + "ry.v1.ListRepositoriesRequest\032=.google.d" + + "evtools.artifactregistry.v1.ListReposito" + + "riesResponse\"A\332A\006parent\202\323\344\223\0022\0220/v1/{pare" + + "nt=projects/*/locations/*}/repositories\022" + + "\274\001\n\rGetRepository\0229.google.devtools.arti" + + "factregistry.v1.GetRepositoryRequest\032/.g" + + "oogle.devtools.artifactregistry.v1.Repos" + + "itory\"?\332A\004name\202\323\344\223\0022\0220/v1/{name=projects" + + "/*/locations/*/repositories/*}\022\302\002\n\020Creat" + + "eRepository\022<.google.devtools.artifactre" + + "gistry.v1.CreateRepositoryRequest\032\035.goog" + + "le.longrunning.Operation\"\320\001\312Ag\n.google.d" + + "evtools.artifactregistry.v1.Repository\0225" + + "google.devtools.artifactregistry.v1.Oper" + + "ationMetadata\332A\037parent,repository,reposi" + + "tory_id\202\323\344\223\002>\"0/v1/{parent=projects/*/lo" + + "cations/*}/repositories:\nrepository\022\353\001\n\020" + + "UpdateRepository\022<.google.devtools.artif" + + "actregistry.v1.UpdateRepositoryRequest\032/" + + ".google.devtools.artifactregistry.v1.Rep" + + "ository\"h\332A\026repository,update_mask\202\323\344\223\002I" + + "2;/v1/{repository.name=projects/*/locati" + + "ons/*/repositories/*}:\nrepository\022\202\002\n\020De" + + "leteRepository\022<.google.devtools.artifac" + + "tregistry.v1.DeleteRepositoryRequest\032\035.g" + + "oogle.longrunning.Operation\"\220\001\312AN\n\025googl" + + "e.protobuf.Empty\0225google.devtools.artifa" + + "ctregistry.v1.OperationMetadata\332A\004name\202\323" + + "\344\223\0022*0/v1/{name=projects/*/locations/*/r" + + "epositories/*}\022\321\001\n\014ListPackages\0228.google" + + ".devtools.artifactregistry.v1.ListPackag" + + "esRequest\0329.google.devtools.artifactregi" + + "stry.v1.ListPackagesResponse\"L\332A\006parent\202" + + "\323\344\223\002=\022;/v1/{parent=projects/*/locations/" + + "*/repositories/*}/packages\022\276\001\n\nGetPackag" + + "e\0226.google.devtools.artifactregistry.v1." + + "GetPackageRequest\032,.google.devtools.arti" + + "factregistry.v1.Package\"J\332A\004name\202\323\344\223\002=\022;" + + "/v1/{name=projects/*/locations/*/reposit" + + "ories/*/packages/*}\022\207\002\n\rDeletePackage\0229." + + "google.devtools.artifactregistry.v1.Dele" + + "tePackageRequest\032\035.google.longrunning.Op" + + "eration\"\233\001\312AN\n\025google.protobuf.Empty\0225go" + + "ogle.devtools.artifactregistry.v1.Operat" + + "ionMetadata\332A\004name\202\323\344\223\002=*;/v1/{name=proj" + + "ects/*/locations/*/repositories/*/packag" + + "es/*}\022\334\001\n\014ListVersions\0228.google.devtools" + + ".artifactregistry.v1.ListVersionsRequest" + + "\0329.google.devtools.artifactregistry.v1.L" + + "istVersionsResponse\"W\332A\006parent\202\323\344\223\002H\022F/v" + + "1/{parent=projects/*/locations/*/reposit" + + "ories/*/packages/*}/versions\022\311\001\n\nGetVers" + + "ion\0226.google.devtools.artifactregistry.v" + + "1.GetVersionRequest\032,.google.devtools.ar" + + "tifactregistry.v1.Version\"U\332A\004name\202\323\344\223\002H" + + "\022F/v1/{name=projects/*/locations/*/repos" + + "itories/*/packages/*/versions/*}\022\222\002\n\rDel" + + "eteVersion\0229.google.devtools.artifactreg" + + "istry.v1.DeleteVersionRequest\032\035.google.l" + + "ongrunning.Operation\"\246\001\312AN\n\025google.proto" + + "buf.Empty\0225google.devtools.artifactregis" + + "try.v1.OperationMetadata\332A\004name\202\323\344\223\002H*F/" + + "v1/{name=projects/*/locations/*/reposito" + + "ries/*/packages/*/versions/*}\022\277\002\n\023BatchD" + + "eleteVersions\022?.google.devtools.artifact" + + "registry.v1.BatchDeleteVersionsRequest\032\035" + + ".google.longrunning.Operation\"\307\001\312AX\n\025goo" + + "gle.protobuf.Empty\022?google.devtools.arti" + + "factregistry.v1.BatchDeleteVersionsMetad" + + "ata\332A\014parent,names\202\323\344\223\002W\"R/v1/{parent=pr" + + "ojects/*/locations/*/repositories/*/pack" + + "ages/*}/versions:batchDelete:\001*\022\357\001\n\rUpda" + + "teVersion\0229.google.devtools.artifactregi" + + "stry.v1.UpdateVersionRequest\032,.google.de" + + "vtools.artifactregistry.v1.Version\"u\332A\023v" + + "ersion,update_mask\202\323\344\223\002Y2N/v1/{version.n" + + "ame=projects/*/locations/*/repositories/" + + "*/packages/*/versions/*}:\007version\022\305\001\n\tLi" + + "stFiles\0225.google.devtools.artifactregist" + + "ry.v1.ListFilesRequest\0326.google.devtools" + + ".artifactregistry.v1.ListFilesResponse\"I" + + "\332A\006parent\202\323\344\223\002:\0228/v1/{parent=projects/*/" + + "locations/*/repositories/*}/files\022\263\001\n\007Ge" + + "tFile\0223.google.devtools.artifactregistry" + + ".v1.GetFileRequest\032).google.devtools.art" + + "ifactregistry.v1.File\"H\332A\004name\202\323\344\223\002;\0229/v" + + "1/{name=projects/*/locations/*/repositor" + + "ies/*/files/**}\022\376\001\n\nDeleteFile\0226.google." + + "devtools.artifactregistry.v1.DeleteFileR" + + "equest\032\035.google.longrunning.Operation\"\230\001" + "\312AN\n\025google.protobuf.Empty\0225google.devto" + "ols.artifactregistry.v1.OperationMetadat" - + "a\332A\004name\202\323\344\223\002=*;/v1/{name=projects/*/loc" - + "ations/*/repositories/*/packages/*}\022\334\001\n\014" - + "ListVersions\0228.google.devtools.artifactr" - + "egistry.v1.ListVersionsRequest\0329.google." - + "devtools.artifactregistry.v1.ListVersion" - + "sResponse\"W\332A\006parent\202\323\344\223\002H\022F/v1/{parent=" - + "projects/*/locations/*/repositories/*/pa" - + "ckages/*}/versions\022\311\001\n\nGetVersion\0226.goog" - + "le.devtools.artifactregistry.v1.GetVersi" - + "onRequest\032,.google.devtools.artifactregi" - + "stry.v1.Version\"U\332A\004name\202\323\344\223\002H\022F/v1/{nam" + + "a\332A\004name\202\323\344\223\002:*8/v1/{name=projects/*/loc" + + "ations/*/repositories/*/files/*}\022\317\001\n\nUpd" + + "ateFile\0226.google.devtools.artifactregist" + + "ry.v1.UpdateFileRequest\032).google.devtool" + + "s.artifactregistry.v1.File\"^\332A\020file,upda" + + "te_mask\202\323\344\223\002E2=/v1/{file.name=projects/*" + + "/locations/*/repositories/*/files/*}:\004fi" + + "le\022\314\001\n\010ListTags\0224.google.devtools.artifa" + + "ctregistry.v1.ListTagsRequest\0325.google.d" + + "evtools.artifactregistry.v1.ListTagsResp" + + "onse\"S\332A\006parent\202\323\344\223\002D\022B/v1/{parent=proje" + + "cts/*/locations/*/repositories/*/package" + + "s/*}/tags\022\271\001\n\006GetTag\0222.google.devtools.a" + + "rtifactregistry.v1.GetTagRequest\032(.googl" + + "e.devtools.artifactregistry.v1.Tag\"Q\332A\004n" + + "ame\202\323\344\223\002D\022B/v1/{name=projects/*/location" + + "s/*/repositories/*/packages/*/tags/*}\022\321\001" + + "\n\tCreateTag\0225.google.devtools.artifactre" + + "gistry.v1.CreateTagRequest\032(.google.devt" + + "ools.artifactregistry.v1.Tag\"c\332A\021parent," + + "tag,tag_id\202\323\344\223\002I\"B/v1/{parent=projects/*" + + "/locations/*/repositories/*/packages/*}/" + + "tags:\003tag\022\323\001\n\tUpdateTag\0225.google.devtool" + + "s.artifactregistry.v1.UpdateTagRequest\032(" + + ".google.devtools.artifactregistry.v1.Tag" + + "\"e\332A\017tag,update_mask\202\323\344\223\002M2F/v1/{tag.nam" + "e=projects/*/locations/*/repositories/*/" - + "packages/*/versions/*}\022\222\002\n\rDeleteVersion" - + "\0229.google.devtools.artifactregistry.v1.D" - + "eleteVersionRequest\032\035.google.longrunning" - + ".Operation\"\246\001\312AN\n\025google.protobuf.Empty\022" - + "5google.devtools.artifactregistry.v1.Ope" - + "rationMetadata\332A\004name\202\323\344\223\002H*F/v1/{name=p" - + "rojects/*/locations/*/repositories/*/pac" - + "kages/*/versions/*}\022\277\002\n\023BatchDeleteVersi" - + "ons\022?.google.devtools.artifactregistry.v" - + "1.BatchDeleteVersionsRequest\032\035.google.lo" - + "ngrunning.Operation\"\307\001\312AX\n\025google.protob" - + "uf.Empty\022?google.devtools.artifactregist" - + "ry.v1.BatchDeleteVersionsMetadata\332A\014pare" - + "nt,names\202\323\344\223\002W\"R/v1/{parent=projects/*/l" - + "ocations/*/repositories/*/packages/*}/ve" - + "rsions:batchDelete:\001*\022\357\001\n\rUpdateVersion\022" - + "9.google.devtools.artifactregistry.v1.Up" - + "dateVersionRequest\032,.google.devtools.art" - + "ifactregistry.v1.Version\"u\332A\023version,upd" - + "ate_mask\202\323\344\223\002Y2N/v1/{version.name=projec" - + "ts/*/locations/*/repositories/*/packages" - + "/*/versions/*}:\007version\022\305\001\n\tListFiles\0225." - + "google.devtools.artifactregistry.v1.List" - + "FilesRequest\0326.google.devtools.artifactr" - + "egistry.v1.ListFilesResponse\"I\332A\006parent\202" - + "\323\344\223\002:\0228/v1/{parent=projects/*/locations/" - + "*/repositories/*}/files\022\263\001\n\007GetFile\0223.go" - + "ogle.devtools.artifactregistry.v1.GetFil" - + "eRequest\032).google.devtools.artifactregis" - + "try.v1.File\"H\332A\004name\202\323\344\223\002;\0229/v1/{name=pr" - + "ojects/*/locations/*/repositories/*/file" - + "s/**}\022\376\001\n\nDeleteFile\0226.google.devtools.a" - + "rtifactregistry.v1.DeleteFileRequest\032\035.g" - + "oogle.longrunning.Operation\"\230\001\312AN\n\025googl" - + "e.protobuf.Empty\0225google.devtools.artifa" - + "ctregistry.v1.OperationMetadata\332A\004name\202\323" - + "\344\223\002:*8/v1/{name=projects/*/locations/*/r" - + "epositories/*/files/*}\022\317\001\n\nUpdateFile\0226." - + "google.devtools.artifactregistry.v1.Upda" - + "teFileRequest\032).google.devtools.artifact" - + "registry.v1.File\"^\332A\020file,update_mask\202\323\344" - + "\223\002E2=/v1/{file.name=projects/*/locations" - + "/*/repositories/*/files/*}:\004file\022\314\001\n\010Lis" - + "tTags\0224.google.devtools.artifactregistry" - + ".v1.ListTagsRequest\0325.google.devtools.ar" - + "tifactregistry.v1.ListTagsResponse\"S\332A\006p" - + "arent\202\323\344\223\002D\022B/v1/{parent=projects/*/loca" - + "tions/*/repositories/*/packages/*}/tags\022" - + "\271\001\n\006GetTag\0222.google.devtools.artifactreg" - + "istry.v1.GetTagRequest\032(.google.devtools" - + ".artifactregistry.v1.Tag\"Q\332A\004name\202\323\344\223\002D\022" - + "B/v1/{name=projects/*/locations/*/reposi" - + "tories/*/packages/*/tags/*}\022\321\001\n\tCreateTa" - + "g\0225.google.devtools.artifactregistry.v1." - + "CreateTagRequest\032(.google.devtools.artif" - + "actregistry.v1.Tag\"c\332A\021parent,tag,tag_id" - + "\202\323\344\223\002I\"B/v1/{parent=projects/*/locations" - + "/*/repositories/*/packages/*}/tags:\003tag\022" - + "\323\001\n\tUpdateTag\0225.google.devtools.artifact" - + "registry.v1.UpdateTagRequest\032(.google.de" - + "vtools.artifactregistry.v1.Tag\"e\332A\017tag,u" - + "pdate_mask\202\323\344\223\002M2F/v1/{tag.name=projects" - + "/*/locations/*/repositories/*/packages/*" - + "/tags/*}:\003tag\022\255\001\n\tDeleteTag\0225.google.dev" - + "tools.artifactregistry.v1.DeleteTagReque" - + "st\032\026.google.protobuf.Empty\"Q\332A\004name\202\323\344\223\002" - + "D*B/v1/{name=projects/*/locations/*/repo" - + "sitories/*/packages/*/tags/*}\022\315\001\n\nCreate" - + "Rule\0226.google.devtools.artifactregistry." - + "v1.CreateRuleRequest\032).google.devtools.a" - + "rtifactregistry.v1.Rule\"\\\332A\023parent,rule," - + "rule_id\202\323\344\223\002@\"8/v1/{parent=projects/*/lo" - + "cations/*/repositories/*}/rules:\004rule\022\305\001" - + "\n\tListRules\0225.google.devtools.artifactre" - + "gistry.v1.ListRulesRequest\0326.google.devt" - + "ools.artifactregistry.v1.ListRulesRespon" - + "se\"I\332A\006parent\202\323\344\223\002:\0228/v1/{parent=project" - + "s/*/locations/*/repositories/*}/rules\022\262\001" - + "\n\007GetRule\0223.google.devtools.artifactregi" - + "stry.v1.GetRuleRequest\032).google.devtools" - + ".artifactregistry.v1.Rule\"G\332A\004name\202\323\344\223\002:" - + "\0228/v1/{name=projects/*/locations/*/repos" - + "itories/*/rules/*}\022\317\001\n\nUpdateRule\0226.goog" - + "le.devtools.artifactregistry.v1.UpdateRu" - + "leRequest\032).google.devtools.artifactregi" - + "stry.v1.Rule\"^\332A\020rule,update_mask\202\323\344\223\002E2" - + "=/v1/{rule.name=projects/*/locations/*/r" - + "epositories/*/rules/*}:\004rule\022\245\001\n\nDeleteR" + + "packages/*/tags/*}:\003tag\022\255\001\n\tDeleteTag\0225." + + "google.devtools.artifactregistry.v1.Dele" + + "teTagRequest\032\026.google.protobuf.Empty\"Q\332A" + + "\004name\202\323\344\223\002D*B/v1/{name=projects/*/locati" + + "ons/*/repositories/*/packages/*/tags/*}\022" + + "\315\001\n\nCreateRule\0226.google.devtools.artifac" + + "tregistry.v1.CreateRuleRequest\032).google." + + "devtools.artifactregistry.v1.Rule\"\\\332A\023pa" + + "rent,rule,rule_id\202\323\344\223\002@\"8/v1/{parent=pro" + + "jects/*/locations/*/repositories/*}/rule" + + "s:\004rule\022\305\001\n\tListRules\0225.google.devtools." + + "artifactregistry.v1.ListRulesRequest\0326.g" + + "oogle.devtools.artifactregistry.v1.ListR" + + "ulesResponse\"I\332A\006parent\202\323\344\223\002:\0228/v1/{pare" + + "nt=projects/*/locations/*/repositories/*" + + "}/rules\022\262\001\n\007GetRule\0223.google.devtools.ar" + + "tifactregistry.v1.GetRuleRequest\032).googl" + + "e.devtools.artifactregistry.v1.Rule\"G\332A\004" + + "name\202\323\344\223\002:\0228/v1/{name=projects/*/locatio" + + "ns/*/repositories/*/rules/*}\022\317\001\n\nUpdateR" + "ule\0226.google.devtools.artifactregistry.v" - + "1.DeleteRuleRequest\032\026.google.protobuf.Em" - + "pty\"G\332A\004name\202\323\344\223\002:*8/v1/{name=projects/*" - + "/locations/*/repositories/*/rules/*}\022\227\001\n" - + "\014SetIamPolicy\022\".google.iam.v1.SetIamPoli" - + "cyRequest\032\025.google.iam.v1.Policy\"L\202\323\344\223\002F" - + "\"A/v1/{resource=projects/*/locations/*/r" - + "epositories/*}:setIamPolicy:\001*\022\224\001\n\014GetIa" - + "mPolicy\022\".google.iam.v1.GetIamPolicyRequ" - + "est\032\025.google.iam.v1.Policy\"I\202\323\344\223\002C\022A/v1/" - + "{resource=projects/*/locations/*/reposit" - + "ories/*}:getIamPolicy\022\275\001\n\022TestIamPermiss" - + "ions\022(.google.iam.v1.TestIamPermissionsR" - + "equest\032).google.iam.v1.TestIamPermission" - + "sResponse\"R\202\323\344\223\002L\"G/v1/{resource=project" - + "s/*/locations/*/repositories/*}:testIamP" - + "ermissions:\001*\022\300\001\n\022GetProjectSettings\022>.g" - + "oogle.devtools.artifactregistry.v1.GetPr" - + "ojectSettingsRequest\0324.google.devtools.a" - + "rtifactregistry.v1.ProjectSettings\"4\332A\004n" - + "ame\202\323\344\223\002\'\022%/v1/{name=projects/*/projectS" - + "ettings}\022\201\002\n\025UpdateProjectSettings\022A.goo" - + "gle.devtools.artifactregistry.v1.UpdateP" - + "rojectSettingsRequest\0324.google.devtools." - + "artifactregistry.v1.ProjectSettings\"o\332A\034" - + "project_settings,update_mask\202\323\344\223\002J26/v1/" - + "{project_settings.name=projects/*/projec" - + "tSettings}:\020project_settings\022\274\001\n\016GetVPCS" - + "CConfig\022:.google.devtools.artifactregist" - + "ry.v1.GetVPCSCConfigRequest\0320.google.dev" - + "tools.artifactregistry.v1.VPCSCConfig\"<\332" - + "A\004name\202\323\344\223\002/\022-/v1/{name=projects/*/locat" - + "ions/*/vpcscConfig}\022\361\001\n\021UpdateVPCSCConfi" - + "g\022=.google.devtools.artifactregistry.v1." - + "UpdateVPCSCConfigRequest\0320.google.devtoo" - + "ls.artifactregistry.v1.VPCSCConfig\"k\332A\030v" - + "pcsc_config,update_mask\202\323\344\223\002J2:/v1/{vpcs" - + "c_config.name=projects/*/locations/*/vpc" - + "scConfig}:\014vpcsc_config\022\344\001\n\rUpdatePackag" - + "e\0229.google.devtools.artifactregistry.v1." - + "UpdatePackageRequest\032,.google.devtools.a" - + "rtifactregistry.v1.Package\"j\332A\023package,u" - + "pdate_mask\202\323\344\223\002N2C/v1/{package.name=proj" - + "ects/*/locations/*/repositories/*/packag" - + "es/*}:\007package\022\335\001\n\017ListAttachments\022;.goo" - + "gle.devtools.artifactregistry.v1.ListAtt" - + "achmentsRequest\032<.google.devtools.artifa" - + "ctregistry.v1.ListAttachmentsResponse\"O\332" - + "A\006parent\202\323\344\223\002@\022>/v1/{parent=projects/*/l" - + "ocations/*/repositories/*}/attachments\022\312" - + "\001\n\rGetAttachment\0229.google.devtools.artif" - + "actregistry.v1.GetAttachmentRequest\032/.go" - + "ogle.devtools.artifactregistry.v1.Attach" - + "ment\"M\332A\004name\202\323\344\223\002@\022>/v1/{name=projects/" - + "*/locations/*/repositories/*/attachments" - + "/*}\022\320\002\n\020CreateAttachment\022<.google.devtoo" - + "ls.artifactregistry.v1.CreateAttachmentR" - + "equest\032\035.google.longrunning.Operation\"\336\001" - + "\312Ag\n.google.devtools.artifactregistry.v1" - + ".Attachment\0225google.devtools.artifactreg" - + "istry.v1.OperationMetadata\332A\037parent,atta" - + "chment,attachment_id\202\323\344\223\002L\">/v1/{parent=" - + "projects/*/locations/*/repositories/*}/a" - + "ttachments:\nattachment\022\220\002\n\020DeleteAttachm" - + "ent\022<.google.devtools.artifactregistry.v" - + "1.DeleteAttachmentRequest\032\035.google.longr" - + "unning.Operation\"\236\001\312AN\n\025google.protobuf." - + "Empty\0225google.devtools.artifactregistry." - + "v1.OperationMetadata\332A\004name\202\323\344\223\002@*>/v1/{" - + "name=projects/*/locations/*/repositories" - + "/*/attachments/*}\032\214\001\312A\037artifactregistry." - + "googleapis.com\322Aghttps://www.googleapis." - + "com/auth/cloud-platform,https://www.goog" - + "leapis.com/auth/cloud-platform.read-only" - + "B\367\001\n\'com.google.devtools.artifactregistr" - + "y.v1B\014ServiceProtoP\001ZPcloud.google.com/g" - + "o/artifactregistry/apiv1/artifactregistr" - + "ypb;artifactregistrypb\252\002 Google.Cloud.Ar" - + "tifactRegistry.V1\312\002 Google\\Cloud\\Artifac" - + "tRegistry\\V1\352\002#Google::Cloud::ArtifactRe" - + "gistry::V1b\006proto3" + + "1.UpdateRuleRequest\032).google.devtools.ar" + + "tifactregistry.v1.Rule\"^\332A\020rule,update_m" + + "ask\202\323\344\223\002E2=/v1/{rule.name=projects/*/loc" + + "ations/*/repositories/*/rules/*}:\004rule\022\245" + + "\001\n\nDeleteRule\0226.google.devtools.artifact" + + "registry.v1.DeleteRuleRequest\032\026.google.p" + + "rotobuf.Empty\"G\332A\004name\202\323\344\223\002:*8/v1/{name=" + + "projects/*/locations/*/repositories/*/ru" + + "les/*}\022\227\001\n\014SetIamPolicy\022\".google.iam.v1." + + "SetIamPolicyRequest\032\025.google.iam.v1.Poli" + + "cy\"L\202\323\344\223\002F\"A/v1/{resource=projects/*/loc" + + "ations/*/repositories/*}:setIamPolicy:\001*" + + "\022\224\001\n\014GetIamPolicy\022\".google.iam.v1.GetIam" + + "PolicyRequest\032\025.google.iam.v1.Policy\"I\202\323" + + "\344\223\002C\022A/v1/{resource=projects/*/locations" + + "/*/repositories/*}:getIamPolicy\022\275\001\n\022Test" + + "IamPermissions\022(.google.iam.v1.TestIamPe" + + "rmissionsRequest\032).google.iam.v1.TestIam" + + "PermissionsResponse\"R\202\323\344\223\002L\"G/v1/{resour" + + "ce=projects/*/locations/*/repositories/*" + + "}:testIamPermissions:\001*\022\300\001\n\022GetProjectSe" + + "ttings\022>.google.devtools.artifactregistr" + + "y.v1.GetProjectSettingsRequest\0324.google." + + "devtools.artifactregistry.v1.ProjectSett" + + "ings\"4\332A\004name\202\323\344\223\002\'\022%/v1/{name=projects/" + + "*/projectSettings}\022\201\002\n\025UpdateProjectSett" + + "ings\022A.google.devtools.artifactregistry." + + "v1.UpdateProjectSettingsRequest\0324.google" + + ".devtools.artifactregistry.v1.ProjectSet" + + "tings\"o\332A\034project_settings,update_mask\202\323" + + "\344\223\002J26/v1/{project_settings.name=project" + + "s/*/projectSettings}:\020project_settings\022\274" + + "\001\n\016GetVPCSCConfig\022:.google.devtools.arti" + + "factregistry.v1.GetVPCSCConfigRequest\0320." + + "google.devtools.artifactregistry.v1.VPCS" + + "CConfig\"<\332A\004name\202\323\344\223\002/\022-/v1/{name=projec" + + "ts/*/locations/*/vpcscConfig}\022\361\001\n\021Update" + + "VPCSCConfig\022=.google.devtools.artifactre" + + "gistry.v1.UpdateVPCSCConfigRequest\0320.goo" + + "gle.devtools.artifactregistry.v1.VPCSCCo" + + "nfig\"k\332A\030vpcsc_config,update_mask\202\323\344\223\002J2" + + ":/v1/{vpcsc_config.name=projects/*/locat" + + "ions/*/vpcscConfig}:\014vpcsc_config\022\344\001\n\rUp" + + "datePackage\0229.google.devtools.artifactre" + + "gistry.v1.UpdatePackageRequest\032,.google." + + "devtools.artifactregistry.v1.Package\"j\332A" + + "\023package,update_mask\202\323\344\223\002N2C/v1/{package" + + ".name=projects/*/locations/*/repositorie" + + "s/*/packages/*}:\007package\022\335\001\n\017ListAttachm" + + "ents\022;.google.devtools.artifactregistry." + + "v1.ListAttachmentsRequest\032<.google.devto" + + "ols.artifactregistry.v1.ListAttachmentsR" + + "esponse\"O\332A\006parent\202\323\344\223\002@\022>/v1/{parent=pr" + + "ojects/*/locations/*/repositories/*}/att" + + "achments\022\312\001\n\rGetAttachment\0229.google.devt" + + "ools.artifactregistry.v1.GetAttachmentRe" + + "quest\032/.google.devtools.artifactregistry" + + ".v1.Attachment\"M\332A\004name\202\323\344\223\002@\022>/v1/{name" + + "=projects/*/locations/*/repositories/*/a" + + "ttachments/*}\022\320\002\n\020CreateAttachment\022<.goo" + + "gle.devtools.artifactregistry.v1.CreateA" + + "ttachmentRequest\032\035.google.longrunning.Op" + + "eration\"\336\001\312Ag\n.google.devtools.artifactr" + + "egistry.v1.Attachment\0225google.devtools.a" + + "rtifactregistry.v1.OperationMetadata\332A\037p" + + "arent,attachment,attachment_id\202\323\344\223\002L\">/v" + + "1/{parent=projects/*/locations/*/reposit" + + "ories/*}/attachments:\nattachment\022\220\002\n\020Del" + + "eteAttachment\022<.google.devtools.artifact" + + "registry.v1.DeleteAttachmentRequest\032\035.go" + + "ogle.longrunning.Operation\"\236\001\312AN\n\025google" + + ".protobuf.Empty\0225google.devtools.artifac" + + "tregistry.v1.OperationMetadata\332A\004name\202\323\344" + + "\223\002@*>/v1/{name=projects/*/locations/*/re" + + "positories/*/attachments/*}\022\271\002\n\016ExportAr" + + "tifact\022:.google.devtools.artifactregistr" + + "y.v1.ExportArtifactRequest\032\035.google.long" + + "running.Operation\"\313\001\312Ax\n:google.devtools" + + ".artifactregistry.v1.ExportArtifactRespo" + + "nse\022:google.devtools.artifactregistry.v1" + + ".ExportArtifactMetadata\202\323\344\223\002J\"E/v1/{repo" + + "sitory=projects/*/locations/*/repositori" + + "es/*}:exportArtifact:\001*\032\214\001\312A\037artifactreg" + + "istry.googleapis.com\322Aghttps://www.googl" + + "eapis.com/auth/cloud-platform,https://ww" + + "w.googleapis.com/auth/cloud-platform.rea" + + "d-onlyB\367\001\n\'com.google.devtools.artifactr" + + "egistry.v1B\014ServiceProtoP\001ZPcloud.google" + + ".com/go/artifactregistry/apiv1/artifactr" + + "egistrypb;artifactregistrypb\252\002 Google.Cl" + + "oud.ArtifactRegistry.V1\312\002 Google\\Cloud\\A" + + "rtifactRegistry\\V1\352\002#Google::Cloud::Arti" + + "factRegistry::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -362,6 +371,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.devtools.artifactregistry.v1.AptArtifactProto.getDescriptor(), com.google.devtools.artifactregistry.v1.ArtifactProto.getDescriptor(), com.google.devtools.artifactregistry.v1.AttachmentProto.getDescriptor(), + com.google.devtools.artifactregistry.v1.ExportProto.getDescriptor(), com.google.devtools.artifactregistry.v1.FileProto.getDescriptor(), com.google.devtools.artifactregistry.v1.PackageProto.getDescriptor(), com.google.devtools.artifactregistry.v1.RepositoryProto.getDescriptor(), @@ -396,6 +406,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.devtools.artifactregistry.v1.AptArtifactProto.getDescriptor(); com.google.devtools.artifactregistry.v1.ArtifactProto.getDescriptor(); com.google.devtools.artifactregistry.v1.AttachmentProto.getDescriptor(); + com.google.devtools.artifactregistry.v1.ExportProto.getDescriptor(); com.google.devtools.artifactregistry.v1.FileProto.getDescriptor(); com.google.devtools.artifactregistry.v1.PackageProto.getDescriptor(); com.google.devtools.artifactregistry.v1.RepositoryProto.getDescriptor(); diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/SettingsProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/SettingsProto.java index 6480407233e3..b790ca9ad426 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/SettingsProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/SettingsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Tag.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Tag.java index 2bab89fbd945..063ed392d39d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Tag.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Tag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagName.java new file mode 100644 index 000000000000..20518bdbe3f1 --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagName.java @@ -0,0 +1,298 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.devtools.artifactregistry.v1; + +import com.google.api.pathtemplate.PathTemplate; +import com.google.api.resourcenames.ResourceName; +import com.google.common.base.Preconditions; +import com.google.common.collect.ImmutableMap; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +@Generated("by gapic-generator-java") +public class TagName implements ResourceName { + private static final PathTemplate PROJECT_LOCATION_REPOSITORY_PACKAGE_TAG = + PathTemplate.createWithoutUrlEncoding( + "projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}"); + private volatile Map fieldValuesMap; + private final String project; + private final String location; + private final String repository; + private final String package_; + private final String tag; + + @Deprecated + protected TagName() { + project = null; + location = null; + repository = null; + package_ = null; + tag = null; + } + + private TagName(Builder builder) { + project = Preconditions.checkNotNull(builder.getProject()); + location = Preconditions.checkNotNull(builder.getLocation()); + repository = Preconditions.checkNotNull(builder.getRepository()); + package_ = Preconditions.checkNotNull(builder.getPackage()); + tag = Preconditions.checkNotNull(builder.getTag()); + } + + public String getProject() { + return project; + } + + public String getLocation() { + return location; + } + + public String getRepository() { + return repository; + } + + public String getPackage() { + return package_; + } + + public String getTag() { + return tag; + } + + public static Builder newBuilder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + public static TagName of( + String project, String location, String repository, String package_, String tag) { + return newBuilder() + .setProject(project) + .setLocation(location) + .setRepository(repository) + .setPackage(package_) + .setTag(tag) + .build(); + } + + public static String format( + String project, String location, String repository, String package_, String tag) { + return newBuilder() + .setProject(project) + .setLocation(location) + .setRepository(repository) + .setPackage(package_) + .setTag(tag) + .build() + .toString(); + } + + public static TagName parse(String formattedString) { + if (formattedString.isEmpty()) { + return null; + } + Map matchMap = + PROJECT_LOCATION_REPOSITORY_PACKAGE_TAG.validatedMatch( + formattedString, "TagName.parse: formattedString not in valid format"); + return of( + matchMap.get("project"), + matchMap.get("location"), + matchMap.get("repository"), + matchMap.get("package"), + matchMap.get("tag")); + } + + public static List parseList(List formattedStrings) { + List list = new ArrayList<>(formattedStrings.size()); + for (String formattedString : formattedStrings) { + list.add(parse(formattedString)); + } + return list; + } + + public static List toStringList(List values) { + List list = new ArrayList<>(values.size()); + for (TagName value : values) { + if (value == null) { + list.add(""); + } else { + list.add(value.toString()); + } + } + return list; + } + + public static boolean isParsableFrom(String formattedString) { + return PROJECT_LOCATION_REPOSITORY_PACKAGE_TAG.matches(formattedString); + } + + @Override + public Map getFieldValuesMap() { + if (fieldValuesMap == null) { + synchronized (this) { + if (fieldValuesMap == null) { + ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); + if (project != null) { + fieldMapBuilder.put("project", project); + } + if (location != null) { + fieldMapBuilder.put("location", location); + } + if (repository != null) { + fieldMapBuilder.put("repository", repository); + } + if (package_ != null) { + fieldMapBuilder.put("package", package_); + } + if (tag != null) { + fieldMapBuilder.put("tag", tag); + } + fieldValuesMap = fieldMapBuilder.build(); + } + } + } + return fieldValuesMap; + } + + public String getFieldValue(String fieldName) { + return getFieldValuesMap().get(fieldName); + } + + @Override + public String toString() { + return PROJECT_LOCATION_REPOSITORY_PACKAGE_TAG.instantiate( + "project", + project, + "location", + location, + "repository", + repository, + "package", + package_, + "tag", + tag); + } + + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (o != null && getClass() == o.getClass()) { + TagName that = ((TagName) o); + return Objects.equals(this.project, that.project) + && Objects.equals(this.location, that.location) + && Objects.equals(this.repository, that.repository) + && Objects.equals(this.package_, that.package_) + && Objects.equals(this.tag, that.tag); + } + return false; + } + + @Override + public int hashCode() { + int h = 1; + h *= 1000003; + h ^= Objects.hashCode(project); + h *= 1000003; + h ^= Objects.hashCode(location); + h *= 1000003; + h ^= Objects.hashCode(repository); + h *= 1000003; + h ^= Objects.hashCode(package_); + h *= 1000003; + h ^= Objects.hashCode(tag); + return h; + } + + /** + * Builder for + * projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag}. + */ + public static class Builder { + private String project; + private String location; + private String repository; + private String package_; + private String tag; + + protected Builder() {} + + public String getProject() { + return project; + } + + public String getLocation() { + return location; + } + + public String getRepository() { + return repository; + } + + public String getPackage() { + return package_; + } + + public String getTag() { + return tag; + } + + public Builder setProject(String project) { + this.project = project; + return this; + } + + public Builder setLocation(String location) { + this.location = location; + return this; + } + + public Builder setRepository(String repository) { + this.repository = repository; + return this; + } + + public Builder setPackage(String package_) { + this.package_ = package_; + return this; + } + + public Builder setTag(String tag) { + this.tag = tag; + return this; + } + + private Builder(TagName tagName) { + this.project = tagName.project; + this.location = tagName.location; + this.repository = tagName.repository; + this.package_ = tagName.package_; + this.tag = tagName.tag; + } + + public TagName build() { + return new TagName(this); + } + } +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagOrBuilder.java index d4a7b99af198..f311a30a6ce1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagProto.java index d0854c722f0b..6fb5c1babc01 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/TagProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequest.java index bd8d6fc82f6d..9f06bc3dde67 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequestOrBuilder.java index b5ac2422e7c2..85c3e794bd22 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequest.java index 619c92166fca..d122385149a1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequestOrBuilder.java index c796fa0045ad..4a9bd447010e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdatePackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequest.java index 3f60f3fcba91..8ac4b0a35920 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequestOrBuilder.java index fcdd606f986a..4c11aae35877 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateProjectSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequest.java index 0ff0742ce4cc..1c9ae6e6714d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequestOrBuilder.java index ba8dd78ac970..6c01d2930d1d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequest.java index ad9b5532a9f9..dd32ec03714c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequestOrBuilder.java index 1084d8edd427..bd62f5c7a950 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateRuleRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequest.java index 6c21da278415..9c8775584720 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequestOrBuilder.java index a2dc50abd881..adada2cbb65c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequest.java index 02f92d122318..d47ed1910db9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequestOrBuilder.java index 61a8245395ae..012a80cd13c6 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVPCSCConfigRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequest.java index d0911bb9b3fa..4319a1f79857 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequestOrBuilder.java index 7361581edb1d..40b90cd367da 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpdateVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicy.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicy.java index ea160d56d5e6..251d8c177179 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicy.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicyOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicyOrBuilder.java index d23b4d6fc0a6..e055444550ba 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicyOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/UpstreamPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfig.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfig.java index e9e39f46e268..c872ecff349c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfig.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigOrBuilder.java index 7451c0d765e4..001beb14168f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigProto.java index 2f453f415092..05a29b16956e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VPCSCConfigProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Version.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Version.java index be0a5156e394..1ec9845a54c7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Version.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/Version.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -45,6 +45,7 @@ private Version() { name_ = ""; description_ = ""; relatedTags_ = java.util.Collections.emptyList(); + fingerprints_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -545,6 +546,102 @@ public java.lang.String getAnnotationsOrThrow(java.lang.String key) { return map.get(key); } + public static final int FINGERPRINTS_FIELD_NUMBER = 10; + + @SuppressWarnings("serial") + private java.util.List fingerprints_; + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public java.util.List getFingerprintsList() { + return fingerprints_; + } + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public java.util.List + getFingerprintsOrBuilderList() { + return fingerprints_; + } + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public int getFingerprintsCount() { + return fingerprints_.size(); + } + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.Hash getFingerprints(int index) { + return fingerprints_.get(index); + } + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + @java.lang.Override + public com.google.devtools.artifactregistry.v1.HashOrBuilder getFingerprintsOrBuilder(int index) { + return fingerprints_.get(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -579,6 +676,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io } com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( output, internalGetAnnotations(), AnnotationsDefaultEntryHolder.defaultEntry, 9); + for (int i = 0; i < fingerprints_.size(); i++) { + output.writeMessage(10, fingerprints_.get(i)); + } getUnknownFields().writeTo(output); } @@ -616,6 +716,9 @@ public int getSerializedSize() { .build(); size += com.google.protobuf.CodedOutputStream.computeMessageSize(9, annotations__); } + for (int i = 0; i < fingerprints_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(10, fingerprints_.get(i)); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -648,6 +751,7 @@ public boolean equals(final java.lang.Object obj) { if (!getMetadata().equals(other.getMetadata())) return false; } if (!internalGetAnnotations().equals(other.internalGetAnnotations())) return false; + if (!getFingerprintsList().equals(other.getFingerprintsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -683,6 +787,10 @@ public int hashCode() { hash = (37 * hash) + ANNOTATIONS_FIELD_NUMBER; hash = (53 * hash) + internalGetAnnotations().hashCode(); } + if (getFingerprintsCount() > 0) { + hash = (37 * hash) + FINGERPRINTS_FIELD_NUMBER; + hash = (53 * hash) + getFingerprintsList().hashCode(); + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -852,6 +960,7 @@ private void maybeForceBuilderInitialization() { getUpdateTimeFieldBuilder(); getRelatedTagsFieldBuilder(); getMetadataFieldBuilder(); + getFingerprintsFieldBuilder(); } } @@ -884,6 +993,13 @@ public Builder clear() { metadataBuilder_ = null; } internalGetMutableAnnotations().clear(); + if (fingerprintsBuilder_ == null) { + fingerprints_ = java.util.Collections.emptyList(); + } else { + fingerprints_ = null; + fingerprintsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000080); return this; } @@ -930,6 +1046,15 @@ private void buildPartialRepeatedFields( } else { result.relatedTags_ = relatedTagsBuilder_.build(); } + if (fingerprintsBuilder_ == null) { + if (((bitField0_ & 0x00000080) != 0)) { + fingerprints_ = java.util.Collections.unmodifiableList(fingerprints_); + bitField0_ = (bitField0_ & ~0x00000080); + } + result.fingerprints_ = fingerprints_; + } else { + result.fingerprints_ = fingerprintsBuilder_.build(); + } } private void buildPartial0(com.google.devtools.artifactregistry.v1.Version result) { @@ -1054,6 +1179,33 @@ public Builder mergeFrom(com.google.devtools.artifactregistry.v1.Version other) } internalGetMutableAnnotations().mergeFrom(other.internalGetAnnotations()); bitField0_ |= 0x00000040; + if (fingerprintsBuilder_ == null) { + if (!other.fingerprints_.isEmpty()) { + if (fingerprints_.isEmpty()) { + fingerprints_ = other.fingerprints_; + bitField0_ = (bitField0_ & ~0x00000080); + } else { + ensureFingerprintsIsMutable(); + fingerprints_.addAll(other.fingerprints_); + } + onChanged(); + } + } else { + if (!other.fingerprints_.isEmpty()) { + if (fingerprintsBuilder_.isEmpty()) { + fingerprintsBuilder_.dispose(); + fingerprintsBuilder_ = null; + fingerprints_ = other.fingerprints_; + bitField0_ = (bitField0_ & ~0x00000080); + fingerprintsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getFingerprintsFieldBuilder() + : null; + } else { + fingerprintsBuilder_.addAllMessages(other.fingerprints_); + } + } + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -1135,6 +1287,19 @@ public Builder mergeFrom( bitField0_ |= 0x00000040; break; } // case 74 + case 82: + { + com.google.devtools.artifactregistry.v1.Hash m = + input.readMessage( + com.google.devtools.artifactregistry.v1.Hash.parser(), extensionRegistry); + if (fingerprintsBuilder_ == null) { + ensureFingerprintsIsMutable(); + fingerprints_.add(m); + } else { + fingerprintsBuilder_.addMessage(m); + } + break; + } // case 82 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -2582,6 +2747,447 @@ public Builder putAllAnnotations(java.util.Map fingerprints_ = + java.util.Collections.emptyList(); + + private void ensureFingerprintsIsMutable() { + if (!((bitField0_ & 0x00000080) != 0)) { + fingerprints_ = + new java.util.ArrayList(fingerprints_); + bitField0_ |= 0x00000080; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Hash, + com.google.devtools.artifactregistry.v1.Hash.Builder, + com.google.devtools.artifactregistry.v1.HashOrBuilder> + fingerprintsBuilder_; + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public java.util.List getFingerprintsList() { + if (fingerprintsBuilder_ == null) { + return java.util.Collections.unmodifiableList(fingerprints_); + } else { + return fingerprintsBuilder_.getMessageList(); + } + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public int getFingerprintsCount() { + if (fingerprintsBuilder_ == null) { + return fingerprints_.size(); + } else { + return fingerprintsBuilder_.getCount(); + } + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.devtools.artifactregistry.v1.Hash getFingerprints(int index) { + if (fingerprintsBuilder_ == null) { + return fingerprints_.get(index); + } else { + return fingerprintsBuilder_.getMessage(index); + } + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder setFingerprints(int index, com.google.devtools.artifactregistry.v1.Hash value) { + if (fingerprintsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureFingerprintsIsMutable(); + fingerprints_.set(index, value); + onChanged(); + } else { + fingerprintsBuilder_.setMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder setFingerprints( + int index, com.google.devtools.artifactregistry.v1.Hash.Builder builderForValue) { + if (fingerprintsBuilder_ == null) { + ensureFingerprintsIsMutable(); + fingerprints_.set(index, builderForValue.build()); + onChanged(); + } else { + fingerprintsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder addFingerprints(com.google.devtools.artifactregistry.v1.Hash value) { + if (fingerprintsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureFingerprintsIsMutable(); + fingerprints_.add(value); + onChanged(); + } else { + fingerprintsBuilder_.addMessage(value); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder addFingerprints(int index, com.google.devtools.artifactregistry.v1.Hash value) { + if (fingerprintsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureFingerprintsIsMutable(); + fingerprints_.add(index, value); + onChanged(); + } else { + fingerprintsBuilder_.addMessage(index, value); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder addFingerprints( + com.google.devtools.artifactregistry.v1.Hash.Builder builderForValue) { + if (fingerprintsBuilder_ == null) { + ensureFingerprintsIsMutable(); + fingerprints_.add(builderForValue.build()); + onChanged(); + } else { + fingerprintsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder addFingerprints( + int index, com.google.devtools.artifactregistry.v1.Hash.Builder builderForValue) { + if (fingerprintsBuilder_ == null) { + ensureFingerprintsIsMutable(); + fingerprints_.add(index, builderForValue.build()); + onChanged(); + } else { + fingerprintsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder addAllFingerprints( + java.lang.Iterable values) { + if (fingerprintsBuilder_ == null) { + ensureFingerprintsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, fingerprints_); + onChanged(); + } else { + fingerprintsBuilder_.addAllMessages(values); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder clearFingerprints() { + if (fingerprintsBuilder_ == null) { + fingerprints_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000080); + onChanged(); + } else { + fingerprintsBuilder_.clear(); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public Builder removeFingerprints(int index) { + if (fingerprintsBuilder_ == null) { + ensureFingerprintsIsMutable(); + fingerprints_.remove(index); + onChanged(); + } else { + fingerprintsBuilder_.remove(index); + } + return this; + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.devtools.artifactregistry.v1.Hash.Builder getFingerprintsBuilder(int index) { + return getFingerprintsFieldBuilder().getBuilder(index); + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.devtools.artifactregistry.v1.HashOrBuilder getFingerprintsOrBuilder( + int index) { + if (fingerprintsBuilder_ == null) { + return fingerprints_.get(index); + } else { + return fingerprintsBuilder_.getMessageOrBuilder(index); + } + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public java.util.List + getFingerprintsOrBuilderList() { + if (fingerprintsBuilder_ != null) { + return fingerprintsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(fingerprints_); + } + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.devtools.artifactregistry.v1.Hash.Builder addFingerprintsBuilder() { + return getFingerprintsFieldBuilder() + .addBuilder(com.google.devtools.artifactregistry.v1.Hash.getDefaultInstance()); + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public com.google.devtools.artifactregistry.v1.Hash.Builder addFingerprintsBuilder(int index) { + return getFingerprintsFieldBuilder() + .addBuilder(index, com.google.devtools.artifactregistry.v1.Hash.getDefaultInstance()); + } + + /** + * + * + *
+     * Output only. Immutable reference for the version, calculated based on the
+     * version's content. Currently we only support dirsum_sha256 hash algorithm.
+     * Additional hash algorithms may be added in the future.
+     * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + public java.util.List + getFingerprintsBuilderList() { + return getFingerprintsFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Hash, + com.google.devtools.artifactregistry.v1.Hash.Builder, + com.google.devtools.artifactregistry.v1.HashOrBuilder> + getFingerprintsFieldBuilder() { + if (fingerprintsBuilder_ == null) { + fingerprintsBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.devtools.artifactregistry.v1.Hash, + com.google.devtools.artifactregistry.v1.Hash.Builder, + com.google.devtools.artifactregistry.v1.HashOrBuilder>( + fingerprints_, ((bitField0_ & 0x00000080) != 0), getParentForChildren(), isClean()); + fingerprints_ = null; + } + return fingerprintsBuilder_; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionName.java index 78ba484e23f5..cc856ff01958 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionOrBuilder.java index ae585612b8cd..7bed0a9a19c8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -333,4 +333,80 @@ java.lang.String getAnnotationsOrDefault( * */ java.lang.String getAnnotationsOrThrow(java.lang.String key); + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + java.util.List getFingerprintsList(); + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + com.google.devtools.artifactregistry.v1.Hash getFingerprints(int index); + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + int getFingerprintsCount(); + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + java.util.List + getFingerprintsOrBuilderList(); + + /** + * + * + *
+   * Output only. Immutable reference for the version, calculated based on the
+   * version's content. Currently we only support dirsum_sha256 hash algorithm.
+   * Additional hash algorithms may be added in the future.
+   * 
+ * + * + * repeated .google.devtools.artifactregistry.v1.Hash fingerprints = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + */ + com.google.devtools.artifactregistry.v1.HashOrBuilder getFingerprintsOrBuilder(int index); } diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionProto.java index 9e8ed9b5151f..327ae9af88b1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -73,64 +73,59 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { static { java.lang.String[] descriptorData = { - "\n" - + "1google/devtools/artifactregistry/v1/version.proto\022#google.devtools.artifactreg" + "\n1google/devtools/artifactregistry/v1/ve" + + "rsion.proto\022#google.devtools.artifactreg" + "istry.v1\032\037google/api/field_behavior.prot" - + "o\032\031google/api/resource.proto\032-google/devtools/artifactregistry/v1/tag.proto\032" - + " google/protobuf/field_mask.proto\032\034google/pr" - + "otobuf/struct.proto\032\037google/protobuf/timestamp.proto\"\244\004\n" - + "\007Version\022\014\n" - + "\004name\030\001 \001(\t\022\023\n" - + "\013description\030\003 \001(\t\022/\n" - + "\013create_time\030\005 \001(\0132\032.google.protobuf.Timestamp\022/\n" - + "\013update_time\030\006 \001(\0132\032.google.protobuf.Timestamp\022>\n" - + "\014related_tags\030\007 \003(\0132(.google.devtools.artifactregistry.v1.Tag\022.\n" - + "\010metadata\030\010 \001(\0132\027.google.protobuf.StructB\003\340A\003\022W\n" - + "\013annotations\030\t \003(\0132=.google.devtools.artifactreg" - + "istry.v1.Version.AnnotationsEntryB\003\340A\001\0322\n" - + "\020AnnotationsEntry\022\013\n" - + "\003key\030\001 \001(\t\022\r\n" - + "\005value\030\002 \001(\t:\0028\001:\226\001\352A\222\001\n" - + "\'artifactregistry.googleapis.com/Version\022gprojects/{project}/l" - + "ocations/{location}/repositories/{reposi" - + "tory}/packages/{package}/versions/{version}\"\270\001\n" - + "\023ListVersionsRequest\022\016\n" - + "\006parent\030\001 \001(\t\022\021\n" - + "\tpage_size\030\002 \001(\005\022\022\n\n" - + "page_token\030\003 \001(\t\022>\n" - + "\004view\030\004 \001(\01620.google.devtools.artifactregistry.v1.VersionView\022\025\n" - + "\010order_by\030\005 \001(\tB\003\340A\001\022\023\n" - + "\006filter\030\006 \001(\tB\003\340A\001\"o\n" - + "\024ListVersionsResponse\022>\n" - + "\010versions\030\001 \003(\0132,.google.devtools.artifactregistry.v1.Version\022\027\n" - + "\017next_page_token\030\002 \001(\t\"a\n" - + "\021GetVersionRequest\022\014\n" - + "\004name\030\001 \001(\t\022>\n" - + "\004view\030\002 \001(\01620.google.devtools.artifactregistry.v1.VersionView\"3\n" - + "\024DeleteVersionRequest\022\014\n" - + "\004name\030\001 \001(\t\022\r\n" - + "\005force\030\002 \001(\010\"\261\001\n" - + "\032BatchDeleteVersionsRequest\022<\n" - + "\006parent\030\001 \001(\tB,\372A)\022\'artifactregistry.googleapis.com/Version\022>\n" - + "\005names\030\002 \003(\tB/\340A\002\372A)\n" - + "\'artifactregistry.googleapis.com/Version\022\025\n\r" - + "validate_only\030\003 \001(\010\"6\n" - + "\033BatchDeleteVersionsMetadata\022\027\n" - + "\017failed_versions\030\002 \003(\t\"\213\001\n" - + "\024UpdateVersionRequest\022B\n" - + "\007version\030\001" - + " \001(\0132,.google.devtools.artifactregistry.v1.VersionB\003\340A\002\022/\n" - + "\013update_mask\030\002 \001(\0132\032.google.protobuf.FieldMask*@\n" - + "\013VersionView\022\034\n" - + "\030VERSION_VIEW_UNSPECIFIED\020\000\022\t\n" - + "\005BASIC\020\001\022\010\n" - + "\004FULL\020\002B\367\001\n" - + "\'com.google.devtools.artifactregistry.v1B\014VersionProtoP\001Z" - + "Pcloud.google.com/go/artifactregistry/ap" - + "iv1/artifactregistrypb;artifactregistrypb\252\002" - + " Google.Cloud.ArtifactRegistry.V1\312\002 G" - + "oogle\\Cloud\\ArtifactRegistry\\V1\352\002#Google" - + "::Cloud::ArtifactRegistry::V1b\006proto3" + + "o\032\031google/api/resource.proto\032.google/dev" + + "tools/artifactregistry/v1/file.proto\032-go" + + "ogle/devtools/artifactregistry/v1/tag.pr" + + "oto\032 google/protobuf/field_mask.proto\032\034g" + + "oogle/protobuf/struct.proto\032\037google/prot" + + "obuf/timestamp.proto\"\352\004\n\007Version\022\014\n\004name" + + "\030\001 \001(\t\022\023\n\013description\030\003 \001(\t\022/\n\013create_ti" + + "me\030\005 \001(\0132\032.google.protobuf.Timestamp\022/\n\013" + + "update_time\030\006 \001(\0132\032.google.protobuf.Time" + + "stamp\022>\n\014related_tags\030\007 \003(\0132(.google.dev" + + "tools.artifactregistry.v1.Tag\022.\n\010metadat" + + "a\030\010 \001(\0132\027.google.protobuf.StructB\003\340A\003\022W\n" + + "\013annotations\030\t \003(\0132=.google.devtools.art" + + "ifactregistry.v1.Version.AnnotationsEntr" + + "yB\003\340A\001\022D\n\014fingerprints\030\n \003(\0132).google.de" + + "vtools.artifactregistry.v1.HashB\003\340A\003\0322\n\020" + + "AnnotationsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002" + + " \001(\t:\0028\001:\226\001\352A\222\001\n\'artifactregistry.google" + + "apis.com/Version\022gprojects/{project}/loc" + + "ations/{location}/repositories/{reposito" + + "ry}/packages/{package}/versions/{version" + + "}\"\270\001\n\023ListVersionsRequest\022\016\n\006parent\030\001 \001(" + + "\t\022\021\n\tpage_size\030\002 \001(\005\022\022\n\npage_token\030\003 \001(\t" + + "\022>\n\004view\030\004 \001(\01620.google.devtools.artifac" + + "tregistry.v1.VersionView\022\025\n\010order_by\030\005 \001" + + "(\tB\003\340A\001\022\023\n\006filter\030\006 \001(\tB\003\340A\001\"o\n\024ListVers" + + "ionsResponse\022>\n\010versions\030\001 \003(\0132,.google." + + "devtools.artifactregistry.v1.Version\022\027\n\017" + + "next_page_token\030\002 \001(\t\"a\n\021GetVersionReque" + + "st\022\014\n\004name\030\001 \001(\t\022>\n\004view\030\002 \001(\01620.google." + + "devtools.artifactregistry.v1.VersionView" + + "\"3\n\024DeleteVersionRequest\022\014\n\004name\030\001 \001(\t\022\r" + + "\n\005force\030\002 \001(\010\"\261\001\n\032BatchDeleteVersionsReq" + + "uest\022<\n\006parent\030\001 \001(\tB,\372A)\022\'artifactregis" + + "try.googleapis.com/Version\022>\n\005names\030\002 \003(" + + "\tB/\340A\002\372A)\n\'artifactregistry.googleapis.c" + + "om/Version\022\025\n\rvalidate_only\030\003 \001(\010\"6\n\033Bat" + + "chDeleteVersionsMetadata\022\027\n\017failed_versi" + + "ons\030\002 \003(\t\"\213\001\n\024UpdateVersionRequest\022B\n\007ve" + + "rsion\030\001 \001(\0132,.google.devtools.artifactre" + + "gistry.v1.VersionB\003\340A\002\022/\n\013update_mask\030\002 " + + "\001(\0132\032.google.protobuf.FieldMask*@\n\013Versi" + + "onView\022\034\n\030VERSION_VIEW_UNSPECIFIED\020\000\022\t\n\005" + + "BASIC\020\001\022\010\n\004FULL\020\002B\367\001\n\'com.google.devtool" + + "s.artifactregistry.v1B\014VersionProtoP\001ZPc" + + "loud.google.com/go/artifactregistry/apiv" + + "1/artifactregistrypb;artifactregistrypb\252" + + "\002 Google.Cloud.ArtifactRegistry.V1\312\002 Goo" + + "gle\\Cloud\\ArtifactRegistry\\V1\352\002#Google::" + + "Cloud::ArtifactRegistry::V1b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -138,6 +133,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), + com.google.devtools.artifactregistry.v1.FileProto.getDescriptor(), com.google.devtools.artifactregistry.v1.TagProto.getDescriptor(), com.google.protobuf.FieldMaskProto.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), @@ -156,6 +152,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "RelatedTags", "Metadata", "Annotations", + "Fingerprints", }); internal_static_google_devtools_artifactregistry_v1_Version_AnnotationsEntry_descriptor = internal_static_google_devtools_artifactregistry_v1_Version_descriptor @@ -232,6 +229,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptor, registry); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); + com.google.devtools.artifactregistry.v1.FileProto.getDescriptor(); com.google.devtools.artifactregistry.v1.TagProto.getDescriptor(); com.google.protobuf.FieldMaskProto.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionView.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionView.java index 7ae01b160cf7..7b1654065b10 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionView.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VersionView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfig.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfig.java index 067b70a17118..a89f87d7f58d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfig.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfigOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfigOrBuilder.java index e9a6f62db668..acb22c87bc2d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfigOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VirtualRepositoryConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VpcscConfigName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VpcscConfigName.java index 7ca72c113377..d82d5badcd71 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VpcscConfigName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/VpcscConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifact.java index 994e1fe0a8d2..88714c435706 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactOrBuilder.java index 4ad82a41b225..b9d59363733c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactProto.java index c8205ab39c64..db077f51ff6f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/YumArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/artifact.proto b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/artifact.proto index 347c3ef17cc0..691638efd8d6 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/artifact.proto +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/artifact.proto @@ -42,7 +42,7 @@ message DockerImage { // Required. registry_location, project_id, repository_name and image id forms // a unique image - // name:`projects//locations//repository//dockerImages/`. + // name:`projects//locations//repositories//dockerImages/`. // For example, // "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/ // nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf", @@ -84,6 +84,50 @@ message DockerImage { // Output only. The time when the docker image was last updated. google.protobuf.Timestamp update_time = 8 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // ArtifactType of this image, e.g. "application/vnd.example+type". + // If the `subject_digest` is set and no `artifact_type` is given, the + // `media_type` will be considered as the `artifact_type`. This field is + // returned as the `metadata.artifactType` field in the Version resource. + string artifact_type = 9; + + // Optional. For multi-arch images (manifest lists), this field contains the + // list of image manifests. + repeated ImageManifest image_manifests = 11 + [(google.api.field_behavior) = OPTIONAL]; +} + +// Details of a single image manifest within a multi-arch image. +message ImageManifest { + // Optional. The CPU architecture of the image. + // Values are provided by the Docker client and are not validated by Artifact + // Registry. Example values include "amd64", "arm64", "ppc64le", "s390x", + // "riscv64", "mips64le", etc. + string architecture = 1 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The operating system of the image. + // Values are provided by the Docker client and are not validated by Artifact + // Registry. Example values include "linux", "windows", "darwin", "aix", etc. + string os = 2 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The manifest digest, in the format "sha256:". + string digest = 3 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The media type of the manifest, e.g., + // "application/vnd.docker.distribution.manifest.v2+json" + string media_type = 4 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The OS version of the image, for example on Windows + // `10.0.14393.1066`. + string os_version = 5 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The required OS features for the image, for example on Windows + // `win32k`. + repeated string os_features = 6 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The variant of the CPU in the image, for example `v7` to specify + // ARMv7 when architecture is `arm`. + string variant = 7 [(google.api.field_behavior) = OPTIONAL]; } // The request to list docker images. diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/export.proto b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/export.proto new file mode 100644 index 000000000000..2e89c126a96e --- /dev/null +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/export.proto @@ -0,0 +1,99 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.devtools.artifactregistry.v1; + +import "google/api/field_behavior.proto"; +import "google/api/resource.proto"; +import "google/devtools/artifactregistry/v1/file.proto"; +import "google/devtools/artifactregistry/v1/version.proto"; + +option csharp_namespace = "Google.Cloud.ArtifactRegistry.V1"; +option go_package = "cloud.google.com/go/artifactregistry/apiv1/artifactregistrypb;artifactregistrypb"; +option java_multiple_files = true; +option java_outer_classname = "ExportProto"; +option java_package = "com.google.devtools.artifactregistry.v1"; +option php_namespace = "Google\\Cloud\\ArtifactRegistry\\V1"; +option ruby_package = "Google::Cloud::ArtifactRegistry::V1"; + +// The request for exporting an artifact to a destination. +message ExportArtifactRequest { + // The artifact to be exported. + oneof source_artifact { + // The artifact version to export. + // Format: + // projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/versions/{version} + string source_version = 2 [(google.api.resource_reference) = { + type: "artifactregistry.googleapis.com/Version" + }]; + + // The artifact tag to export. + // Format:projects/{project}/locations/{location}/repositories/{repository}/packages/{package}/tags/{tag} + string source_tag = 4 [(google.api.resource_reference) = { + type: "artifactregistry.googleapis.com/Tag" + }]; + } + + // The destination to export the artifact to. + oneof destination { + // The Cloud Storage path to export the artifact to. Should start with the + // bucket name, and optionally have a directory path. Examples: + // `dst_bucket`, `dst_bucket/sub_dir`. + // Existing objects with the same path will be overwritten. + string gcs_path = 3; + } + + // Required. The repository of the artifact to export. + // Format: projects/{project}/locations/{location}/repositories/{repository} + string repository = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "artifactregistry.googleapis.com/Repository" + } + ]; +} + +// The response for exporting an artifact to a destination. +message ExportArtifactResponse { + // The exported version. Should be the same as the request version with + // fingerprint resource name. + Version exported_version = 1; +} + +// The LRO metadata for exporting an artifact. +message ExportArtifactMetadata { + // The exported artifact file. + message ExportedFile { + // The destination the file was exported to. + oneof destination { + // Cloud Storage Object path of the exported file. Examples: + // `dst_bucket/file1`, `dst_bucket/sub_dir/file1` + string gcs_object_path = 2; + } + + // Name of the exported artifact file. + // Format: `projects/p1/locations/us/repositories/repo1/files/file1` + string name = 1 [(google.api.resource_reference) = { + type: "artifactregistry.googleapis.com/File" + }]; + + // The hashes of the file content. + repeated Hash hashes = 3; + } + + // The exported artifact files. + repeated ExportedFile exported_files = 1; +} diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/repository.proto b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/repository.proto index 4cdc353f6b5b..40fc30a008a7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/repository.proto +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/repository.proto @@ -470,7 +470,8 @@ message Repository { message VulnerabilityScanningConfig { // Config for vulnerability scanning of resources in this repository. enum EnablementConfig { - // Not set. This will be treated as INHERITED. + // Not set. This will be treated as INHERITED for Docker repositories and + // DISABLED for non-Docker repositories. ENABLEMENT_CONFIG_UNSPECIFIED = 0; // Scanning is Enabled, but dependent on API enablement. @@ -547,6 +548,9 @@ message Repository { // Generic package format. GENERIC = 11; + + // Ruby package format. + RUBY = 12; } // The mode configures the repository to serve artifacts from different @@ -633,7 +637,7 @@ message Repository { // use this to calculate storage costs. int64 size_bytes = 13 [(google.api.field_behavior) = OUTPUT_ONLY]; - // Output only. If set, the repository satisfies physical zone separation. + // Output only. Whether or not this repository satisfies PZS. bool satisfies_pzs = 16 [(google.api.field_behavior) = OUTPUT_ONLY]; // Optional. If true, the cleanup pipeline is prevented from deleting versions @@ -649,7 +653,7 @@ message Repository { // error rather than defaulting to standard. bool disallow_unspecified_mode = 21 [(google.api.field_behavior) = OPTIONAL]; - // Output only. If set, the repository satisfies physical zone isolation. + // Output only. Whether or not this repository satisfies PZI. bool satisfies_pzi = 22 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. The repository endpoint, for example: diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/service.proto b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/service.proto index 76b8ff5c3f5c..b7e7c368092d 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/service.proto +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/service.proto @@ -21,6 +21,7 @@ import "google/api/client.proto"; import "google/devtools/artifactregistry/v1/apt_artifact.proto"; import "google/devtools/artifactregistry/v1/artifact.proto"; import "google/devtools/artifactregistry/v1/attachment.proto"; +import "google/devtools/artifactregistry/v1/export.proto"; import "google/devtools/artifactregistry/v1/file.proto"; import "google/devtools/artifactregistry/v1/package.proto"; import "google/devtools/artifactregistry/v1/repository.proto"; @@ -541,6 +542,19 @@ service ArtifactRegistry { metadata_type: "google.devtools.artifactregistry.v1.OperationMetadata" }; } + + // Exports an artifact to a Cloud Storage bucket. + rpc ExportArtifact(ExportArtifactRequest) + returns (google.longrunning.Operation) { + option (google.api.http) = { + post: "/v1/{repository=projects/*/locations/*/repositories/*}:exportArtifact" + body: "*" + }; + option (google.longrunning.operation_info) = { + response_type: "google.devtools.artifactregistry.v1.ExportArtifactResponse" + metadata_type: "google.devtools.artifactregistry.v1.ExportArtifactMetadata" + }; + } } // Metadata type for longrunning-operations, currently empty. diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/version.proto b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/version.proto index ec64db538c95..4efa5c15fec3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/version.proto +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/version.proto @@ -18,6 +18,7 @@ package google.devtools.artifactregistry.v1; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; +import "google/devtools/artifactregistry/v1/file.proto"; import "google/devtools/artifactregistry/v1/tag.proto"; import "google/protobuf/field_mask.proto"; import "google/protobuf/struct.proto"; @@ -83,6 +84,11 @@ message Version { // Optional. Client specified annotations. map annotations = 9 [(google.api.field_behavior) = OPTIONAL]; + + // Output only. Immutable reference for the version, calculated based on the + // version's content. Currently we only support dirsum_sha256 hash algorithm. + // Additional hash algorithms may be added in the future. + repeated Hash fingerprints = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; } // The request to list versions. diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/pom.xml b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/pom.xml index b2edea1eb1b8..1d02c1b62fb6 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/pom.xml +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-artifact-registry-v1beta2 - 0.86.0-SNAPSHOT + 0.87.0 grpc-google-cloud-artifact-registry-v1beta2 Proto library for google-cloud-artifact-registry com.google.cloud google-cloud-artifact-registry-parent - 1.80.0-SNAPSHOT + 1.81.0 diff --git a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifact.java index 008bf7899671..00d254b6a32c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactOrBuilder.java index 5b670a25e19f..27680c2b5f73 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactProto.java index b17f8fc7aa04..0e17ee17df46 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/AptArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequest.java index 7568dbfdd8af..1e2626c80d6e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequestOrBuilder.java index a9799373a5bb..528670efd400 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequest.java index 5e8e80cfbe45..df988a121992 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequestOrBuilder.java index a371798880ea..dbf209a453f2 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/CreateTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequest.java index 6997094d7ef4..b4021654103f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequestOrBuilder.java index ae8a7ead99df..640817185e04 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeletePackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequest.java index f47e1118ce88..bb4a883622d9 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequestOrBuilder.java index 83988b3e01e3..a9efaf98c678 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequest.java index 67f21c2e82f9..2bd151d5a94b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequestOrBuilder.java index 2bb882dcf283..ffe49d38f8ba 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequest.java index b4159575052b..12d52d2300c0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequestOrBuilder.java index be00509ad75b..d2ef5927ae45 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/DeleteVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/File.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/File.java index f8936abf3763..a3269801ef55 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/File.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/File.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileOrBuilder.java index a216fc9f2f8b..e52b66146983 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileProto.java index 9c92723cf5d7..b7fa7822b817 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/FileProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequest.java index 203b5b70ec75..cb2fd2ff1c4f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequestOrBuilder.java index 9106e2a1efcc..f283eb62c203 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetFileRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequest.java index 2baa402693af..9d135e3bfe82 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequestOrBuilder.java index 90be68006e71..8c35bcc86902 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetPackageRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequest.java index 5d4cf4b072c6..e2c05a3d8837 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequestOrBuilder.java index 33ed0a88282a..6ea6413417fb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetProjectSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequest.java index dc4765202bfd..b95995e68e3f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequestOrBuilder.java index a5fdebec6961..e5d14d4c8f90 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequest.java index 8a3ac4a16b4f..3791276d9252 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequestOrBuilder.java index 6334eaf563f3..649b2be086ee 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequest.java index 070b5d89628f..3ebcb5ec0dcf 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequestOrBuilder.java index 901a27fcdd8e..15ed7854ec77 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/GetVersionRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Hash.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Hash.java index aad43cfde3a0..4b944fb074f0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Hash.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Hash.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/HashOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/HashOrBuilder.java index 7210a942dbdf..f74a7bc0b2c4 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/HashOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/HashOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfo.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfo.java index 0983f758eaac..5d74428c846a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfo.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfoOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfoOrBuilder.java index 90b591ee352f..fdc3607e059e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfoOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsErrorInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSource.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSource.java index b84840994fcf..3cafbc6810a7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSource.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSourceOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSourceOrBuilder.java index 967da974d788..5b61e27dda59 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSourceOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsGcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadata.java index b378f27e567f..554f81d8acc8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadataOrBuilder.java index 4429210862d4..4471df9b403c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequest.java index cf02ffa173d6..fad3af23c478 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequestOrBuilder.java index 3ce4df112674..e2cd1ea11b2a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponse.java index 7f8573609af0..61cb6b5306da 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponseOrBuilder.java index 1963bc45f4e6..adee8a4d88fa 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportAptArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfo.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfo.java index 7afefd03a408..c10113d52f90 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfo.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfoOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfoOrBuilder.java index 4069673e335d..35ce97aec8a4 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfoOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsErrorInfoOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSource.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSource.java index 4c88e6b9b942..3c1f83dd8f0a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSource.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSourceOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSourceOrBuilder.java index 89fa2d4a0df6..e17395bf2c31 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSourceOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsGcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadata.java index 225913f22ed4..fb282d51e19e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadataOrBuilder.java index 35058dcf969c..b19200a47601 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequest.java index 930d7bf1b45a..771a10344aa0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequestOrBuilder.java index b240c54ead0b..c1315e26a473 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponse.java index 5a1db3328bcc..4550b0a8cc61 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponseOrBuilder.java index bed186e6fcf7..8978bcb49306 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ImportYumArtifactsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequest.java index a8754106dd2a..592d7485128b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequestOrBuilder.java index 40a7b5c5645b..6038bb4fb212 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponse.java index 0b67aae27baf..fcc3fbbe803f 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponseOrBuilder.java index a162f87fd92b..0d9a9290bafe 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListFilesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequest.java index 21c201cbed17..3795dbfa4d12 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequestOrBuilder.java index dd7ecff544ee..675225fb1443 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponse.java index 3dee34de11a8..b395d119350c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponseOrBuilder.java index bc657aa41d9b..dd6412b25f1b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListPackagesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequest.java index b8f592183185..3a838c582e56 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequestOrBuilder.java index c16ebd3b3122..4c25d7e1f6f7 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponse.java index fde8a4a625a5..45866f39fdde 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponseOrBuilder.java index e66a76021181..6be015d5d4fb 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListRepositoriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequest.java index 56d57b9a6476..0dc85e8aa158 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequestOrBuilder.java index c9f1247f7cb9..115ce693a256 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponse.java index 7328fa5860a5..e40e6d7f4212 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponseOrBuilder.java index ab3a3c1e1111..332ccfc141c1 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListTagsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequest.java index 9a55e2b24bb7..e4e93757333e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequestOrBuilder.java index 23b044fdb8d8..f0d4b4873ad8 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponse.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponse.java index fd4d9dd4ace3..913a479c7c09 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponse.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponseOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponseOrBuilder.java index 7974b7849890..bf319e049521 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponseOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ListVersionsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/LocationName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/LocationName.java index b2bbb6a0af4a..c2a07e4401fe 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/LocationName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadata.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadata.java index bf9639392380..b5892e38115e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadata.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadataOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadataOrBuilder.java index 6d17df75b385..2f6312520538 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadataOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Package.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Package.java index 43e8d2dfc179..afeaab80f2fe 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Package.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Package.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageOrBuilder.java index 0480fc3d2224..790be6be3547 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageProto.java index 383747212bd8..b0939f7ad0e3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/PackageProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettings.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettings.java index 453f001eafe3..57e820a000b0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettings.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsName.java index f3e10c61861a..fd50baa00f4e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsOrBuilder.java index 2b50d168ce75..c993d5aeb777 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ProjectSettingsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Repository.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Repository.java index a824b18102f7..9bce5d339483 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Repository.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Repository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryName.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryName.java index 9467a4f92d60..31a339b4916a 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryName.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryOrBuilder.java index 802c61d3cc7d..2c8ac7feddb3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryProto.java index 4337705e6b64..5bbad0f97fda 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/RepositoryProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ServiceProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ServiceProto.java index a16c22553616..5e06cff9d39c 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ServiceProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/ServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/SettingsProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/SettingsProto.java index 8fedc5988321..84117b4b6fd0 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/SettingsProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/SettingsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Tag.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Tag.java index 0bee75f5e897..7addee95a295 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Tag.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Tag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagOrBuilder.java index a6708e48664b..df434fec2754 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagProto.java index a737f454a88d..7e7cb313b1af 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/TagProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequest.java index affdda0cf66e..25ece8918cfd 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequestOrBuilder.java index f9d094e9cbb1..4704052224e5 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateProjectSettingsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequest.java index f938bc3e4ea2..ee5460c770d3 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequestOrBuilder.java index 800dcdc30a8b..9b1a3969e8bd 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateRepositoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequest.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequest.java index a4b280ff3db8..fc791bd5458b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequest.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequestOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequestOrBuilder.java index 8040f873be08..ac03b1cd972e 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequestOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/UpdateTagRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Version.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Version.java index 68076be2daba..6bfa9f728185 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Version.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/Version.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionOrBuilder.java index 206a9fa3d3f5..c364496d69f4 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionProto.java index 0b58c50fb613..0eacb88a8e8b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionView.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionView.java index e8db7c36a52b..607afc32955b 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionView.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/VersionView.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifact.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifact.java index d614981f9e33..e641369ef669 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifact.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactOrBuilder.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactOrBuilder.java index 3349e52a3230..deee0e84dc22 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactOrBuilder.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactProto.java b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactProto.java index 841d33e3babe..6cb235de8bce 100644 --- a/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactProto.java +++ b/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/YumArtifactProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersions.java index 3e265e6b544b..ad079ba2c85b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersionsLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersionsLRO.java index ec31ccf10a89..783395bbf6e7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersionsLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/AsyncBatchDeleteVersionsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersions.java index 8328674cbafd..e38d4702f5f6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsPackagenameListstring.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsPackagenameListstring.java index b7f0ce0adce6..fdafafe3f73a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsPackagenameListstring.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsPackagenameListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsStringListstring.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsStringListstring.java index 20204defc6a4..d903d5f88817 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsStringListstring.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/batchdeleteversions/SyncBatchDeleteVersionsStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetCredentialsProvider.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetCredentialsProvider.java index 843485ccc527..3cbd47d1593d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetCredentialsProvider.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetEndpoint.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetEndpoint.java index c2222b6b7f6a..9ba64ce297f9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetEndpoint.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateUseHttpJsonTransport.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateUseHttpJsonTransport.java index aa7e0dad46e3..db4381165f6b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateUseHttpJsonTransport.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachment.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachment.java index 399d08909ebc..42dca0fcdd68 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachment.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachmentLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachmentLRO.java index 62a2c50f34cc..4108d9eda987 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachmentLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/AsyncCreateAttachmentLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachment.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachment.java index f4f8afd8e6d8..2017dedb9d21 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachment.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentRepositorynameAttachmentString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentRepositorynameAttachmentString.java index 91f3ff1bbedb..6669b1dd50a1 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentRepositorynameAttachmentString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentRepositorynameAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentStringAttachmentString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentStringAttachmentString.java index 678eef34802a..faa41a5793ca 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentStringAttachmentString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createattachment/SyncCreateAttachmentStringAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepository.java index b92119b48d43..8f7da0bb4ff5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java index 6084b3ad386c..bb1efd505134 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepository.java index 0ed82562319a..2217ad63f847 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java index 153bda2c3ae3..981f0b2aaace 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java index fdc7437dca22..d7cecf7ee761 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/AsyncCreateRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/AsyncCreateRule.java index 67b0d8e72003..5228bb37f638 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/AsyncCreateRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/AsyncCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRule.java index a5d4083d32d0..c52f49be01c9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleRepositorynameRuleString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleRepositorynameRuleString.java index 61664e70aeff..1b76ec3cd918 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleRepositorynameRuleString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleRepositorynameRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleStringRuleString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleStringRuleString.java index 9e0c31b57432..619335b5b3f7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleStringRuleString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createrule/SyncCreateRuleStringRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/AsyncCreateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/AsyncCreateTag.java index c4946072b4f8..d995e5982176 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/AsyncCreateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/AsyncCreateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTag.java index 1fb4efb1de9e..639dd05ce305 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTagStringTagString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTagStringTagString.java index bd289ce7309e..f2c4f4fda756 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTagStringTagString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/createtag/SyncCreateTagStringTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachment.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachment.java index d05fc53eed03..70e50b4b8d43 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachment.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachmentLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachmentLRO.java index 050ae01fe4c4..d5452ba0e1bd 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachmentLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/AsyncDeleteAttachmentLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachment.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachment.java index f05a25397ba1..0be4876a315e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachment.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentAttachmentname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentAttachmentname.java index 151eca5d74c9..2dd1cc279e25 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentAttachmentname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentAttachmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentString.java index d8ab966d354f..cf05a4129215 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteattachment/SyncDeleteAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFile.java index c00e12b8da17..69d3f9df6d93 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFileLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFileLRO.java index 3bc3c4fa7f6d..755965427a70 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFileLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/AsyncDeleteFileLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFile.java index 6bca82a1a554..09dd1e15543c 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileFilename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileFilename.java index fe97d6711ad6..a3c59ae5cab0 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileFilename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileFilename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileString.java index b64fc2911963..8bfaf911cf86 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletefile/SyncDeleteFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackage.java index 6b26840cb363..387ce0cb12a6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackageLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackageLRO.java index c423577adfc0..138228429d82 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackageLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/AsyncDeletePackageLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackage.java index 98304da2c257..f8cee1ae1084 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackagePackagename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackagePackagename.java index c38bbb37c661..3f2b2e0c4722 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackagePackagename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackagePackagename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackageString.java index 6378b0f4ba84..b828026f8a10 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletepackage/SyncDeletePackageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepository.java index d90d1fc5cfd7..2c1e020b434e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java index 76042e9be77a..9325a9948cef 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepository.java index 3bfe2675f604..1605d8d0538a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java index 0d1e6cba34ec..8a92a3684e37 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryString.java index 42117b4b7d71..f4ec199d7707 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterepository/SyncDeleteRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/AsyncDeleteRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/AsyncDeleteRule.java index 85a4f4d0bfd5..9890e63fbd44 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/AsyncDeleteRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/AsyncDeleteRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRule.java index a9e6b3286ead..a4d4c6a3e6f4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleRulename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleRulename.java index bfc66359b437..08be6f46f98e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleRulename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleRulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleString.java index f8eb19c609c6..bb9dcd259940 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleterule/SyncDeleteRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/AsyncDeleteTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/AsyncDeleteTag.java index 2ac30841ac46..d66c4c248940 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/AsyncDeleteTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/AsyncDeleteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTag.java index bcae2e579e7e..c565313c1a86 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTagString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTagString.java index 154fe9d46592..bfe738e3f648 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTagString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deletetag/SyncDeleteTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersion.java index 806cc71fe968..4a11287abfb4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java index 43180e17046a..710501cd80f5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersion.java index 807137626c58..703ca4f10071 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersionString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersionString.java index 9d845663a85b..5fe9c4186203 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersionString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/deleteversion/SyncDeleteVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/AsyncExportArtifact.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/AsyncExportArtifact.java new file mode 100644 index 000000000000..d84d2851dc18 --- /dev/null +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/AsyncExportArtifact.java @@ -0,0 +1,51 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.devtools.artifactregistry.v1.samples; + +// [START artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_async] +import com.google.api.core.ApiFuture; +import com.google.devtools.artifactregistry.v1.ArtifactRegistryClient; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.RepositoryName; +import com.google.longrunning.Operation; + +public class AsyncExportArtifact { + + public static void main(String[] args) throws Exception { + asyncExportArtifact(); + } + + public static void asyncExportArtifact() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (ArtifactRegistryClient artifactRegistryClient = ArtifactRegistryClient.create()) { + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository( + RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + ApiFuture future = + artifactRegistryClient.exportArtifactCallable().futureCall(request); + // Do something. + Operation response = future.get(); + } + } +} +// [END artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_async] diff --git a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/AsyncExportArtifactLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/AsyncExportArtifactLRO.java new file mode 100644 index 000000000000..1fffa2d56628 --- /dev/null +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/AsyncExportArtifactLRO.java @@ -0,0 +1,52 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.devtools.artifactregistry.v1.samples; + +// [START artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_LRO_async] +import com.google.api.gax.longrunning.OperationFuture; +import com.google.devtools.artifactregistry.v1.ArtifactRegistryClient; +import com.google.devtools.artifactregistry.v1.ExportArtifactMetadata; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.ExportArtifactResponse; +import com.google.devtools.artifactregistry.v1.RepositoryName; + +public class AsyncExportArtifactLRO { + + public static void main(String[] args) throws Exception { + asyncExportArtifactLRO(); + } + + public static void asyncExportArtifactLRO() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (ArtifactRegistryClient artifactRegistryClient = ArtifactRegistryClient.create()) { + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository( + RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + OperationFuture future = + artifactRegistryClient.exportArtifactOperationCallable().futureCall(request); + // Do something. + ExportArtifactResponse response = future.get(); + } + } +} +// [END artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_LRO_async] diff --git a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/SyncExportArtifact.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/SyncExportArtifact.java new file mode 100644 index 000000000000..c335e221c7d5 --- /dev/null +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/exportartifact/SyncExportArtifact.java @@ -0,0 +1,47 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.devtools.artifactregistry.v1.samples; + +// [START artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_sync] +import com.google.devtools.artifactregistry.v1.ArtifactRegistryClient; +import com.google.devtools.artifactregistry.v1.ExportArtifactRequest; +import com.google.devtools.artifactregistry.v1.ExportArtifactResponse; +import com.google.devtools.artifactregistry.v1.RepositoryName; + +public class SyncExportArtifact { + + public static void main(String[] args) throws Exception { + syncExportArtifact(); + } + + public static void syncExportArtifact() throws Exception { + // This snippet has been automatically generated and should be regarded as a code template only. + // It will require modifications to work: + // - It may require correct/in-range values for request initialization. + // - It may require specifying regional endpoints when creating the service client as shown in + // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library + try (ArtifactRegistryClient artifactRegistryClient = ArtifactRegistryClient.create()) { + ExportArtifactRequest request = + ExportArtifactRequest.newBuilder() + .setRepository( + RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .build(); + ExportArtifactResponse response = artifactRegistryClient.exportArtifactAsync(request).get(); + } + } +} +// [END artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_sync] diff --git a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/AsyncGetAttachment.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/AsyncGetAttachment.java index 6b91588eb1ce..797ad5041040 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/AsyncGetAttachment.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/AsyncGetAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachment.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachment.java index 4e478d064e39..dd6c9f06dee6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachment.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentAttachmentname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentAttachmentname.java index f612225a4cea..1a0da875cbb2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentAttachmentname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentAttachmentname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentString.java index dea00e27678a..124b75e132b7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getattachment/SyncGetAttachmentString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/AsyncGetDockerImage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/AsyncGetDockerImage.java index d60b3e3e8116..748260df30dc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/AsyncGetDockerImage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/AsyncGetDockerImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImage.java index c489224f21bb..04c4a1999a08 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageDockerimagename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageDockerimagename.java index f6195cec4334..0b418016ae4f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageDockerimagename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageDockerimagename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageString.java index 6a4d8f3c8600..865bfa9fa185 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getdockerimage/SyncGetDockerImageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/AsyncGetFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/AsyncGetFile.java index c1e9d3a4266a..968815115256 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/AsyncGetFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/AsyncGetFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFile.java index bb3fc8ff4c92..928fc06cb274 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileFilename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileFilename.java index 204e047b6da0..9a426a7efbae 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileFilename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileFilename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileString.java index 117734424fc5..d2aafa9a29fc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getfile/SyncGetFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/AsyncGetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/AsyncGetIamPolicy.java index 5cde001b2ae8..b0859bf42e99 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/AsyncGetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/SyncGetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/SyncGetIamPolicy.java index f641b3644475..b0f60589777f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/SyncGetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/AsyncGetLocation.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/AsyncGetLocation.java index 2397296bc965..855cceb4128a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/AsyncGetLocation.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/SyncGetLocation.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/SyncGetLocation.java index 7d062f64eeee..2dca57a79293 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/SyncGetLocation.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/AsyncGetMavenArtifact.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/AsyncGetMavenArtifact.java index d5ab2f235348..515254b2454a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/AsyncGetMavenArtifact.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/AsyncGetMavenArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifact.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifact.java index 25f73bcef20a..cf6233d0c97d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifact.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactMavenartifactname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactMavenartifactname.java index b73fbfc0814b..db8860a96d33 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactMavenartifactname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactMavenartifactname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactString.java index 2761b259aa40..844bec0c005a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getmavenartifact/SyncGetMavenArtifactString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/AsyncGetNpmPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/AsyncGetNpmPackage.java index 852b1b1a376d..c42a19f28e1b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/AsyncGetNpmPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/AsyncGetNpmPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackage.java index a8acc38f257f..1e08f2ab67ea 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageNpmpackagename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageNpmpackagename.java index 1ccadc0f3d9f..e72522ac25bc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageNpmpackagename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageNpmpackagename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageString.java index a7003a04bfcb..0f7934a3f28b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getnpmpackage/SyncGetNpmPackageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/AsyncGetPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/AsyncGetPackage.java index 4158fbcbdf5d..fc791cac5d18 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/AsyncGetPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/AsyncGetPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackage.java index c3f160bea7b3..a989b79c5f31 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackagePackagename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackagePackagename.java index 62f8023a180c..9ef77144db78 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackagePackagename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackagePackagename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackageString.java index 2be41ada4e00..a3f844bbc875 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpackage/SyncGetPackageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java index 83c33417d538..b56ca4144a49 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettings.java index e0cfa8c419b5..fdcc335a909d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java index cfffe77e74ae..09ee4f14e658 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java index 1306a9f6e1cd..d240bc71ed1b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/AsyncGetPythonPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/AsyncGetPythonPackage.java index 9eca6274eb3e..2bfa84c99f6f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/AsyncGetPythonPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/AsyncGetPythonPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackage.java index a1682f519060..0a133f54e657 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackagePythonpackagename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackagePythonpackagename.java index abbeda43a4d5..61e06e865ce4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackagePythonpackagename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackagePythonpackagename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackageString.java index 436f854e492d..5b953bbf60cd 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/SyncGetPythonPackageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/AsyncGetRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/AsyncGetRepository.java index 79b44d247abe..14ec982ec35e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/AsyncGetRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/AsyncGetRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepository.java index aacbb2a8c017..498517fbccc6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java index c5c96751b13e..bdf26a917388 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryString.java index fa54218b094e..9ef83c49614f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrepository/SyncGetRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/AsyncGetRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/AsyncGetRule.java index 8d86b412000e..0227a7ec35c0 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/AsyncGetRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/AsyncGetRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRule.java index 3d5c076e5892..cb76e878a00d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleRulename.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleRulename.java index 54bab825011b..e53f3c9fb775 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleRulename.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleRulename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleString.java index 60b7496428cd..bc7d42abbdc3 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getrule/SyncGetRuleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/AsyncGetTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/AsyncGetTag.java index 76c466383217..f3bb9b79ec88 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/AsyncGetTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/AsyncGetTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTag.java index 6c0226dcf079..282231985890 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTagString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTagString.java index 447c67bd1c7a..95f1c163e8fc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTagString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/gettag/SyncGetTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/AsyncGetVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/AsyncGetVersion.java index 231b5e86068a..9c98cee50a75 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/AsyncGetVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/AsyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersion.java index 5301abc53772..b546d0a933d6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersionString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersionString.java index fbf987be5060..a248f6385d07 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersionString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getversion/SyncGetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/AsyncGetVPCSCConfig.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/AsyncGetVPCSCConfig.java index 31caea73c580..9ab0e6b03859 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/AsyncGetVPCSCConfig.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/AsyncGetVPCSCConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfig.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfig.java index 2146ac1dc734..2f0cc359ae53 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfig.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigString.java index 3cb1360e4994..15d7184e16a2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigVpcscconfigname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigVpcscconfigname.java index 992a7f6f857f..8840e129c458 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigVpcscconfigname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getvpcscconfig/SyncGetVPCSCConfigVpcscconfigname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java index c0f616ada66d..757f335be0bc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java index 88f6d9fbc17c..06a556a66c47 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java index e7b3bc51ec2b..1e4c577563b4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java index 208017e682f6..49f34dc8d94f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java index a41d7245e2f4..64178d053ca2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java index 5bb9d341e222..1e2ad26229fe 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachments.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachments.java index d8730e707d20..b8ae8f5f6b2b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachments.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachmentsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachmentsPaged.java index f0d4b3673e6a..7a69f4174613 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachmentsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/AsyncListAttachmentsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachments.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachments.java index 390cfeba5737..2bedf67404ac 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachments.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachments.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsRepositoryname.java index 5061a67be199..2cbd0e03477a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsString.java index 90813886de62..4bb56340f9f8 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listattachments/SyncListAttachmentsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImages.java index a12b29b2244f..b6f5f10b0911 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImagesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImagesPaged.java index c8a663222eeb..9d385618a324 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImagesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/AsyncListDockerImagesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImages.java index 3b5ede3796a5..9363d0576426 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImagesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImagesString.java index 5f64c01e4b33..b7342fcf5ebe 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImagesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listdockerimages/SyncListDockerImagesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFiles.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFiles.java index 98eda09b450f..72b560a2bf15 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFiles.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFilesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFilesPaged.java index 17e20be27655..abdd5b1f22e5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFilesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/AsyncListFilesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFiles.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFiles.java index 7d8b6462210c..137f4d581450 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFiles.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesRepositoryname.java index eeaf10450817..cedc1d7281bb 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesString.java index 9ffcd2ec3c2e..c4b955eec199 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listfiles/SyncListFilesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocations.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocations.java index 7d1d066f0edd..ecc47da8c11c 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocations.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocationsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocationsPaged.java index e641aa390fbe..239e7cba72cc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocationsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/SyncListLocations.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/SyncListLocations.java index 85d0dbdb7fb3..c24db0618fea 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/SyncListLocations.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifacts.java index 6c63d0ba01d4..4855bf84132a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifactsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifactsPaged.java index e57d07b47c77..9ad547be08de 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifactsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/AsyncListMavenArtifactsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifacts.java index 548854585758..7513188bfa39 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsRepositoryname.java index cbbfd60f5769..e45b9cb73ca5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsString.java index 994bf3e4466c..5c84c5e140b3 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listmavenartifacts/SyncListMavenArtifactsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackages.java index 6c51789fc197..309fe8792a31 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackagesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackagesPaged.java index 79a00825f8a1..bd6e331678cd 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackagesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/AsyncListNpmPackagesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackages.java index 7f54f29d2824..60312318da0d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesRepositoryname.java index ade6dbe2eadf..13d9f52c85d3 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesString.java index 70715d81f50c..55af27d6a2f2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listnpmpackages/SyncListNpmPackagesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackages.java index 92dc6f980437..055fd14fd1ec 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackagesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackagesPaged.java index 899c0b1539f0..6b52c92e0ffc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackagesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/AsyncListPackagesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackages.java index 324caafdaaa6..698e88ef99f1 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesRepositoryname.java index d9cb0e80752e..a1ba44f7b9c0 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesString.java index 107c3e1aca6c..759c0834814f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpackages/SyncListPackagesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackages.java index 5406df0a9aea..4053fecfe522 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackagesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackagesPaged.java index f657d053f76b..cef7fe305001 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackagesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/AsyncListPythonPackagesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackages.java index 545047bd4941..178c80e97056 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesRepositoryname.java index f4a0585cad8e..6a073d8ff608 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesString.java index 319a9c099ffd..1fb7728b206f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/SyncListPythonPackagesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositories.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositories.java index 85846be3c70a..2c1a2d5313f7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositories.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java index 61697d58af2a..a92a1d8cdffe 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositories.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositories.java index cd68b12e7023..37d469d2e4f7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositories.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java index 6cafebd4dcb4..d4473f09e0ca 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesString.java index 3d30e29fa3e1..9aa5a3bd3023 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrepositories/SyncListRepositoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRules.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRules.java index a84f3dc32511..a26abb5ad450 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRules.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRulesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRulesPaged.java index 25a140ee509e..d95c454bf390 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRulesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/AsyncListRulesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRules.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRules.java index cbc0e200ebc9..220d626d9dd1 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRules.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRules.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesRepositoryname.java index dce2ce718e19..4ca435c96ca9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesString.java index a7274ba29e63..cd1f839d8a4f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listrules/SyncListRulesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTags.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTags.java index a2f66a81ab15..d61fd1af73b7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTags.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTagsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTagsPaged.java index 082f0f190939..c87ae69ca9f6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTagsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/AsyncListTagsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTags.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTags.java index a9ca7b07856d..aeadda34e5ba 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTags.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTagsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTagsString.java index 56d327268ebf..45992742124b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTagsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listtags/SyncListTagsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersions.java index a027d8cbffaa..1cec159141f5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersionsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersionsPaged.java index d9ad6e21d982..a73c7a6addc6 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersionsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/AsyncListVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersions.java index 981eba83bd0a..f581afae1684 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersionsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersionsString.java index e33da6ec528c..2be5ef20c847 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersionsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listversions/SyncListVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/AsyncSetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/AsyncSetIamPolicy.java index 36f8f889f403..5e0b29183983 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/AsyncSetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/SyncSetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/SyncSetIamPolicy.java index 8307af0abfe4..56020ad6af3f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/SyncSetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/AsyncTestIamPermissions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/AsyncTestIamPermissions.java index 43c933c3d7fe..aba7e6d32c59 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/AsyncTestIamPermissions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/SyncTestIamPermissions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/SyncTestIamPermissions.java index 5e46b2798b0d..59e981fa4364 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/SyncTestIamPermissions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/AsyncUpdateFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/AsyncUpdateFile.java index 13850e13abcf..a5216a35d579 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/AsyncUpdateFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/AsyncUpdateFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFile.java index 15ffad83d3b4..66399bef1cc1 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFileFileFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFileFileFieldmask.java index 102a6be8facc..f44993262c8e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFileFileFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatefile/SyncUpdateFileFileFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/AsyncUpdatePackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/AsyncUpdatePackage.java index 6b21416e8b7b..d6d600b99dfa 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/AsyncUpdatePackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/AsyncUpdatePackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackage.java index 249e1dad8814..0ecbe3e9a1d4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackagePackageFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackagePackageFieldmask.java index fdb56be42005..f1e8f0711bb8 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackagePackageFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatepackage/SyncUpdatePackagePackageFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java index cbf6c59773a1..04d7df939cab 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java index 74725a52ad57..f89cfc7fbafd 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java index 5c5a22fe3be9..9d780ddb528a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/AsyncUpdateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/AsyncUpdateRepository.java index 7f09200c45db..d26ae795288c 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/AsyncUpdateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/AsyncUpdateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepository.java index 5b166c53678d..aa24498625a5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java index 9df315707a0e..596171261f93 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/AsyncUpdateRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/AsyncUpdateRule.java index 1f6f28108101..507736bb9890 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/AsyncUpdateRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/AsyncUpdateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRule.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRule.java index 21b71da22368..aed009751bc7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRule.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRuleRuleFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRuleRuleFieldmask.java index 71df480049e5..485689268276 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRuleRuleFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updaterule/SyncUpdateRuleRuleFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/AsyncUpdateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/AsyncUpdateTag.java index 726bcf64e1a9..e003e9f5e118 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/AsyncUpdateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/AsyncUpdateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTag.java index 15713138ca12..612b36fc3b9a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java index 91ca3292bbfd..42c65dccbf8d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/AsyncUpdateVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/AsyncUpdateVersion.java index 8b97f32f097b..cc069a3ea5a7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/AsyncUpdateVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/AsyncUpdateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersion.java index d15eab2a305d..2d926cd1b171 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersionVersionFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersionVersionFieldmask.java index 52e9f6cc83dc..8847bb6ffafc 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersionVersionFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updateversion/SyncUpdateVersionVersionFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/AsyncUpdateVPCSCConfig.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/AsyncUpdateVPCSCConfig.java index ffa6bc1a37bf..27d394742522 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/AsyncUpdateVPCSCConfig.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/AsyncUpdateVPCSCConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfig.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfig.java index d6e39cd883e5..98d9203dfdaa 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfig.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfigVpcscconfigFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfigVpcscconfigFieldmask.java index 9205b6265caf..7e0fdf72dca5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfigVpcscconfigFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/updatevpcscconfig/SyncUpdateVPCSCConfigVpcscconfigFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/getdockerimage/SyncGetDockerImage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/getdockerimage/SyncGetDockerImage.java index e4f1e7871aa6..83465a78adaf 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/getdockerimage/SyncGetDockerImage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/getdockerimage/SyncGetDockerImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java index 2bf66fd026c3..7de482820771 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/getdockerimage/SyncGetDockerImage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/getdockerimage/SyncGetDockerImage.java index 48bc9f31dfc2..9e4b54c9feb7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/getdockerimage/SyncGetDockerImage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/getdockerimage/SyncGetDockerImage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java index 0d063c28990b..c6c426542b07 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetCredentialsProvider.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetCredentialsProvider.java index 261f8de49a2f..7e6149b4f057 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetCredentialsProvider.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetEndpoint.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetEndpoint.java index 603830f0ac98..5df22cf16514 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetEndpoint.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateUseHttpJsonTransport.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateUseHttpJsonTransport.java index 77bfa813621b..96c649337c40 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateUseHttpJsonTransport.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepository.java index 387316012978..14d760fcdaf1 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java index 6a1dd57b6099..2cbd7dfb4565 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/AsyncCreateRepositoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepository.java index 3639ffe6ebe1..bc15931f9a3c 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java index 01bb40a74d5b..e16c6b69af76 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryLocationnameRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java index 81dd063822f8..f327c7c1e907 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createrepository/SyncCreateRepositoryStringRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/AsyncCreateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/AsyncCreateTag.java index 430b9a414598..10e952bc10b4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/AsyncCreateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/AsyncCreateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTag.java index 983da18f769d..429e49f18f4d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTagStringTagString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTagStringTagString.java index f53eec7da3d9..a7f4ae70a2e4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTagStringTagString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/createtag/SyncCreateTagStringTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackage.java index 4a27b9fcb8e5..79abbb0eaa13 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackageLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackageLRO.java index eb1f0af67186..4fa3f73b07b9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackageLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/AsyncDeletePackageLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackage.java index cac400b507e2..9835b9681ec3 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackageString.java index af8cf28b8c13..d9dc2ea15792 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletepackage/SyncDeletePackageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepository.java index b5fda3d4b688..b9e6afab2b2d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java index 35810b5ea5bd..c0cecd235ed9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/AsyncDeleteRepositoryLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepository.java index b5ee2b68642c..babf416ffbde 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java index 88bfc5138b17..ebce2f89adff 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryString.java index 6e364fd1973f..7b8f490688e4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleterepository/SyncDeleteRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/AsyncDeleteTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/AsyncDeleteTag.java index 503687a99f23..3ae5ccda4596 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/AsyncDeleteTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/AsyncDeleteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTag.java index f3ea75dab762..634dcefde1b2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTagString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTagString.java index 114f8ae96742..07f91d9e847f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTagString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deletetag/SyncDeleteTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersion.java index 80390b8b8eaa..ac6f805099af 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java index a2ff1a133624..ffa56c10800d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/AsyncDeleteVersionLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersion.java index 8928c6905dce..ba524fece884 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersionString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersionString.java index a4d16bfa5374..0e508638ad0a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersionString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/deleteversion/SyncDeleteVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/AsyncGetFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/AsyncGetFile.java index 6af66017d1c7..e156cec35879 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/AsyncGetFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/AsyncGetFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFile.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFile.java index c67b3209c462..a04119e9ab3f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFile.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFile.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFileString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFileString.java index 8a90f0116484..4e5959dba482 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFileString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getfile/SyncGetFileString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/AsyncGetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/AsyncGetIamPolicy.java index c608ba01aa23..94cbe447aaa2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/AsyncGetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/AsyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/SyncGetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/SyncGetIamPolicy.java index f907f073def5..6f79ed00f5b8 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/SyncGetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getiampolicy/SyncGetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/AsyncGetLocation.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/AsyncGetLocation.java index 87e3ab899cca..f02b161b9f8e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/AsyncGetLocation.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/AsyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/SyncGetLocation.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/SyncGetLocation.java index 0422d27264a1..15bab4ebfbe9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/SyncGetLocation.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getlocation/SyncGetLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/AsyncGetPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/AsyncGetPackage.java index e8c4362cb92c..051401dc890d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/AsyncGetPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/AsyncGetPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackage.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackage.java index 31361813f2d0..8ed6529f0dde 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackage.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackage.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackageString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackageString.java index a306f9fcdbda..ece2d64e02c5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackageString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getpackage/SyncGetPackageString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java index 8dd42fccac56..64efc262e38e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/AsyncGetProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettings.java index b5d0c3f7d822..a7f6e3c1edc0 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java index 920aa13c65b5..0eb86f002fad 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsProjectsettingsname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java index 47e56e20b166..5ea6b181c977 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getprojectsettings/SyncGetProjectSettingsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/AsyncGetRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/AsyncGetRepository.java index 559b96942e04..b45d06c8f942 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/AsyncGetRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/AsyncGetRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepository.java index ef11dc27a7cb..be82b91f4c32 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java index c5793cec4df2..a653b0994f34 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryRepositoryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryString.java index fb13104301e8..3983dba11582 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getrepository/SyncGetRepositoryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/AsyncGetTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/AsyncGetTag.java index 76a6196f8366..d19d25485d7b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/AsyncGetTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/AsyncGetTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTag.java index 6a7fb969b631..421a2489fb03 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTagString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTagString.java index 484840c31394..92de57fd9200 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTagString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/gettag/SyncGetTagString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/AsyncGetVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/AsyncGetVersion.java index d3f64ff92608..2198cfe7a437 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/AsyncGetVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/AsyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersion.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersion.java index 330c55cb312d..e5cadcd9f9cb 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersion.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersionString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersionString.java index c0afa75568b8..1f170802db5f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersionString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/getversion/SyncGetVersionString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java index a8384015a828..655414ff43b9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java index df31b8a455a2..8881a61a655b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/AsyncImportAptArtifactsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java index 7cf00e85c133..b6546128068a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importaptartifacts/SyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java index fa51612464be..2cb092478cca 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java index 313757947138..1b33c1677bb2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/AsyncImportYumArtifactsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java index a088aac2a7b7..5224d9f69ded 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/importyumartifacts/SyncImportYumArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFiles.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFiles.java index 7b8babec4538..f9dfa8a3fabb 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFiles.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFilesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFilesPaged.java index 1ac2544ed2e1..8464d1eaa476 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFilesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/AsyncListFilesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFiles.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFiles.java index 0f9ab807c8b1..65611d87502b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFiles.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFiles.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFilesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFilesString.java index fc4be79c0a5f..ff82ac22aeb2 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFilesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listfiles/SyncListFilesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocations.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocations.java index 2788b255ad19..696a24bab15a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocations.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocationsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocationsPaged.java index c8ebd49c46a9..ca61d5c1a2c8 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocationsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/AsyncListLocationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/SyncListLocations.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/SyncListLocations.java index 745a75e98e1e..4f051cab1e86 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/SyncListLocations.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listlocations/SyncListLocations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackages.java index 588274d1038c..18f68def1158 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackagesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackagesPaged.java index e8634c6cd4af..a46586936874 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackagesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/AsyncListPackagesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackages.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackages.java index 509d6e6bc59c..fc9c8e63fa71 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackages.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackages.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackagesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackagesString.java index c2d72741d568..3e6d6bc49f65 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackagesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listpackages/SyncListPackagesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositories.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositories.java index dfea3b11b0df..4e2a69b41eef 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositories.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java index f2bd9ed572b4..feb21c33c697 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/AsyncListRepositoriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositories.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositories.java index ceb73feec12a..77d3b7fbaf51 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositories.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositories.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java index f226e6706144..0bbdbcc97a1e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesString.java index 0cf9ac413514..0baf31219384 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listrepositories/SyncListRepositoriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTags.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTags.java index 4afbc52541f7..142cdae15e04 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTags.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTagsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTagsPaged.java index 7f13ff705d9d..9356a7c3400c 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTagsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/AsyncListTagsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTags.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTags.java index 8d7b7a0695a1..8c71f7286e1f 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTags.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTags.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTagsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTagsString.java index 08057215da4f..1b92a1e375e7 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTagsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listtags/SyncListTagsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersions.java index 3e1832579586..8cdb13f36b1b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersionsPaged.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersionsPaged.java index 7fb993754307..c34dd5428f5d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersionsPaged.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/AsyncListVersionsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersions.java index 4e6689c1c240..5f3a61181369 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersionsString.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersionsString.java index 14e68a543086..53e39dcd261d 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersionsString.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/listversions/SyncListVersionsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/AsyncSetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/AsyncSetIamPolicy.java index 658fdf9487ce..8b7538bff8e3 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/AsyncSetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/AsyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/SyncSetIamPolicy.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/SyncSetIamPolicy.java index f779967aba8b..5045920e1a77 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/SyncSetIamPolicy.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/setiampolicy/SyncSetIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/AsyncTestIamPermissions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/AsyncTestIamPermissions.java index e1293638181d..35198df10018 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/AsyncTestIamPermissions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/AsyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/SyncTestIamPermissions.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/SyncTestIamPermissions.java index 8969c10dcea5..d01b794bc037 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/SyncTestIamPermissions.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/testiampermissions/SyncTestIamPermissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java index 10c0fa6e8f66..8146033f823b 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/AsyncUpdateProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java index c694d66fd9f9..057006312aa4 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java index b924991dbdf8..a4b7eba05737 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updateprojectsettings/SyncUpdateProjectSettingsProjectsettingsFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/AsyncUpdateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/AsyncUpdateRepository.java index 421e0c3f0269..31a20911be93 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/AsyncUpdateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/AsyncUpdateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepository.java index 2d135dbb20d6..2425f82d00d5 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java index 6547fe85127f..f7d089157a91 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updaterepository/SyncUpdateRepositoryRepositoryFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/AsyncUpdateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/AsyncUpdateTag.java index 59c66351da74..d94a24f33fd9 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/AsyncUpdateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/AsyncUpdateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTag.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTag.java index 53b14eee77f6..bf37195bbf0a 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTag.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java index ab8a65e9c879..155aee7bd20c 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistry/updatetag/SyncUpdateTagTagFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/getrepository/SyncGetRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/getrepository/SyncGetRepository.java index cb4baa52533c..49e212185e08 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/getrepository/SyncGetRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/getrepository/SyncGetRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java index dec4ba288c29..29b450c80393 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/artifactregistrysettings/importaptartifacts/SyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/getrepository/SyncGetRepository.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/getrepository/SyncGetRepository.java index 7b7b07902077..ed7bb834f59e 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/getrepository/SyncGetRepository.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/getrepository/SyncGetRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java index 59dfe6071a7e..3b75508e3ec8 100644 --- a/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java +++ b/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1beta2/stub/artifactregistrystubsettings/importaptartifacts/SyncImportAptArtifacts.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/CHANGELOG.md b/java-asset/CHANGELOG.md index 26d1846e0f9f..1919884f4d40 100644 --- a/java-asset/CHANGELOG.md +++ b/java-asset/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 3.86.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 3.85.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 3.82.0 (2025-10-21) ### Dependencies diff --git a/java-asset/README.md b/java-asset/README.md index c34b332c470d..2e699dba25ff 100644 --- a/java-asset/README.md +++ b/java-asset/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-asset - 3.82.0 + 3.85.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-asset:3.82.0' +implementation 'com.google.cloud:google-cloud-asset:3.85.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-asset" % "3.82.0" +libraryDependencies += "com.google.cloud" % "google-cloud-asset" % "3.85.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/resource-manager/docs/cloud-asset-inventory/overview [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-asset/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-asset.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-asset/3.82.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-asset/3.85.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-asset/google-cloud-asset-bom/pom.xml b/java-asset/google-cloud-asset-bom/pom.xml index 68d000198e47..1eeb6085b9cb 100644 --- a/java-asset/google-cloud-asset-bom/pom.xml +++ b/java-asset/google-cloud-asset-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-asset-bom - 3.85.0-SNAPSHOT + 3.86.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -23,57 +23,57 @@ com.google.cloud google-cloud-asset - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc grpc-google-cloud-asset-v1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc grpc-google-cloud-asset-v1p1beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc grpc-google-cloud-asset-v1p2beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc grpc-google-cloud-asset-v1p5beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc grpc-google-cloud-asset-v1p7beta1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc proto-google-cloud-asset-v1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc proto-google-cloud-asset-v1p1beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc proto-google-cloud-asset-v1p2beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc proto-google-cloud-asset-v1p5beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc proto-google-cloud-asset-v1p7beta1 - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/google-cloud-asset/pom.xml b/java-asset/google-cloud-asset/pom.xml index 5d4e7a5d14a4..372f481c0fbc 100644 --- a/java-asset/google-cloud-asset/pom.xml +++ b/java-asset/google-cloud-asset/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-asset - 3.85.0-SNAPSHOT + 3.86.0 jar Google Cloud Asset Java idiomatic client for Google Cloud Asset com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 google-cloud-asset diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceClient.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceClient.java index 24cdf20958f0..b58dd23fea5d 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceClient.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceSettings.java index c8e3b92c9d0e..bff9ae0b3496 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/package-info.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/package-info.java index 7051cb0785fc..9fde0789b793 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/package-info.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStub.java index fd5a22cf8c68..c6b00a976d72 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStubSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStubSettings.java index ba31894e6be0..432d0df8600a 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStubSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -156,8 +156,8 @@ * }

* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceCallableFactory.java index fb0f475b6b12..242acd7db303 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceStub.java index cb6e0ad009aa..cf52e8333b1c 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceCallableFactory.java index 59854218fd09..3e0878845ae1 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceStub.java index fdca3b3a18ef..5a0f58f9289f 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1/stub/HttpJsonAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceClient.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceClient.java index f7aef36e14a6..23a9c5c8ea6c 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceClient.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceSettings.java index 9155728c4992..e47ac7399696 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * }

* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/package-info.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/package-info.java index c06b3ca84d72..c4fce97ee07f 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/package-info.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStub.java index 61e3b4d2bf9e..55d885e4aff9 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStubSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStubSettings.java index 5fa401f92b0a..f36c0443e9b0 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStubSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -107,8 +107,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceCallableFactory.java index d02efee95f76..c1c909f0978c 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceStub.java index 2b9e0dac57ed..43847f256754 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceCallableFactory.java index 3012bdf6f2ae..151e282f1808 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceStub.java index a1bc3383660f..633ce2f02d01 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/stub/HttpJsonAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceClient.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceClient.java index 69246ff97af9..d27d86f9d8a0 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceClient.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceSettings.java index 1761cdee9a36..17ad3fa98100 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/package-info.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/package-info.java index 7d40a35dfcfb..4bcabb1f9d94 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/package-info.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStub.java index 2886b46c3ab6..f0aab34e3d90 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStubSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStubSettings.java index e718b6b0ad4f..e3101676d776 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStubSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceCallableFactory.java index 34b8eead4dfd..4627da015075 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceStub.java index 8326d11e197c..53967b3ab4b1 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceCallableFactory.java index da3d6ef446e9..a1be50700077 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceStub.java index d8a4f2788bf3..d2d11d4d44c8 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p2beta1/stub/HttpJsonAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceClient.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceClient.java index f69c888e00d5..4d08a34e7c1a 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceClient.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceSettings.java index 46f99fe62dca..8e0b7e353cbe 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/package-info.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/package-info.java index bf7ff891c717..2f6973c8c0aa 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/package-info.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStub.java index 5be669fb149f..4fdfb22f750e 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStubSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStubSettings.java index 5a66c4aa6c6d..dbf3b9d0c2b2 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStubSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -103,8 +103,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @BetaApi @Generated("by gapic-generator-java") diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceCallableFactory.java index c2764c8476f2..1a82e71323d8 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceStub.java index a46204a49af8..b943e451c684 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceCallableFactory.java index 4a68487553a0..e85192586217 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceStub.java index 1378a6f65ef5..1a38af2bdb23 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p5beta1/stub/HttpJsonAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceClient.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceClient.java index 6560c4704e75..1348df09271d 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceClient.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceSettings.java index 123b643b1d2b..53fdccf88473 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/package-info.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/package-info.java index e6e265f29032..76d5dd4e887e 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/package-info.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStub.java index 86f0909d99c5..fdbde7fab757 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStubSettings.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStubSettings.java index 4f679ac190cb..cd11472beb3f 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStubSettings.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,8 +95,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceCallableFactory.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceCallableFactory.java index 1407b14f3c5f..449e3efff10c 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceCallableFactory.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceStub.java b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceStub.java index ef18763bf9b4..8cdc99ca479c 100644 --- a/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceStub.java +++ b/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p7beta1/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientHttpJsonTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientHttpJsonTest.java index 924442c040db..c681b7133d68 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientHttpJsonTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientTest.java index 1a09b2261733..f5e2d8a86588 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetService.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetService.java index f95c6ba2e461..b7ef0e0bb370 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetService.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetServiceImpl.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetServiceImpl.java index 826087996db4..a0e1c3cb8d64 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetServiceImpl.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientHttpJsonTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientHttpJsonTest.java index ee33b82e5913..7410b9287a27 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientHttpJsonTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientTest.java index 260de5b2c1c5..d7815674e898 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetService.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetService.java index f30b353e52ae..c9021949226e 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetService.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetServiceImpl.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetServiceImpl.java index f52cbd73cf80..78442283176a 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetServiceImpl.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p1beta1/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientHttpJsonTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientHttpJsonTest.java index 5391e0dd4c66..de0654a7c1bd 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientHttpJsonTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientTest.java index a87c7ef50c66..88810e2aef3d 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetService.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetService.java index 0166c9b4bffb..8bad9259bb07 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetService.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetServiceImpl.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetServiceImpl.java index 73f236c37096..fa10b7effc81 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetServiceImpl.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p2beta1/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientHttpJsonTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientHttpJsonTest.java index fd33e56e4cac..4bdc9370d6ad 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientHttpJsonTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientTest.java index f381140cb602..94d99ddc3c78 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetService.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetService.java index 6bc79f9d91bb..514fdd6df35a 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetService.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetServiceImpl.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetServiceImpl.java index 8a84005fea4c..e80c5128c8d3 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetServiceImpl.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p5beta1/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/AssetServiceClientTest.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/AssetServiceClientTest.java index 1bfbcf6b6279..43eff982074a 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/AssetServiceClientTest.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetService.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetService.java index 32225f27a1e7..fdccb77f7f9f 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetService.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetServiceImpl.java b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetServiceImpl.java index b45ba0011899..69155e42a7df 100644 --- a/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetServiceImpl.java +++ b/java-asset/google-cloud-asset/src/test/java/com/google/cloud/asset/v1p7beta1/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/grpc-google-cloud-asset-v1/pom.xml b/java-asset/grpc-google-cloud-asset-v1/pom.xml index 6225e0474630..afa85e81bf71 100644 --- a/java-asset/grpc-google-cloud-asset-v1/pom.xml +++ b/java-asset/grpc-google-cloud-asset-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-asset-v1 - 3.85.0-SNAPSHOT + 3.86.0 grpc-google-cloud-asset-v1 GRPC library for grpc-google-cloud-asset-v1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/grpc-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceGrpc.java b/java-asset/grpc-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceGrpc.java index 381596e10ce1..104d78781080 100644 --- a/java-asset/grpc-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceGrpc.java +++ b/java-asset/grpc-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/grpc-google-cloud-asset-v1p1beta1/pom.xml b/java-asset/grpc-google-cloud-asset-v1p1beta1/pom.xml index 6f8d88c1abff..d2f2cbd0fa80 100644 --- a/java-asset/grpc-google-cloud-asset-v1p1beta1/pom.xml +++ b/java-asset/grpc-google-cloud-asset-v1p1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-asset-v1p1beta1 - 0.185.0-SNAPSHOT + 0.186.0 grpc-google-cloud-asset-v1p1beta1 GRPC library for grpc-google-cloud-asset-v1p1beta1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/grpc-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceGrpc.java b/java-asset/grpc-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceGrpc.java index 5a9840710377..791e63c451b4 100644 --- a/java-asset/grpc-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceGrpc.java +++ b/java-asset/grpc-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/grpc-google-cloud-asset-v1p2beta1/pom.xml b/java-asset/grpc-google-cloud-asset-v1p2beta1/pom.xml index a766ff8ff4b7..23ee45a5efa9 100644 --- a/java-asset/grpc-google-cloud-asset-v1p2beta1/pom.xml +++ b/java-asset/grpc-google-cloud-asset-v1p2beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-asset-v1p2beta1 - 0.185.0-SNAPSHOT + 0.186.0 grpc-google-cloud-asset-v1p2beta1 GRPC library for grpc-google-cloud-asset-v1p2beta1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/grpc-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceGrpc.java b/java-asset/grpc-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceGrpc.java index 78bbc070371e..74850608b979 100644 --- a/java-asset/grpc-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceGrpc.java +++ b/java-asset/grpc-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/grpc-google-cloud-asset-v1p5beta1/pom.xml b/java-asset/grpc-google-cloud-asset-v1p5beta1/pom.xml index 5678349beaa4..be11a50235a8 100644 --- a/java-asset/grpc-google-cloud-asset-v1p5beta1/pom.xml +++ b/java-asset/grpc-google-cloud-asset-v1p5beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-asset-v1p5beta1 - 0.185.0-SNAPSHOT + 0.186.0 grpc-google-cloud-asset-v1p5beta1 GRPC library for grpc-google-cloud-asset-v1p5beta1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/grpc-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceGrpc.java b/java-asset/grpc-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceGrpc.java index 05d5dc444741..bdaa279533ad 100644 --- a/java-asset/grpc-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceGrpc.java +++ b/java-asset/grpc-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/grpc-google-cloud-asset-v1p7beta1/pom.xml b/java-asset/grpc-google-cloud-asset-v1p7beta1/pom.xml index 0de4b5fb7248..add41059a8b9 100644 --- a/java-asset/grpc-google-cloud-asset-v1p7beta1/pom.xml +++ b/java-asset/grpc-google-cloud-asset-v1p7beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-asset-v1p7beta1 - 3.85.0-SNAPSHOT + 3.86.0 grpc-google-cloud-asset-v1p7beta1 GRPC library for google-cloud-asset com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/grpc-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceGrpc.java b/java-asset/grpc-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceGrpc.java index 968ab8e18a05..e07cba9ad62d 100644 --- a/java-asset/grpc-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceGrpc.java +++ b/java-asset/grpc-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/pom.xml b/java-asset/pom.xml index db04a489406e..409c658e0b34 100644 --- a/java-asset/pom.xml +++ b/java-asset/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-asset-parent pom - 3.85.0-SNAPSHOT + 3.86.0 Google Cloud Asset Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,77 +29,77 @@ com.google.api.grpc proto-google-cloud-asset-v1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc proto-google-cloud-asset-v1p7beta1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc grpc-google-cloud-asset-v1p7beta1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc proto-google-cloud-asset-v1p1beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc proto-google-cloud-asset-v1p2beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc proto-google-cloud-asset-v1p5beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc grpc-google-cloud-asset-v1 - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc grpc-google-cloud-asset-v1p1beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc grpc-google-cloud-asset-v1p2beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.api.grpc grpc-google-cloud-asset-v1p5beta1 - 0.185.0-SNAPSHOT + 0.186.0 com.google.cloud google-cloud-asset - 3.85.0-SNAPSHOT + 3.86.0 com.google.api.grpc proto-google-cloud-orgpolicy-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-identity-accesscontextmanager-v1 - 1.82.0-SNAPSHOT + 1.83.0 com.google.api.grpc proto-google-cloud-os-config-v1 - 2.83.0-SNAPSHOT + 2.84.0 com.google.cloud google-cloud-resourcemanager - 1.83.0-SNAPSHOT + 1.84.0 test diff --git a/java-asset/proto-google-cloud-asset-v1/pom.xml b/java-asset/proto-google-cloud-asset-v1/pom.xml index bba4b8d89b68..ce1834f6c500 100644 --- a/java-asset/proto-google-cloud-asset-v1/pom.xml +++ b/java-asset/proto-google-cloud-asset-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-asset-v1 - 3.85.0-SNAPSHOT + 3.86.0 proto-google-cloud-asset-v1 PROTO library for proto-google-cloud-asset-v1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadata.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadata.java index 34daf69901ff..538051c2ba73 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadata.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadataOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadataOrBuilder.java index 214554b5a27e..44bc4ab66b33 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadataOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequest.java index 60e04f114539..85ec25221c16 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequestOrBuilder.java index bfc12dc2e52b..6413d92eeb23 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponse.java index cb54e238b3bd..3c836fd04834 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponseOrBuilder.java index 01957acfac5f..b58d45351b33 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyLongrunningResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequest.java index 03415dc8343e..834c34007f50 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequestOrBuilder.java index 5993e953dad4..bb1075f324e0 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponse.java index f8da28c48fd0..4e24238f6b1a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponseOrBuilder.java index 191456d3980f..305490bf9aa7 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeIamPolicyResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequest.java index 0e6c18fbee9b..17b7eecb0353 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequestOrBuilder.java index faad17f9813b..19a5e78c5cbd 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponse.java index d595c6a2d699..127c21b66809 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponseOrBuilder.java index a066f0755fef..af729a5b4375 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeMoveResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequest.java index eb2b6ce2eb80..74c1c217da6a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequestOrBuilder.java index e2aae681bf79..71e16221f4c5 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponse.java index ac71e08e8cd7..85fb8dbb20c3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponseOrBuilder.java index 97826944ab26..304fcb2bb693 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPoliciesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequest.java index 68187dd2ce13..91db76af3f47 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequestOrBuilder.java index 39933c89876b..054520713015 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponse.java index c0d3cf401be6..a2ac11b8bb04 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponseOrBuilder.java index 75cf6792c436..a98e10f33621 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequest.java index 1e0052393fd1..80811a4861aa 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequestOrBuilder.java index 1669929f7c12..f05796be2336 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponse.java index dbc80f8fdd46..bc17bd266144 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponseOrBuilder.java index 5f9c3a3dc2e2..a3514beb431f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzeOrgPolicyGovernedContainersResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicy.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicy.java index 4a98cb3fdec6..5d941dce6a72 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicy.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraint.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraint.java index 6fbc22887fd6..e17423044c19 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraint.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraintOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraintOrBuilder.java index 5cb5fd520500..315f4b6694d0 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraintOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyConstraintOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyOrBuilder.java index 872890af778c..df4c3acb54b4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AnalyzerOrgPolicyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Asset.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Asset.java index 1d1c11aa446a..bd271c1f8def 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Asset.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Asset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichment.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichment.java index 582af39fbebc..e6d1887e1a43 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichment.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentOrBuilder.java index 2db5f2c081e9..fa2b1f535c56 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentResourceownersProto.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentResourceownersProto.java index 18a1ccc17b35..d986d82d1e8d 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentResourceownersProto.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetEnrichmentResourceownersProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetOrBuilder.java index ecbd28685e92..a96a7d03d551 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetProto.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetProto.java index 30909d4617c7..b6ea43ef623f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetProto.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceProto.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceProto.java index 4eb79fd34be7..2346232086f1 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceProto.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AssetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResource.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResource.java index 59b25466e428..108145cf15a7 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResource.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResourceOrBuilder.java index 2ef1bfa81ff4..bb35bbd74238 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/AttachedResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequest.java index 282a28164e42..b92755de666a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequestOrBuilder.java index 9579d3e176bd..7787459d0cd1 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponse.java index 35d5b0f09ffa..d05181816405 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponseOrBuilder.java index 92725a801049..3f543fcd476a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetAssetsHistoryResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequest.java index 45820542a676..39238647c7f6 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequestOrBuilder.java index 0651ea8c469e..504017a8cf97 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponse.java index bf5fa5918551..b4915f7b42d5 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponseOrBuilder.java index da22e0bac4a2..b368d1a2e065 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BatchGetEffectiveIamPoliciesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestination.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestination.java index 8f24cdf2d5c5..166ac8c40926 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestination.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestinationOrBuilder.java index 4ddf547dc2ca..39801febfe4f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/BigQueryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluation.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluation.java index d6960daaa53c..e412f75e11d4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluation.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluationOrBuilder.java index 5786849f1946..2fadcf805884 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ConditionEvaluationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ContentType.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ContentType.java index ed60a3b38794..e41da119ae16 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ContentType.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ContentType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequest.java index 90f199fe0aa3..8d5cfe8138c4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequestOrBuilder.java index a858060e306b..2d481e57fc4d 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequest.java index 37b40dd4b0c2..f8b9c1ba6798 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequestOrBuilder.java index b673453e4ba6..715e4142e31c 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/CreateSavedQueryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequest.java index befd72072d56..fa21840bbe22 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequestOrBuilder.java index cc578c5df3f2..51f0fd450713 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequest.java index 3043e3cb1959..1fa4ed496f52 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequestOrBuilder.java index 58fba147cde7..809125069e51 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/DeleteSavedQueryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetails.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetails.java index df599d727b6e..d67fe2c05bc3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetails.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetails.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetailsOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetailsOrBuilder.java index 46a2abf487e3..9f75d0b387d4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetailsOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/EffectiveTagDetailsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequest.java index 351ff42565b8..b8033cca6a3a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequestOrBuilder.java index 04f67617b8eb..cd8add387206 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponse.java index fdc59c4456b7..857d642debdb 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponseOrBuilder.java index e535352096b9..224c16c89b7b 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ExportAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Feed.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Feed.java index 11cd2f649983..dc95931a3fd3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Feed.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Feed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedName.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedName.java index b0c7e9ab40ae..1ac375c62024 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedName.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOrBuilder.java index cb0bb633b375..e705b0f25707 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfig.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfig.java index 33f70f598f5c..fe9cfca0fbba 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfigOrBuilder.java index 8b323ea6440b..489c47b6b0cc 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FeedOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FolderName.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FolderName.java index 551d887189e0..41c31e946a0f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FolderName.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/FolderName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestination.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestination.java index fc60534a2c5a..60da1dd5e793 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestination.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestinationOrBuilder.java index dd24b780eaa3..7077a1c1a136 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResult.java index d0336c83a4ae..b0883b180c88 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResultOrBuilder.java index 72cce9368447..c0977177b587 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GcsOutputResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequest.java index 5149326efb7c..7c028f9ed89d 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequestOrBuilder.java index 7cb611064637..60ad6a84ccde 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequest.java index 02fbb92f90c5..99c58eb09c07 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequestOrBuilder.java index 9291cdc27857..1f73d40b4184 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/GetSavedQueryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfig.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfig.java index eb8544c3385f..e3771b5544a4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfigOrBuilder.java index 815f6452eb59..f2e40ba8513a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQuery.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQuery.java index 1342c4fab166..0c22359855c8 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQuery.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQueryOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQueryOrBuilder.java index 3a62eb7e96b5..364484ad589f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQueryOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResult.java index 56f9ee5276ea..4f1a0ab3b4a3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResultOrBuilder.java index 7554b4356462..5c5860aa555c 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisState.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisState.java index 66d08dcef669..1d3a5ef823f9 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisState.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisState.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisStateOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisStateOrBuilder.java index 451750282253..d49e87231d87 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisStateOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicyAnalysisStateOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResult.java index 829d1488f415..fad81427093a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResultOrBuilder.java index 1461e18f892c..e504a522f12f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/IamPolicySearchResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequest.java index 2f610bdb473c..0b6dd4dfae90 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequestOrBuilder.java index e799341e984e..8e641a863469 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponse.java index ff7a016cbbce..4752bacac7b6 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponseOrBuilder.java index 7d8db4f60cfd..a4d036f437aa 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequest.java index d9b38532e9d8..dd6caedf5bf2 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequestOrBuilder.java index 593c6e71638b..a88d4f76ee04 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponse.java index d11da29808e3..2e02bd0a1529 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponseOrBuilder.java index 7602c2fda53a..2312c6032f37 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListFeedsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequest.java index 0aba1d2eacd1..ffc70120e5f2 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequestOrBuilder.java index d25ac94058f7..008c8d73ffa4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponse.java index 17b38a5adc07..fcb96cf7ec3c 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponseOrBuilder.java index d1d23a7579d7..e8cb06135bd4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ListSavedQueriesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysis.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysis.java index c68a329ee56d..a761efdde10a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysis.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysis.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisOrBuilder.java index 9998bab6eab1..dce924bf1ee3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResult.java index 822eb340c992..cc4011c126a3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResultOrBuilder.java index cad257c70a8f..42ed951961e4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveAnalysisResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpact.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpact.java index 9845c06b2182..52476f1eaac6 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpact.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpact.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpactOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpactOrBuilder.java index 3bcdbb166599..7d47ffd04c51 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpactOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/MoveImpactOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OrganizationName.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OrganizationName.java index ef6517fcccfe..7ceca6182ac2 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OrganizationName.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OrganizationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfig.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfig.java index 6faef42257b8..f2bb7185ca3e 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfigOrBuilder.java index 809507ef26f0..24e30023130c 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResult.java index ea425f431c55..d9fb448a2873 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResultOrBuilder.java index 93d569370fb7..51e0b2b27980 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/OutputResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpec.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpec.java index daaedaae61f5..2500246c358f 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpec.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpecOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpecOrBuilder.java index c262989f40bd..877db40d47b3 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpecOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PartitionSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ProjectName.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ProjectName.java index 96c520382cff..7e9b79905a12 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ProjectName.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ProjectName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestination.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestination.java index 1d68856f9ee7..11dfe0f23697 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestination.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestinationOrBuilder.java index d2dab8f0376f..39f9e309d7d6 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/PubsubDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfig.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfig.java index 42e418ab0e2f..590e1ec14e09 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfigOrBuilder.java index 18ac164af2b2..2e97c4da80dd 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequest.java index 69e179117cf3..9f660bfcddd1 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequestOrBuilder.java index 4ba7d186b3c7..f4d20e3223b8 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponse.java index b6bab294a80b..137486ef29bb 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponseOrBuilder.java index 18bf8244c05e..3be74fb5dde6 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResult.java index 0241001a5819..cbdce50c0e0d 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResultOrBuilder.java index 7aa00b574c43..3360841319da 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/QueryResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAsset.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAsset.java index cd72fc15cb51..a2a432fe1e67 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAsset.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAsset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetOrBuilder.java index e5ffba82f2ea..3d5ba090ecae 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssets.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssets.java index cc65446877bf..66a113793080 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssets.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetsOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetsOrBuilder.java index 34a82447be8d..4ab4c8a7af31 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetsOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedAssetsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResource.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResource.java index c076918809e4..4b7d8037f127 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResource.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourceOrBuilder.java index d534133980ec..692575d794a6 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResources.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResources.java index 8071c94ffd1a..a1327931d243 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResources.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourcesOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourcesOrBuilder.java index 9e4775d66779..291dda706bcc 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourcesOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelatedResourcesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributes.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributes.java index b27d1431b99a..dcfcff75b4ae 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributes.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributesOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributesOrBuilder.java index bd82643ea629..dde93fee3570 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributesOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/RelationshipAttributesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Resource.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Resource.java index 6740a50c6b4c..5bd9b16e0875 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Resource.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Resource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOrBuilder.java index 9ae4468b2f51..19787eeba739 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwners.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwners.java index 15c752c946ad..779f6ef3686e 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwners.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwners.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwnersOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwnersOrBuilder.java index 65a3c957fbb0..5fb35d34285a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwnersOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceOwnersOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResult.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResult.java index 03706daad3f0..95fb00f0f8bc 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResult.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResultOrBuilder.java index e92d5be5b3fa..3a12af996495 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/ResourceSearchResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQuery.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQuery.java index 56076f8c0a90..fd6d9469f6a1 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQuery.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryName.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryName.java index f136b2684e7e..85c8095f1710 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryName.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryOrBuilder.java index 022a37872f37..6dd2074cffcf 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SavedQueryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequest.java index cb03dfec7317..aa1b23494128 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequestOrBuilder.java index 6668fb63bbfd..071990391333 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponse.java index 10cbb8e2159d..08c524f5416a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponseOrBuilder.java index dea2aacb9e03..b06bac324a69 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllIamPoliciesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequest.java index a7f6096338b5..bc95138904dc 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequestOrBuilder.java index c11a97e69807..5366a5aaf43a 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponse.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponse.java index 0bbdb32f8376..f3d43d8b5f49 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponseOrBuilder.java index 0f82c3e1d430..01a2649cd7a1 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/SearchAllResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchema.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchema.java index 47f665fd07b9..934278320662 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchema.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchemaOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchemaOrBuilder.java index ecd2fd10dcc8..e2c5e7c88dbb 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchemaOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableFieldSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchema.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchema.java index 3a2a24fcd02e..62a8255aded8 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchema.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchema.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchemaOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchemaOrBuilder.java index 75f07a1af62e..55f4339fef7b 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchemaOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TableSchemaOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Tag.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Tag.java index 952b4473e55f..abd9876e6f2e 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Tag.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/Tag.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TagOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TagOrBuilder.java index b45a8baab220..7ad3b5264265 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TagOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TagOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAsset.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAsset.java index 235c224c161f..e4998834b3ff 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAsset.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAsset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAssetOrBuilder.java index 0b3d5eaf6c10..f92615ad6225 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TemporalAssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindow.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindow.java index ba3bb3121161..0c71be79feb4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindow.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindowOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindowOrBuilder.java index 6f8f2af07c8f..4b432a12ae1c 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindowOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/TimeWindowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequest.java index 385e29c406f6..8fa12de28992 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequestOrBuilder.java index 475409f5ca09..12b86abd97f4 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequest.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequest.java index 9725707c3737..68797cca2ad0 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequest.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequestOrBuilder.java index 3784cb9a8c16..3eea55e6a388 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/UpdateSavedQueryRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResource.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResource.java index 3a206ca207b2..32376b465ef8 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResource.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResourceOrBuilder.java index 7101edd56209..7de9878192ab 100644 --- a/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/VersionedResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/pom.xml b/java-asset/proto-google-cloud-asset-v1p1beta1/pom.xml index 23db31977093..f71b1660955a 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/pom.xml +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-asset-v1p1beta1 - 0.185.0-SNAPSHOT + 0.186.0 proto-google-cloud-asset-v1p1beta1 PROTO library for proto-google-cloud-asset-v1p1beta1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetProto.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetProto.java index f26a2845d17e..c4e2c26a7f5e 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetProto.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceProto.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceProto.java index 1b3333e413b3..445fe4c0df1e 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceProto.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/AssetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResult.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResult.java index 26062c29fc9c..ef4beceb7399 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResult.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResultOrBuilder.java index 6eec4d432a2a..e99cb3ddcd70 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/IamPolicySearchResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/Permissions.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/Permissions.java index 251fde2439f7..1a57a4f950f5 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/Permissions.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/Permissions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/PermissionsOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/PermissionsOrBuilder.java index eabb632f5de4..70062e192e69 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/PermissionsOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/PermissionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequest.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequest.java index a5b46c81c345..4c6bd15056ad 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequestOrBuilder.java index 33a30e19a7c6..f86d8e953f0d 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponse.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponse.java index 53af12a77cb1..e3ca0fedd77a 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponseOrBuilder.java index 4306f118c0b7..764566789f5a 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllIamPoliciesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequest.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequest.java index af39e3d5f02f..c25aca5d4753 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequestOrBuilder.java index f936453dff32..fadc1057fb44 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponse.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponse.java index 050a8d7bde25..8ee1237049c4 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponseOrBuilder.java index b8f639cd74a7..7d3f22ccdf1e 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/SearchAllResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadata.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadata.java index 3a28bee40c59..b2f8e772addf 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadata.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadataOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadataOrBuilder.java index 4bf630437071..e16878643d79 100644 --- a/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadataOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/StandardResourceMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/pom.xml b/java-asset/proto-google-cloud-asset-v1p2beta1/pom.xml index 8017c1d469c9..98a769c9376c 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/pom.xml +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-asset-v1p2beta1 - 0.185.0-SNAPSHOT + 0.186.0 proto-google-cloud-asset-v1p2beta1 PROTO library for proto-google-cloud-asset-v1p2beta1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Asset.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Asset.java index cccfc712cfa4..eb1fba52f728 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Asset.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Asset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetOrBuilder.java index f642c4d5efce..403823884d8b 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetProto.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetProto.java index 7c24d0972bd7..241b18ba4796 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetProto.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceProto.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceProto.java index 432a178c205d..acbb29b26fb5 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceProto.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/AssetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponse.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponse.java index 09f774823952..b2ad17dec9b5 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponseOrBuilder.java index 00d792a72ff3..1cfba29fac6f 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/BatchGetAssetsHistoryResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ContentType.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ContentType.java index e2922f2dfb7f..e65998c5ee90 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ContentType.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ContentType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequest.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequest.java index e7f9823bbc3d..ed3036a5e99f 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequestOrBuilder.java index f92b2936e64c..eef503bc7d59 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/CreateFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequest.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequest.java index 30eecd76d594..09812ae8de56 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequestOrBuilder.java index 82828e2afac8..7dfc8744f934 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/DeleteFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponse.java index 70303132f106..f8e68c027107 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponseOrBuilder.java index a7fa90eaacf7..9253ab6e8fbb 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ExportAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Feed.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Feed.java index e3ca2c25f956..036c1a62fef9 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Feed.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Feed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedName.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedName.java index 7a678326b034..fd6ecb6a380d 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedName.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOrBuilder.java index 17eabe63960f..e77819e17443 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfig.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfig.java index 675d24ccac51..73466c66e01f 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfigOrBuilder.java index 4d5f9ad8cd3c..c3889d0e4322 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/FeedOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestination.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestination.java index f5504437c611..74fc72673308 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestination.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestinationOrBuilder.java index 61918d0e279a..b27e86cb485a 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequest.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequest.java index 51291a15794f..8f340e14dc08 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequestOrBuilder.java index ef9e2b6e7ced..a0f7a9aa9a43 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/GetFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequest.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequest.java index dc6dd14af196..cdb8eca9dc13 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequestOrBuilder.java index 2890c522bb43..23211b63dd86 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponse.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponse.java index f6174ed0c264..9b85e3420d89 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponseOrBuilder.java index c7bd8716be96..b929cfe60df7 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ListFeedsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfig.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfig.java index fb32325d53b2..a8a81782d6f2 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfigOrBuilder.java index 5b5a8112d1e8..5fe256305260 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/OutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestination.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestination.java index f53bf56addf7..799069493e1e 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestination.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestinationOrBuilder.java index 509e247b214b..a35d1cc91238 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/PubsubDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Resource.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Resource.java index c9167073dfc7..a607ae7b35a4 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Resource.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/Resource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ResourceOrBuilder.java index 6e60c4c02a28..6ec4e16cfdf0 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/ResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAsset.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAsset.java index a01feb756129..99b25af910b4 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAsset.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAsset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAssetOrBuilder.java index 4b852f69b505..36b3ebdb0498 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TemporalAssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindow.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindow.java index e8c30a26a410..bc029e4ca524 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindow.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindowOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindowOrBuilder.java index e297bfcf8954..f57225c58247 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindowOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/TimeWindowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequest.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequest.java index f7a242d74596..31a5f1e43700 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequestOrBuilder.java index 5acfe45b0788..46980cbcfb98 100644 --- a/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p2beta1/src/main/java/com/google/cloud/asset/v1p2beta1/UpdateFeedRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/pom.xml b/java-asset/proto-google-cloud-asset-v1p5beta1/pom.xml index 476b9bddb3bb..9bfb9bf94a4d 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/pom.xml +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-asset-v1p5beta1 - 0.185.0-SNAPSHOT + 0.186.0 proto-google-cloud-asset-v1p5beta1 PROTO library for proto-google-cloud-asset-v1p4beta1 com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Asset.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Asset.java index 4fabb5bf5ea7..c754b8909972 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Asset.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Asset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetOrBuilder.java index ec0a6680f294..e45ac981cc34 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetProto.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetProto.java index d2b9bb1bda1d..927ebe76d872 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetProto.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceProto.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceProto.java index b07018363d87..6119e0abe013 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceProto.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/AssetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ContentType.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ContentType.java index a07e4d02d03e..7093c2cec64d 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ContentType.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ContentType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequest.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequest.java index 92504231c262..56450624be70 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequestOrBuilder.java index e8488c17575f..b12198e3b286 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponse.java index f0539bb2b7f4..dff7c55dd865 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponseOrBuilder.java index 0e2856f5a1f6..cd596105c253 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ListAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Resource.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Resource.java index edfc2ae5232b..f98dbd960bc8 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Resource.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/Resource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ResourceOrBuilder.java index 2aadc8debaa7..d1cdbb29d0b7 100644 --- a/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p5beta1/src/main/java/com/google/cloud/asset/v1p5beta1/ResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/pom.xml b/java-asset/proto-google-cloud-asset-v1p7beta1/pom.xml index 248597b781cc..8b23d8a7d4ae 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/pom.xml +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-asset-v1p7beta1 - 3.85.0-SNAPSHOT + 3.86.0 proto-google-cloud-asset-v1p7beta1 Proto library for google-cloud-asset com.google.cloud google-cloud-asset-parent - 3.85.0-SNAPSHOT + 3.86.0 diff --git a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Asset.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Asset.java index 1157fc6caeae..32b0fb6f426d 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Asset.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Asset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetOrBuilder.java index f9c5716c7414..76c0d3e4d93c 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetProto.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetProto.java index c80fe13aaee4..8ac9bc23f53e 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetProto.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceProto.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceProto.java index 6e8d5b57f91a..88fa172dcd3c 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceProto.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/AssetServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestination.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestination.java index 75fb06a04818..28aaab084729 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestination.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestinationOrBuilder.java index 3feb15ef40d3..aa0fce67c7bb 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/BigQueryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ContentType.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ContentType.java index d5d29b8f489a..2c5df980923f 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ContentType.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ContentType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequest.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequest.java index ea199bb8d425..174b47f56f3f 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequest.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequestOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequestOrBuilder.java index bd734356f8f2..e3fedbb0079c 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequestOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponse.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponse.java index 4ed3df54e2bd..cee86e96a904 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponse.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponseOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponseOrBuilder.java index c33deb5b1c03..269d070238d2 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponseOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ExportAssetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestination.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestination.java index 2c42405269f9..14ca90c8ee5a 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestination.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestinationOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestinationOrBuilder.java index a1dc02da2d22..5bb3ed62b5c8 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestinationOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResult.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResult.java index 37047f293a49..612c6a607627 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResult.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResultOrBuilder.java index dd7b93c791fa..64b3d21c4287 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/GcsOutputResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfig.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfig.java index 6bd940cdb4fd..1c0740a6762a 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfig.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfigOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfigOrBuilder.java index a8736573e26c..d60db64b1205 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfigOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResult.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResult.java index 0dfe653efe2d..5490356f21f2 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResult.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResultOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResultOrBuilder.java index 114bb0c4e02d..be312d63f5a9 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResultOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/OutputResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpec.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpec.java index b5ad2febcd81..afc426773e39 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpec.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpecOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpecOrBuilder.java index 7d2f3e1ddfa0..d52d6f5b552a 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpecOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/PartitionSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAsset.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAsset.java index b8c0334b037a..d8b203b1c6ab 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAsset.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAsset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetOrBuilder.java index 6a670d9919e5..dc17729a640e 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssets.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssets.java index bb242f654232..e689f8a1cb72 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssets.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetsOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetsOrBuilder.java index 75fb580af3ba..142e55a68f5e 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetsOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelatedAssetsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributes.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributes.java index 54e4e6b86d69..55c1705e3e9f 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributes.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributesOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributesOrBuilder.java index 277def9a49c3..9f0280dd2ec8 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributesOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/RelationshipAttributesOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Resource.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Resource.java index c1f042b9114b..5a4255516d05 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Resource.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/Resource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ResourceOrBuilder.java b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ResourceOrBuilder.java index db34a0b58e65..f6ba76698008 100644 --- a/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ResourceOrBuilder.java +++ b/java-asset/proto-google-cloud-asset-v1p7beta1/src/main/java/com/google/cloud/asset/v1p7beta1/ResourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/AsyncAnalyzeIamPolicy.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/AsyncAnalyzeIamPolicy.java index 4e5dc4bb7fe1..e403dc7fcb4a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/AsyncAnalyzeIamPolicy.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/AsyncAnalyzeIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/SyncAnalyzeIamPolicy.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/SyncAnalyzeIamPolicy.java index d60298608db3..681ae707470f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/SyncAnalyzeIamPolicy.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicy/SyncAnalyzeIamPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunning.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunning.java index 46cba62a1fae..e7cf12087f75 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunning.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunningLRO.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunningLRO.java index 60dc2ea520d7..fa5178e866c6 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunningLRO.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/AsyncAnalyzeIamPolicyLongrunningLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/SyncAnalyzeIamPolicyLongrunning.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/SyncAnalyzeIamPolicyLongrunning.java index ad8a9ff50f3c..2b2e7d0891ea 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/SyncAnalyzeIamPolicyLongrunning.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeiampolicylongrunning/SyncAnalyzeIamPolicyLongrunning.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/AsyncAnalyzeMove.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/AsyncAnalyzeMove.java index 55c5ecb5ba78..1d4276e4a260 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/AsyncAnalyzeMove.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/AsyncAnalyzeMove.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/SyncAnalyzeMove.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/SyncAnalyzeMove.java index ecb12fbcfb7b..23a56f317eb7 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/SyncAnalyzeMove.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzemove/SyncAnalyzeMove.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPolicies.java index 051c52a84d75..581bf927f727 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPoliciesPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPoliciesPaged.java index 5a6fea307b8f..48fe1148d1ae 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPoliciesPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/AsyncAnalyzeOrgPoliciesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPolicies.java index 2768f498f34b..00d354f4de16 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPoliciesStringStringString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPoliciesStringStringString.java index f42f308285bd..c01118c2e0ff 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPoliciesStringStringString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicies/SyncAnalyzeOrgPoliciesStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssets.java index cbdc922a6046..24b13c63fb91 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssetsPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssetsPaged.java index 521edf1a2ac5..9d8678ce78cb 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssetsPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/AsyncAnalyzeOrgPolicyGovernedAssetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssets.java index a46b073047ec..2a5c359ef92e 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssetsStringStringString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssetsStringStringString.java index fc07b054e9d2..eab4d1e2bca9 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssetsStringStringString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedassets/SyncAnalyzeOrgPolicyGovernedAssetsStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainers.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainers.java index c2c4a10a574e..f133237b11b2 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainers.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainersPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainersPaged.java index c5de49fbcc26..f8936ad802d0 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainersPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/AsyncAnalyzeOrgPolicyGovernedContainersPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainers.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainers.java index 1450d2ebac3d..8aeebad9fd82 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainers.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainers.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainersStringStringString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainersStringStringString.java index b394adeda22f..28b20063bf05 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainersStringStringString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/analyzeorgpolicygovernedcontainers/SyncAnalyzeOrgPolicyGovernedContainersStringStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/AsyncBatchGetAssetsHistory.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/AsyncBatchGetAssetsHistory.java index caaa1194b8ee..c8d153a95230 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/AsyncBatchGetAssetsHistory.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/AsyncBatchGetAssetsHistory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/SyncBatchGetAssetsHistory.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/SyncBatchGetAssetsHistory.java index 346858d69674..b372f5e48bba 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/SyncBatchGetAssetsHistory.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgetassetshistory/SyncBatchGetAssetsHistory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/AsyncBatchGetEffectiveIamPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/AsyncBatchGetEffectiveIamPolicies.java index 6aba0d020617..6c799bb49a15 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/AsyncBatchGetEffectiveIamPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/AsyncBatchGetEffectiveIamPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/SyncBatchGetEffectiveIamPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/SyncBatchGetEffectiveIamPolicies.java index cfeda113937d..9d73ce0a81a8 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/SyncBatchGetEffectiveIamPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/batchgeteffectiveiampolicies/SyncBatchGetEffectiveIamPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetCredentialsProvider.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetCredentialsProvider.java index dd7aff18119f..b8529b5d8709 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetEndpoint.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetEndpoint.java index ea31e5b5342f..218f2ed7311b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetEndpoint.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateUseHttpJsonTransport.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateUseHttpJsonTransport.java index 2d66b8e71d08..7f72f4c325a1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/AsyncCreateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/AsyncCreateFeed.java index 65eab721688b..a00cc5106a2b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/AsyncCreateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/AsyncCreateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeed.java index 2229e420f362..111570f25014 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeedString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeedString.java index a018f7d65b3a..f33b9d049ca1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeedString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createfeed/SyncCreateFeedString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/AsyncCreateSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/AsyncCreateSavedQuery.java index a07c83eef1d8..80b71efeeb2b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/AsyncCreateSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/AsyncCreateSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQuery.java index 5487c686b3db..45200510647f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryFoldernameSavedqueryString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryFoldernameSavedqueryString.java index c1fe77831cc3..6f8abc590ae8 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryFoldernameSavedqueryString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryFoldernameSavedqueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryOrganizationnameSavedqueryString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryOrganizationnameSavedqueryString.java index 4e776b8b9cd2..e50cbd7758e2 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryOrganizationnameSavedqueryString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryOrganizationnameSavedqueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryProjectnameSavedqueryString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryProjectnameSavedqueryString.java index 893caa09219d..74f63b8a1c15 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryProjectnameSavedqueryString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryProjectnameSavedqueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryStringSavedqueryString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryStringSavedqueryString.java index e7827c327f94..0b613920328f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryStringSavedqueryString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/createsavedquery/SyncCreateSavedQueryStringSavedqueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/AsyncDeleteFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/AsyncDeleteFeed.java index cb0d58d90088..0177969eda59 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/AsyncDeleteFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/AsyncDeleteFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeed.java index e60392712edc..f04f93352382 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedFeedname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedFeedname.java index ed15c258fa5b..985197a14bdb 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedFeedname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedFeedname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedString.java index f989d13a833e..eee64057233c 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletefeed/SyncDeleteFeedString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/AsyncDeleteSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/AsyncDeleteSavedQuery.java index 40d4c44bd321..0dc14db23b4a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/AsyncDeleteSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/AsyncDeleteSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuery.java index b954bed35303..38d7b361e032 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java index 3c313b508fb3..a507da6ca4b6 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQuerySavedqueryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQueryString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQueryString.java index e8921e58106a..4d6bd4a5b656 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQueryString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/deletesavedquery/SyncDeleteSavedQueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssets.java index 10812f07a648..c75391a9d099 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssetsLRO.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssetsLRO.java index 35f9ae9dbc1b..a38f656f0abb 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssetsLRO.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/AsyncExportAssetsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/SyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/SyncExportAssets.java index 58607ac4c354..59724c7c1a9a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/SyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/exportassets/SyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/AsyncGetFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/AsyncGetFeed.java index 9f51a95eef1c..1af189e65e3d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/AsyncGetFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/AsyncGetFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeed.java index 333a6afac1ce..4a63ba6953bf 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedFeedname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedFeedname.java index 94dec8189f81..3bb34ad47af1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedFeedname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedFeedname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedString.java index 27b12b3ecad5..550c45c3ead7 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getfeed/SyncGetFeedString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/AsyncGetSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/AsyncGetSavedQuery.java index 5832fc74f57e..d81993c1d72b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/AsyncGetSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/AsyncGetSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuery.java index 9ef23728eaff..84e71a8cf3cb 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuerySavedqueryname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuerySavedqueryname.java index 4a3332aa34a3..47bd4ec44565 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuerySavedqueryname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQuerySavedqueryname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQueryString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQueryString.java index d5d4ea5354c4..acbf7ee95152 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQueryString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/getsavedquery/SyncGetSavedQueryString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssets.java index 9fc38ae8bcbb..18f6fc983972 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssetsPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssetsPaged.java index 20a776ff1d41..5d80c0d0de2a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssetsPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/AsyncListAssetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssets.java index 5989ecb72b30..ae0e2cef3d09 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsResourcename.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsResourcename.java index 6cfff93d5e03..dd327e31bda7 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsResourcename.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsResourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsString.java index ad5778075094..97c33522334f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listassets/SyncListAssetsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/AsyncListFeeds.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/AsyncListFeeds.java index 8ce8813164e7..ddfc45d5456b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/AsyncListFeeds.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/AsyncListFeeds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeeds.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeeds.java index 6d707cf23ee2..862f0065115b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeeds.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeeds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeedsString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeedsString.java index 5d96d085bd7d..b1380583d06d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeedsString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listfeeds/SyncListFeedsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueries.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueries.java index af3d340f85aa..f1d75339a577 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueries.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueriesPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueriesPaged.java index 4386beba3ca1..6a9ccc996e6c 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueriesPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/AsyncListSavedQueriesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueries.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueries.java index 12104b687065..833fd46be55b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueries.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueries.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesFoldername.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesFoldername.java index d143a83edd61..f0149c71006f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesFoldername.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesFoldername.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesOrganizationname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesOrganizationname.java index c49aef27e6d1..04c9d5075957 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesOrganizationname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesOrganizationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesProjectname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesProjectname.java index 5f865def0b8a..99fbd7618d7c 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesProjectname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesProjectname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesString.java index 28055130064f..52392252e0f6 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/listsavedqueries/SyncListSavedQueriesString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/AsyncQueryAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/AsyncQueryAssets.java index ca7ee2332044..d7c23a8eeddd 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/AsyncQueryAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/AsyncQueryAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/SyncQueryAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/SyncQueryAssets.java index 5027816b32b1..c6c1044cfee1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/SyncQueryAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/queryassets/SyncQueryAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java index 701d8a7c5f7a..6b7cf2113741 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java index ed77f3b822b8..fa43447b627e 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java index 45cd51e41728..bc9b9dabe45d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java index 5aca080da7b4..eef9e3c0b0c1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResources.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResources.java index 6d7cba4dc8d5..3b8f76b96ba1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResources.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java index bd699abb2087..68e53f516cf0 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResources.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResources.java index 2bc56a5bdeef..3c1ac52b3381 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResources.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java index 485286327123..acd6d54e2b89 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/AsyncUpdateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/AsyncUpdateFeed.java index ca50d3c4cb95..c9ed76a108c1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/AsyncUpdateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/AsyncUpdateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeed.java index 1225b221af2a..2e1c54932b08 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeedFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeedFeed.java index e70eb6957367..8a7d6efb4fee 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeedFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatefeed/SyncUpdateFeedFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/AsyncUpdateSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/AsyncUpdateSavedQuery.java index a7702a03fb09..cd3bb1627cb4 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/AsyncUpdateSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/AsyncUpdateSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuery.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuery.java index 3a07bb04f751..874320f385c8 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuery.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuerySavedqueryFieldmask.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuerySavedqueryFieldmask.java index 1946e186fdeb..f68d41bd8be0 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuerySavedqueryFieldmask.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservice/updatesavedquery/SyncUpdateSavedQuerySavedqueryFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java index af6d69ff09dc..110b54d85ec7 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/exportassets/SyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/exportassets/SyncExportAssets.java index 330b9064d649..784e4052a02e 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/exportassets/SyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/assetservicesettings/exportassets/SyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java index f4e9821a0efd..c05389d70c65 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/batchgetassetshistory/SyncBatchGetAssetsHistory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java index d85fb91c38ba..76b4d5960435 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetCredentialsProvider.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetCredentialsProvider.java index 1f6b44615a81..6dfd9efbcb08 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetEndpoint.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetEndpoint.java index 344b534af96e..eb5aad26b001 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetEndpoint.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java index 9547f63eeb36..1ea51dfb3544 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java index 8da64cecb524..746721cddf5b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java index 3f829c36c2fe..17031afda39d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/AsyncSearchAllIamPoliciesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java index 60a9527f138b..8d4738e946ef 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPolicies.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java index e672772f1da8..1d3c5b2e54b3 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchalliampolicies/SyncSearchAllIamPoliciesStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResources.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResources.java index 11bf242268fc..171b387acb91 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResources.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java index 99bb7d02535e..6fd4b2206c0b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/AsyncSearchAllResourcesPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResources.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResources.java index ea96ebbc0c00..f720f7cf2dd3 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResources.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java index b98216348a27..2386d592d4f6 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservice/searchallresources/SyncSearchAllResourcesStringStringListstring.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservicesettings/searchallresources/SyncSearchAllResources.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservicesettings/searchallresources/SyncSearchAllResources.java index 68939302d78e..241ad064da5a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservicesettings/searchallresources/SyncSearchAllResources.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/assetservicesettings/searchallresources/SyncSearchAllResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/stub/assetservicestubsettings/searchallresources/SyncSearchAllResources.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/stub/assetservicestubsettings/searchallresources/SyncSearchAllResources.java index a85d9b4528e8..8d7e1dc656e9 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/stub/assetservicestubsettings/searchallresources/SyncSearchAllResources.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p1beta1/stub/assetservicestubsettings/searchallresources/SyncSearchAllResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetCredentialsProvider.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetCredentialsProvider.java index 479344ad63f1..b9ecae06a18d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetEndpoint.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetEndpoint.java index 91a0b035683b..e980f54effff 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetEndpoint.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java index ccb4cfccb737..f623a8c127f9 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/AsyncCreateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/AsyncCreateFeed.java index 41eaf59eb9d3..04ce388ae033 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/AsyncCreateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/AsyncCreateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeed.java index 795a73bfd285..9acf3999c521 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeedString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeedString.java index b5b1f2ecea93..18db615ce58f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeedString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/createfeed/SyncCreateFeedString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/AsyncDeleteFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/AsyncDeleteFeed.java index 0dabc42a31c3..65ad268eea2c 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/AsyncDeleteFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/AsyncDeleteFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeed.java index 9868caffc333..ad6800cda22d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedFeedname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedFeedname.java index 75ba0a1657c4..9e77d64ae4c8 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedFeedname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedFeedname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedString.java index f16dcdaf5c08..ac370573369a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/deletefeed/SyncDeleteFeedString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/AsyncGetFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/AsyncGetFeed.java index 1a79fbf271d1..e769314f6eaf 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/AsyncGetFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/AsyncGetFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeed.java index 549d7dcde8c8..874cee1093f5 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedFeedname.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedFeedname.java index ada77d7e9647..b09ae4869372 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedFeedname.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedFeedname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedString.java index 16b5481d4b59..7d6014ad2319 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/getfeed/SyncGetFeedString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/AsyncListFeeds.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/AsyncListFeeds.java index 95337a6acdae..aaf8c1755819 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/AsyncListFeeds.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/AsyncListFeeds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeeds.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeeds.java index c02f800dd2d2..5542efe651c2 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeeds.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeeds.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeedsString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeedsString.java index 46c07c0d6544..0014512ef5e1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeedsString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/listfeeds/SyncListFeedsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/AsyncUpdateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/AsyncUpdateFeed.java index 42a4c06582ba..0b321bed81fc 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/AsyncUpdateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/AsyncUpdateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeed.java index 9e922102bd58..364b649b077f 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeedFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeedFeed.java index 450850f15a13..503469dbd900 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeedFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservice/updatefeed/SyncUpdateFeedFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservicesettings/createfeed/SyncCreateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservicesettings/createfeed/SyncCreateFeed.java index e2cb645c8c37..87907b31246a 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservicesettings/createfeed/SyncCreateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/assetservicesettings/createfeed/SyncCreateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/stub/assetservicestubsettings/createfeed/SyncCreateFeed.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/stub/assetservicestubsettings/createfeed/SyncCreateFeed.java index 8742d838787e..32e5061d29c1 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/stub/assetservicestubsettings/createfeed/SyncCreateFeed.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p2beta1/stub/assetservicestubsettings/createfeed/SyncCreateFeed.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetCredentialsProvider.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetCredentialsProvider.java index f0dc9fab62cf..435ec17e7cde 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetEndpoint.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetEndpoint.java index 65c0aaf568ec..14b41c9a5c99 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetEndpoint.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java index dae8610150f0..2ef4361fd2a5 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssets.java index 54428e725a41..c2eb895c0c62 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssetsPaged.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssetsPaged.java index 512cf545fae4..7ac1a061be94 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssetsPaged.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/AsyncListAssetsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssets.java index b3a04bf34bd8..6bc80121d07d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsResourcename.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsResourcename.java index 97311ca08700..8d32471ad791 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsResourcename.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsResourcename.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsString.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsString.java index 93883b89181c..14846056919d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsString.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservice/listassets/SyncListAssetsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservicesettings/listassets/SyncListAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservicesettings/listassets/SyncListAssets.java index e24bc913ae66..e0eefc012e80 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservicesettings/listassets/SyncListAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/assetservicesettings/listassets/SyncListAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/stub/assetservicestubsettings/listassets/SyncListAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/stub/assetservicestubsettings/listassets/SyncListAssets.java index 7fba78d9142c..b5b64cdaf3b3 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/stub/assetservicestubsettings/listassets/SyncListAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p5beta1/stub/assetservicestubsettings/listassets/SyncListAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetCredentialsProvider.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetCredentialsProvider.java index 86ab219ca02b..63e2268f1b67 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetEndpoint.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetEndpoint.java index 807316df0da6..8e5e27386094 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetEndpoint.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssets.java index 86fd5c662fde..acc18111f458 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssetsLRO.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssetsLRO.java index d5856c169a4b..9c322d3892bb 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssetsLRO.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/AsyncExportAssetsLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/SyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/SyncExportAssets.java index bf97fe0d9ff0..1c6ad9cbff6d 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/SyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservice/exportassets/SyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets.java index ad649718da42..d4180d19fab9 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets1.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets1.java index 05b0ecd688c3..94820e109b1b 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets1.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/assetservicesettings/exportassets/SyncExportAssets1.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java index 2a6055d12a17..8b450a0049a9 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets1.java b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets1.java index dfef80c6ea0b..ae5c560905f3 100644 --- a/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets1.java +++ b/java-asset/samples/snippets/generated/com/google/cloud/asset/v1p7beta1/stub/assetservicestubsettings/exportassets/SyncExportAssets1.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/CHANGELOG.md b/java-assured-workloads/CHANGELOG.md index 66b8b6f2e0d2..83e92b3afaa2 100644 --- a/java-assured-workloads/CHANGELOG.md +++ b/java-assured-workloads/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 2.82.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 2.81.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 2.78.0 (2025-10-21) ### Dependencies diff --git a/java-assured-workloads/README.md b/java-assured-workloads/README.md index 3d7c66b115aa..57ed2262ebdd 100644 --- a/java-assured-workloads/README.md +++ b/java-assured-workloads/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-assured-workloads - 2.78.0 + 2.81.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-assured-workloads:2.78.0' +implementation 'com.google.cloud:google-cloud-assured-workloads:2.81.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-assured-workloads" % "2.78.0" +libraryDependencies += "com.google.cloud" % "google-cloud-assured-workloads" % "2.81.0" ``` ## Authentication @@ -169,32 +169,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/assured-workloads/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-assured-workloads/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-assured-workloads.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-assured-workloads/2.78.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-assured-workloads/2.81.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-assured-workloads/google-cloud-assured-workloads-bom/pom.xml b/java-assured-workloads/google-cloud-assured-workloads-bom/pom.xml index 347850ef58b8..dd4875ac8c7d 100644 --- a/java-assured-workloads/google-cloud-assured-workloads-bom/pom.xml +++ b/java-assured-workloads/google-cloud-assured-workloads-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-assured-workloads-bom - 2.81.0-SNAPSHOT + 2.82.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -27,27 +27,27 @@ com.google.cloud google-cloud-assured-workloads - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-assured-workloads-v1beta1 - 0.93.0-SNAPSHOT + 0.94.0 com.google.api.grpc grpc-google-cloud-assured-workloads-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-assured-workloads-v1beta1 - 0.93.0-SNAPSHOT + 0.94.0 com.google.api.grpc proto-google-cloud-assured-workloads-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-assured-workloads/google-cloud-assured-workloads/pom.xml b/java-assured-workloads/google-cloud-assured-workloads/pom.xml index 03a9c0f55568..13d7f76aca55 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/pom.xml +++ b/java-assured-workloads/google-cloud-assured-workloads/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-assured-workloads - 2.81.0-SNAPSHOT + 2.82.0 jar Google Assured Workloads for Government allows you to secure your government workloads and accelerate your path to running compliant workloads on Google Cloud with Assured Workloads for Government. com.google.cloud google-cloud-assured-workloads-parent - 2.81.0-SNAPSHOT + 2.82.0 google-cloud-assured-workloads diff --git a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClient.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClient.java index f5ff944a5f9b..10611a578e42 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClient.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceSettings.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceSettings.java index 712374ebfbe9..c17ce811418d 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceSettings.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/package-info.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/package-info.java index 7984c18e0249..423837054c0c 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/package-info.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStub.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStub.java index 42ea689a6ec6..ca1e78be3f96 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStub.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStubSettings.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStubSettings.java index cdf477ba2567..19a6303e6063 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStubSettings.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/AssuredWorkloadsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -125,8 +125,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java index 73707727125d..769f987e0bc2 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceStub.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceStub.java index fb571910f1e2..78a78b911fb4 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceStub.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/GrpcAssuredWorkloadsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java index cd1e13396805..a48b647c1094 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceStub.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceStub.java index 80569c60d3d2..8aedb5b01560 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceStub.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1/stub/HttpJsonAssuredWorkloadsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClient.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClient.java index b2cfc4736ba5..82a22ebac7b3 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClient.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceSettings.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceSettings.java index e11feaf33c14..5e9ce7ac3962 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceSettings.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -87,8 +87,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/package-info.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/package-info.java index 2cabc419bfa5..ba196b7fac5c 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/package-info.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStub.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStub.java index 26642eb01b14..fd231ba1b5a5 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStub.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStubSettings.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStubSettings.java index d5ea48a11b2d..daf0b7d0e75c 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStubSettings.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/AssuredWorkloadsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -120,8 +120,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java index 62334f3b8f34..634df2dbea3a 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceStub.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceStub.java index 018321b8c65d..9071e5ed8772 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceStub.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/GrpcAssuredWorkloadsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java index 5757ec7b0d90..2fb3f58dfb5b 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceStub.java b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceStub.java index c3afc4d9d505..c83237423b3d 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceStub.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/main/java/com/google/cloud/assuredworkloads/v1beta1/stub/HttpJsonAssuredWorkloadsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientHttpJsonTest.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientHttpJsonTest.java index 16ac6d0e54c1..fc8d7ab95c94 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientHttpJsonTest.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientTest.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientTest.java index 7fd039d6ebc3..542035278a03 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientTest.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsService.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsService.java index 7082724e92f0..393f073090c4 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsService.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsServiceImpl.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsServiceImpl.java index 6c244bce3454..8c5894e4222e 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsServiceImpl.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1/MockAssuredWorkloadsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientHttpJsonTest.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientHttpJsonTest.java index 1124b06eb7bd..f4628d73d210 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientHttpJsonTest.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientTest.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientTest.java index 0e657edb993b..0782aa6e81a2 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientTest.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsService.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsService.java index 7b9c02aebeef..def425828d17 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsService.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsServiceImpl.java b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsServiceImpl.java index 3c3ac7cc40fe..3dbad0f3e6ef 100644 --- a/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsServiceImpl.java +++ b/java-assured-workloads/google-cloud-assured-workloads/src/test/java/com/google/cloud/assuredworkloads/v1beta1/MockAssuredWorkloadsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/pom.xml b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/pom.xml index 07ec6b17ecbe..76d8d08eac3c 100644 --- a/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/pom.xml +++ b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-assured-workloads-v1 - 2.81.0-SNAPSHOT + 2.82.0 grpc-google-cloud-assured-workloads-v1 GRPC library for google-cloud-assured-workloads com.google.cloud google-cloud-assured-workloads-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceGrpc.java b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceGrpc.java index 0b9539186395..6765beccc9d4 100644 --- a/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceGrpc.java +++ b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredWorkloadsServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/pom.xml b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/pom.xml index 6a0b0b32d622..7a2bae092c5d 100644 --- a/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/pom.xml +++ b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-assured-workloads-v1beta1 - 0.93.0-SNAPSHOT + 0.94.0 grpc-google-cloud-assured-workloads-v1beta1 GRPC library for google-cloud-assured-workloads com.google.cloud google-cloud-assured-workloads-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceGrpc.java b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceGrpc.java index 2f6444ba1cb8..261eeb4ee2c9 100644 --- a/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceGrpc.java +++ b/java-assured-workloads/grpc-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredWorkloadsServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/pom.xml b/java-assured-workloads/pom.xml index e89baedab8d8..17bbfa0aca4a 100644 --- a/java-assured-workloads/pom.xml +++ b/java-assured-workloads/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-assured-workloads-parent pom - 2.81.0-SNAPSHOT + 2.82.0 Google Assured Workloads for Government Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,27 +29,27 @@ com.google.cloud google-cloud-assured-workloads - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-assured-workloads-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-assured-workloads-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-assured-workloads-v1beta1 - 0.93.0-SNAPSHOT + 0.94.0 com.google.api.grpc grpc-google-cloud-assured-workloads-v1beta1 - 0.93.0-SNAPSHOT + 0.94.0 diff --git a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/pom.xml b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/pom.xml index 17d3f99a76f9..99afb39d6509 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/pom.xml +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-assured-workloads-v1 - 2.81.0-SNAPSHOT + 2.82.0 proto-google-cloud-assured-workloads-v1 Proto library for google-cloud-assured-workloads com.google.cloud google-cloud-assured-workloads-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequest.java index dd06db904e19..0d965585efce 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequestOrBuilder.java index 80ab7e1556bb..1c3e63a474d6 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponse.java index edca4a3adefa..b25bcde31a89 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponseOrBuilder.java index d769e04408cf..aa09d26f7b94 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AcknowledgeViolationResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredworkloadsProto.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredworkloadsProto.java index fae9d38d3674..d1f8fa4458cc 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredworkloadsProto.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/AssuredworkloadsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadata.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadata.java index f746bc102cf7..0031374b17ec 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadata.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadataOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadataOrBuilder.java index d438073ed47c..7684cd980d0b 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadataOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequest.java index 0ddf85dae81a..8c6e816247a3 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequestOrBuilder.java index 851fa64696e5..3a539360e6f2 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/CreateWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequest.java index 72e4ce78130f..01114fc45026 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequestOrBuilder.java index 36f02ba48e64..df71204ae7a8 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/DeleteWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequest.java index 95d394f0f2de..03f86d4599b3 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequestOrBuilder.java index 3357b026f79a..9690980a8d00 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetViolationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequest.java index daf8a9ea7d10..2023ba514307 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequestOrBuilder.java index 60b4eef3ed77..6eea3cc8ba2d 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/GetWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequest.java index 5b80950b5450..dc91449fd28f 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequestOrBuilder.java index 74146c4d48d5..b0f6aadbf66f 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponse.java index 172579631c49..5bf4a02ff369 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponseOrBuilder.java index 6b5248370e84..d94bba18fa7d 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListViolationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequest.java index 68dacff4a466..4af222be6e72 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequestOrBuilder.java index f16092b4db9c..67ae2bd6e1ba 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponse.java index d8721d899314..48cafec2ffbe 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponseOrBuilder.java index 6c46d8da6c4a..a569a464a8e9 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ListWorkloadsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/LocationName.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/LocationName.java index 0a4cce5d3264..a4c2ff27a9f3 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/LocationName.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequest.java index 4dc6aeda443a..d4f6f55c8276 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequestOrBuilder.java index 962a1a12cad3..22fab90dfc80 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponse.java index 814685957050..be26cc86bf5e 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponseOrBuilder.java index 0c2c944ac374..463a76f90e22 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/RestrictAllowedResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindow.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindow.java index 3b937a719233..a2775c34e63d 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindow.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindow.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindowOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindowOrBuilder.java index e97f245ea275..d6c65a92c0be 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindowOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/TimeWindowOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequest.java index d71d1a8cfd3c..0751e2ca4bd7 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequestOrBuilder.java index 81e6aece602e..b95021d6a9ca 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/UpdateWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Violation.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Violation.java index 8ee3f1fc9221..41dee09bd802 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Violation.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Violation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationName.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationName.java index 04636120dfd0..a5f9d14e35fb 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationName.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationOrBuilder.java index c17016afb194..2ce102db3acb 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/ViolationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Workload.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Workload.java index aa34fc424a64..abce0b245fa8 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Workload.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/Workload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadName.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadName.java index dcc870138783..1afd45c867d8 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadName.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadOrBuilder.java index 4a86d7c9cf70..70cfa6db93ca 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1/src/main/java/com/google/cloud/assuredworkloads/v1/WorkloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/pom.xml b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/pom.xml index e4180637fdec..67bcc0814845 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/pom.xml +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-assured-workloads-v1beta1 - 0.93.0-SNAPSHOT + 0.94.0 proto-google-cloud-assured-workloads-v1beta1 Proto library for google-cloud-assured-workloads com.google.cloud google-cloud-assured-workloads-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequest.java index 1c9c60f4c1d7..962299d2b260 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequestOrBuilder.java index a579018edf7c..7e5bb3289a45 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponse.java index d871c582d6a2..7fede94f3ecc 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponseOrBuilder.java index 24f9c31b3047..48320e605633 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AnalyzeWorkloadMoveResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsProto.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsProto.java index 0fe685f04b7f..9358a8dee558 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsProto.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsServiceProto.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsServiceProto.java index 2c83ec906f5f..f50372ce70a9 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsServiceProto.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/AssuredworkloadsServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadata.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadata.java index c0904c428e9d..31f0c8c95d39 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadata.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadataOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadataOrBuilder.java index 347fcde01ca2..6d54c14cdf3e 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadataOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequest.java index d04c51d4c8f1..399b5a9819fd 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequestOrBuilder.java index b01c0a468c1a..610baf16e89d 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/CreateWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequest.java index 9ed89d1b2191..171d21ab3739 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequestOrBuilder.java index fa560310d0a8..631ad3ff825e 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/DeleteWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequest.java index cf3f2d3e7c9c..19dcfb87f4bc 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequestOrBuilder.java index 06fb9c96cbf3..795a6ab76b97 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/GetWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequest.java index da9beb8afb2d..c72225a35c9b 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequestOrBuilder.java index 18a888823070..e7ff802999ed 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponse.java index f582d4ca166d..9583e04ccad4 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponseOrBuilder.java index c5fd821c60ad..a7c6df197bba 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/ListWorkloadsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/LocationName.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/LocationName.java index 6901ca873b28..645283929078 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/LocationName.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequest.java index 334b55ce0fa8..48e3bddc375c 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequestOrBuilder.java index fd5266bdcee9..4783fe8f4950 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponse.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponse.java index aa11acc3ab8e..cee0a68352e2 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponse.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponseOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponseOrBuilder.java index e2c22232d491..92f047d98b14 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponseOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/RestrictAllowedResourcesResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequest.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequest.java index 3697633d60d8..8f0d9612dcd4 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequest.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequestOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequestOrBuilder.java index 81d864d874e3..fb20c44e7f37 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequestOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/UpdateWorkloadRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/Workload.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/Workload.java index e01d3e42fb76..378af59a5b21 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/Workload.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/Workload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadName.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadName.java index 15f0a8b2a8ef..2bb050eaae76 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadName.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadOrBuilder.java b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadOrBuilder.java index 8baa226f0658..365dfb8230ac 100644 --- a/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadOrBuilder.java +++ b/java-assured-workloads/proto-google-cloud-assured-workloads-v1beta1/src/main/java/com/google/cloud/assuredworkloads/v1beta1/WorkloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/AsyncAcknowledgeViolation.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/AsyncAcknowledgeViolation.java index 3c05377e459e..4989af7e06f1 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/AsyncAcknowledgeViolation.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/AsyncAcknowledgeViolation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/SyncAcknowledgeViolation.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/SyncAcknowledgeViolation.java index af10bfaecee0..cbb637fa5aaa 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/SyncAcknowledgeViolation.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/acknowledgeviolation/SyncAcknowledgeViolation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java index d1aeb4419acd..55e4265fde69 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java index 263222087a48..9fb879e98a0f 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java index 3aa14301f93f..182a5a226e60 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java index cced8c9498a3..2fc09045a107 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java index d85d12f26576..b9d06a31837e 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java index 71e1c06ce1f6..2851f36a919c 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java index dd12e793a1b9..fc8e4dea8be8 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java index f5c63690051a..1c6078718004 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java index f6d22414e0e0..2d0f94fda29d 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java index 457763630490..c861b6ef3222 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java index 34b17a4dc28c..aa425fb46323 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java index 9814d2b98b0d..43ccac983b59 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/AsyncGetViolation.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/AsyncGetViolation.java index 6a6d22f65212..123b50f4a80a 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/AsyncGetViolation.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/AsyncGetViolation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolation.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolation.java index 0dcf78456fc4..3ad6d5118ff0 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolation.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationString.java index c4e36856396a..e74c4d4238ac 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationViolationname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationViolationname.java index 69ef33603f4c..841992d2b286 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationViolationname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getviolation/SyncGetViolationViolationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java index 406ffb5fa613..3788d2c4ea4d 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkload.java index 581b453b2832..1afbff9427b4 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java index e6c3b00a04c7..0e966c2ba98f 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java index 7ca76ee2483a..6d33ac12b9bb 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolations.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolations.java index 8e63c70df6be..7ead63ee622d 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolations.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolationsPaged.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolationsPaged.java index 6f1d568b7558..9049254295fa 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolationsPaged.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/AsyncListViolationsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolations.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolations.java index 137c53b855cd..43e554a9e0e3 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolations.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsString.java index 180ddf4a2240..918ecafe5824 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsWorkloadname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsWorkloadname.java index 1b592e84ef73..3f1d7906ddce 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsWorkloadname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listviolations/SyncListViolationsWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java index de2a2ed6d21c..8adaf443d557 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java index 8bc0f8e692fa..09ea51399999 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java index fe4e6ee59315..d95c0f50ef79 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java index 7fae2b656cfb..2b654d6c25fd 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java index ecdb116aba89..92dd803405f0 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java index a9f2241a7e62..97dc39993905 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java index 2ccae89dbf1a..3ee22a126876 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java index df573297db24..01ae95a4cbce 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java index 78473fee30a1..2f4c35cc9474 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java index fd282c24ea4d..c7be4b7260d0 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java index a5d8887dd3bc..455d0c61490b 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java index bf99f440e5da..1fd7585df487 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java index 5c252300b67a..9c0841defdda 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java index db0a44daf3e3..25b5ab2fd896 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/AsyncAnalyzeWorkloadMove.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/AsyncAnalyzeWorkloadMove.java index 757a8ec70609..d1051216fb7c 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/AsyncAnalyzeWorkloadMove.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/AsyncAnalyzeWorkloadMove.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMove.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMove.java index f845214b07f6..193ac1bad2e7 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMove.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMove.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMoveStringString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMoveStringString.java index d696a17baf4e..20bdfaf978ae 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMoveStringString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/analyzeworkloadmove/SyncAnalyzeWorkloadMoveStringString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java index 86ea13eecec9..71d001b4890c 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetCredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java index ff4f050b1f2c..b4f15bfd1a60 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateSetEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java index 88c16cb8fe75..08161f6ffa8c 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/create/SyncCreateUseHttpJsonTransport.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java index 01ab8859aad6..1dec76982627 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java index ca3e43f7b50a..43fc3307eb65 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/AsyncCreateWorkloadLRO.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java index 413322b988d4..0d957365888c 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java index 6d2271e6b290..8cf32ab2f659 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadLocationnameWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java index 7b096d1e2d7b..a6a6fc441745 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/createworkload/SyncCreateWorkloadStringWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java index 0dee7ecd56f6..264bbefb2651 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/AsyncDeleteWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java index b94e5171e2a8..929eb5ebc113 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java index 0d6a6d621ce0..31b8ac731770 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java index 13e20e31151b..ced313438d12 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/deleteworkload/SyncDeleteWorkloadWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java index f2bbd91d2538..d09a64337e58 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/AsyncGetWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkload.java index f9d9f40b0e37..fae0a99faea9 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java index 84a9ee90c9d1..a445f0512bc9 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java index 714635ce6a6f..a0bd55480286 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/getworkload/SyncGetWorkloadWorkloadname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java index 59ef40d9bcd8..4a6cb4e2b0cb 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java index ee3788cb3954..7cc2dfe00a91 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/AsyncListWorkloadsPaged.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java index 4c0f8f2e7559..8451ab5f53bb 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloads.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java index 51f479e5a319..9e7faa3c29a5 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsLocationname.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java index 646d5c7e8a8b..a2d1674b200e 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/listworkloads/SyncListWorkloadsString.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java index eda958d4d1d3..e69b213a07c0 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/AsyncRestrictAllowedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java index fd6e0d5713bb..51fbf38dd5cc 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/restrictallowedresources/SyncRestrictAllowedResources.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java index d1f9f18466c0..8012ccd010aa 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/AsyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java index 236339919499..7fda3aca057a 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java index f89c15c3f90e..c298778c1dfa 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservice/updateworkload/SyncUpdateWorkloadWorkloadFieldmask.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java index 60d7c81c8434..c347d535621e 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java index fa20f12500d6..6b88f1fd5104 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/assuredworkloadsservicesettings/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java index a4caead96cd9..17bc1c0420c6 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/createworkload/SyncCreateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java index a4ef2514034e..949e67ee9bc5 100644 --- a/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java +++ b/java-assured-workloads/samples/snippets/generated/com/google/cloud/assuredworkloads/v1beta1/stub/assuredworkloadsservicestubsettings/updateworkload/SyncUpdateWorkload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/CHANGELOG.md b/java-automl/CHANGELOG.md index 7c7d70c760c8..6b0705008e47 100644 --- a/java-automl/CHANGELOG.md +++ b/java-automl/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 2.82.0 (2026-01-15) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.55.1 ([#11863](https://github.com/googleapis/google-cloud-java/issues/11863)) ([50cda6e](https://github.com/googleapis/google-cloud-java/commit/50cda6ec7be56bf1900737a6aaf12fc494be20c2)) + + +## 2.81.0 (2025-12-16) + +### Dependencies + +* update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ([#11819](https://github.com/googleapis/google-cloud-java/issues/11819)) ([f32924a](https://github.com/googleapis/google-cloud-java/commit/f32924af0899a0b34646e88ffa8c527163b3bb24)) + + ## 2.78.0 (2025-10-21) ### Dependencies diff --git a/java-automl/README.md b/java-automl/README.md index 058ee8fc4d85..5cb0fce072ea 100644 --- a/java-automl/README.md +++ b/java-automl/README.md @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file: com.google.cloud libraries-bom - 26.71.0 + 26.73.0 pom import @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-automl - 2.78.0 + 2.81.0 ``` If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-automl:2.78.0' +implementation 'com.google.cloud:google-cloud-automl:2.81.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-automl" % "2.78.0" +libraryDependencies += "com.google.cloud" % "google-cloud-automl" % "2.81.0" ``` ## Authentication @@ -180,32 +180,13 @@ information. Apache 2.0 - See [LICENSE][license] for more information. -## CI Status - -Java Version | Status ------------- | ------ -Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2] -Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3] -Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4] -Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] - Java is a registered trademark of Oracle and/or its affiliates. [product-docs]: https://cloud.google.com/automl/docs/ [javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-automl/latest/overview -[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg -[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html -[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg -[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html -[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg -[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html -[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg -[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html -[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg -[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html [stability-image]: https://img.shields.io/badge/stability-stable-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-automl.svg -[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-automl/2.78.0 +[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-automl/2.81.0 [authentication]: https://github.com/googleapis/google-cloud-java#authentication [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles diff --git a/java-automl/google-cloud-automl-bom/pom.xml b/java-automl/google-cloud-automl-bom/pom.xml index 125fc2fc72db..5a0cb8c3a9bb 100644 --- a/java-automl/google-cloud-automl-bom/pom.xml +++ b/java-automl/google-cloud-automl-bom/pom.xml @@ -3,13 +3,13 @@ 4.0.0 com.google.cloud google-cloud-automl-bom - 2.81.0-SNAPSHOT + 2.82.0 pom com.google.cloud google-cloud-pom-parent - 1.75.0-SNAPSHOT + 1.76.0 ../../google-cloud-pom-parent/pom.xml @@ -23,27 +23,27 @@ com.google.cloud google-cloud-automl - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.168.0-SNAPSHOT + 0.169.0 com.google.api.grpc grpc-google-cloud-automl-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.168.0-SNAPSHOT + 0.169.0 com.google.api.grpc proto-google-cloud-automl-v1 - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-automl/google-cloud-automl/pom.xml b/java-automl/google-cloud-automl/pom.xml index 7f5d72667a23..9eb5457a05db 100644 --- a/java-automl/google-cloud-automl/pom.xml +++ b/java-automl/google-cloud-automl/pom.xml @@ -3,14 +3,14 @@ 4.0.0 com.google.cloud google-cloud-automl - 2.81.0-SNAPSHOT + 2.82.0 jar Google Cloud AutoML Java idiomatic client for Google Cloud Auto ML com.google.cloud google-cloud-automl-parent - 2.81.0-SNAPSHOT + 2.82.0 google-cloud-automl diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlClient.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlClient.java index 4270917a1b6b..95d8c70fda38 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlClient.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlSettings.java index d3f1587b5b89..56b3ca588de4 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/AutoMlSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -86,8 +86,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceClient.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceClient.java index 117cfad1f97b..d9fcd1b7c75b 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceClient.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceSettings.java index 23e2f18500cc..f93d97cd0305 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/PredictionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/package-info.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/package-info.java index 552de986fe18..4bf76b012386 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/package-info.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStub.java index 5ad7584890be..e44091cd47c1 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStubSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStubSettings.java index 26815cce3843..e4c03ebae4f4 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStubSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/AutoMlStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -133,8 +133,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlCallableFactory.java index 56372f581af5..6fc288d713d8 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlStub.java index 9cfd130c6ce8..22363f05767a 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcAutoMlStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceCallableFactory.java index 0ec54fb232e4..238ba429c7fa 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceStub.java index 1851d0bb27de..6e749922fd60 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/GrpcPredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlCallableFactory.java index ee9e2aabe021..d8ffee2a02c6 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlStub.java index 3b36282a3096..efff56c63bd8 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonAutoMlStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceCallableFactory.java index 5df8d9add0ff..fd61fc8be9f1 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceStub.java index 44654488435d..e68864b675a1 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/HttpJsonPredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStub.java index e161b0964c53..fe913fbb5e7b 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStubSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStubSettings.java index dfb051a7f13c..238cb6d4d21e 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStubSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1/stub/PredictionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlClient.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlClient.java index 7c2fd09ce9ad..eabd1f160835 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlClient.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlSettings.java index 3c0e050dd72b..d6f752034159 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/AutoMlSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceClient.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceClient.java index 6ab306e8f7be..7614d2828bca 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceClient.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceSettings.java index 200de51feb2f..c863747f0efb 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/package-info.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/package-info.java index 7a571afbd2ef..14641e7a6f76 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/package-info.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStub.java index e572b8eeaf15..ea36d016d131 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStubSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStubSettings.java index df7466efb982..0e34e3030baa 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStubSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/AutoMlStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -145,8 +145,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlCallableFactory.java index 1a2347c8805b..33bf0e720d55 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlStub.java index beb07397758f..6435781086ac 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcAutoMlStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceCallableFactory.java index 88f1b3d2543f..6d7654ad714b 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceStub.java index a21807dda4f5..b2d2d4c933d3 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/GrpcPredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlCallableFactory.java index 178ec72ac0e3..6ccca4398c54 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlStub.java index 89c83184f3e7..11180b4594c7 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonAutoMlStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceCallableFactory.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceCallableFactory.java index 8b614177cb42..d5dd5b7a9b99 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceCallableFactory.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceStub.java index a7a89b291c0b..bc15aa7d842e 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/HttpJsonPredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStub.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStub.java index cab732504310..ed041a9aed7d 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStub.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStubSettings.java b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStubSettings.java index 3a676b5e978e..6d6a257b80cd 100644 --- a/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStubSettings.java +++ b/java-automl/google-cloud-automl/src/main/java/com/google/cloud/automl/v1beta1/stub/PredictionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientHttpJsonTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientHttpJsonTest.java index fad49d9c2463..a261ce0d1523 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientHttpJsonTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientTest.java index 6e08efdab1d2..a406419682f9 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/AutoMlClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMl.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMl.java index a0293208cbbe..1588dfa1c1d1 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMl.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMlImpl.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMlImpl.java index 5dbd3770d3de..77b76ccd9730 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMlImpl.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockAutoMlImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionService.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionService.java index bd44536232bc..7822f85322fb 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionService.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionServiceImpl.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionServiceImpl.java index 6b792091c4ee..67780ba3aba9 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionServiceImpl.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/MockPredictionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientHttpJsonTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientHttpJsonTest.java index 38af5bfa38c2..97e1c756f299 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientHttpJsonTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientTest.java index a74e5d31d3d5..3f02dbd1b515 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1/PredictionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientHttpJsonTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientHttpJsonTest.java index 076939c1a1bc..9ace1c46ef2b 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientHttpJsonTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientTest.java index 18c64fc49d61..3aea09b944a6 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/AutoMlClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMl.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMl.java index 5bdea1e51e21..7a6574a84078 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMl.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMlImpl.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMlImpl.java index 9dd33d3a83b9..15e5b789b054 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMlImpl.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockAutoMlImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionService.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionService.java index 6b024545ceb0..1852f2572ce7 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionService.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionServiceImpl.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionServiceImpl.java index 1ec35bfeabe8..d49f223983b1 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionServiceImpl.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/MockPredictionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientHttpJsonTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientHttpJsonTest.java index 486bb222f4ed..70dad3737e8a 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientHttpJsonTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientHttpJsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientTest.java b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientTest.java index 7ea6fb28c212..165d8cd8dd6b 100644 --- a/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientTest.java +++ b/java-automl/google-cloud-automl/src/test/java/com/google/cloud/automl/v1beta1/PredictionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/grpc-google-cloud-automl-v1/pom.xml b/java-automl/grpc-google-cloud-automl-v1/pom.xml index 17ff6a09fa3d..3590e5110a18 100644 --- a/java-automl/grpc-google-cloud-automl-v1/pom.xml +++ b/java-automl/grpc-google-cloud-automl-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-automl-v1 - 2.81.0-SNAPSHOT + 2.82.0 grpc-google-cloud-automl-v1 GRPC library for grpc-google-cloud-automl-v1 com.google.cloud google-cloud-automl-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlGrpc.java b/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlGrpc.java index e0b148f65930..07821ab8f22f 100644 --- a/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlGrpc.java +++ b/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceGrpc.java b/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceGrpc.java index 9c5268ab50c3..0f927ba73bb9 100644 --- a/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceGrpc.java +++ b/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/grpc-google-cloud-automl-v1beta1/pom.xml b/java-automl/grpc-google-cloud-automl-v1beta1/pom.xml index 4c0f5903bd8b..96efb130bedb 100644 --- a/java-automl/grpc-google-cloud-automl-v1beta1/pom.xml +++ b/java-automl/grpc-google-cloud-automl-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.168.0-SNAPSHOT + 0.169.0 grpc-google-cloud-automl-v1beta1 GRPC library for grpc-google-cloud-automl-v1beta1 com.google.cloud google-cloud-automl-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlGrpc.java b/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlGrpc.java index 3400cc2810b6..1982d81430f5 100644 --- a/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlGrpc.java +++ b/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceGrpc.java b/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceGrpc.java index a7c54dba366f..45bf78e42c13 100644 --- a/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceGrpc.java +++ b/java-automl/grpc-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictionServiceGrpc.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/pom.xml b/java-automl/pom.xml index 23969703a22e..e3b11e8eb1fe 100644 --- a/java-automl/pom.xml +++ b/java-automl/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-automl-parent pom - 2.81.0-SNAPSHOT + 2.82.0 Google Cloud AutoML Parent Java idiomatic client for Google Cloud Platform services. @@ -13,7 +13,7 @@ com.google.cloud google-cloud-jar-parent - 1.75.0-SNAPSHOT + 1.76.0 ../google-cloud-jar-parent/pom.xml @@ -29,27 +29,27 @@ com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.168.0-SNAPSHOT + 0.169.0 com.google.api.grpc proto-google-cloud-automl-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.api.grpc grpc-google-cloud-automl-v1beta1 - 0.168.0-SNAPSHOT + 0.169.0 com.google.api.grpc grpc-google-cloud-automl-v1 - 2.81.0-SNAPSHOT + 2.82.0 com.google.cloud google-cloud-automl - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-automl/proto-google-cloud-automl-v1/pom.xml b/java-automl/proto-google-cloud-automl-v1/pom.xml index 8ae05aada4a8..d3a391317bc6 100644 --- a/java-automl/proto-google-cloud-automl-v1/pom.xml +++ b/java-automl/proto-google-cloud-automl-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-automl-v1 - 2.81.0-SNAPSHOT + 2.82.0 proto-google-cloud-automl-v1 PROTO library for proto-google-cloud-automl-v1 com.google.cloud google-cloud-automl-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayload.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayload.java index 94c6b1bdd03f..675ea4acfda8 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayload.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOrBuilder.java index 196ff653e231..717a37a9cd40 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOuterClass.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOuterClass.java index df7fda5a3a3f..7bc2223d9880 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationPayloadOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpec.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpec.java index 789a3594328d..dd07cdebf983 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpec.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecName.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecName.java index 934dab06d924..cbca89e316ef 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecName.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOrBuilder.java index eff0651d2c5c..b40ec4f36bfc 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOuterClass.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOuterClass.java index 671c332826f0..41907c29bac9 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AnnotationSpecOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlProto.java index e364400a6b16..f41fe8f29f4a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/AutoMlProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfig.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfig.java index 65fdd85a6da6..becd5a3865c5 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfigOrBuilder.java index 918820fe3261..6c905d6e29d8 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictInputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadata.java index af8500daa5d5..beee62e96edf 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadataOrBuilder.java index b4d8a312c716..5760ccaa7bf3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfig.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfig.java index 9b587023a009..816003142f65 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfigOrBuilder.java index 5053043e2bb6..4a4f38526c50 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequest.java index 3c4e5b3deb5d..ac424a0e30fb 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequestOrBuilder.java index 950e1c298470..4871fe03d3f2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResult.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResult.java index dac7d12082c6..8c6632213941 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResult.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResultOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResultOrBuilder.java index 89bf59360a2c..2989fad5ab47 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResultOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntry.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntry.java index 400fd70aa198..d90d9f589f2d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntry.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntryOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntryOrBuilder.java index 1ac91e2fcfe0..095536082981 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntryOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingBoxMetricsEntryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPoly.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPoly.java index 1325e1f2a159..eead730c0709 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPoly.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPoly.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPolyOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPolyOrBuilder.java index 3e040ae3d99d..cff7502f8bb6 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPolyOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BoundingPolyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotation.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotation.java index 916edf6ab3e3..cfd8092712c4 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotation.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotationOrBuilder.java index 130e480310ef..f27b85a07a6f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetrics.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetrics.java index 3c2643a5674a..35f5197b40a4 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetrics.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetricsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetricsOrBuilder.java index ab9d937d6b6f..8349b22afff8 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetricsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationEvaluationMetricsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationProto.java index 11b9bf475407..ee25ed4750d1 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationType.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationType.java index e90535cd52d6..5a2c89242e9d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationType.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ClassificationType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadata.java index 723d0c6bf499..32a9621be304 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadataOrBuilder.java index ea3bcb810f52..93a2bb8a9cdc 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequest.java index c4ed4ed2dbc1..c58f4735ff42 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequestOrBuilder.java index 6cbde3e58104..d878c3fe8d3b 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadata.java index ab75e0e50b90..4327735b834e 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadataOrBuilder.java index 1b39186e7db4..9afa148293d2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequest.java index 70f7b1189433..ff8d39da64ea 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequestOrBuilder.java index 813d71cf511b..6160eabc7f49 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/CreateModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DataItems.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DataItems.java index b782492e1e13..5e8c7ab699c4 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DataItems.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Dataset.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Dataset.java index 18d9fc65b5f1..9e7ce217c58b 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Dataset.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Dataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetName.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetName.java index 9acba68c94dc..1cf5dc95330e 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetName.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOrBuilder.java index 79c4da670b42..83b596d0e7cf 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOuterClass.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOuterClass.java index 67eb8ee216e3..64f7495d4f98 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DatasetOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequest.java index cff08bf332b1..025d837fad18 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequestOrBuilder.java index b6187bafa175..058d8f793adb 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequest.java index 73724a054420..ceae8a1b8403 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequestOrBuilder.java index 6ddf81d10aa7..016262a8daf7 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadata.java index fe9d952999d4..91aa39584673 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadataOrBuilder.java index b09767993462..54d2c96a9a87 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeleteOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadata.java index 89fd133dbafd..08c6430c7660 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadataOrBuilder.java index 4fc8f1431339..915d5048d656 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequest.java index eb387700eb39..ca884074a0d0 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequestOrBuilder.java index 010078576d3b..1f5f17ef0fe1 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DeployModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Detection.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Detection.java index 8e6f0dad382f..8bf40b3a76af 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Detection.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Detection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Document.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Document.java index 278b496e973f..8d6050371c81 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Document.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Document.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensions.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensions.java index 04f463723819..ab31a3bdc0cd 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensions.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensionsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensionsOrBuilder.java index 7f1a89e5230f..ba60dbdc5e8d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensionsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentDimensionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfig.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfig.java index e1440d917594..49bbba56fb6f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfigOrBuilder.java index c23526b9058e..a5137348c39d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentInputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentOrBuilder.java index e28e03e369e8..49a7544955bc 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/DocumentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayload.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayload.java index c42d9e0f5e3f..fc2362dbd1b1 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayload.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayloadOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayloadOrBuilder.java index e6a1d8bbda9c..d7284ca52c1f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayloadOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExamplePayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadata.java index 305e1a996380..ac167847371e 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadataOrBuilder.java index 4c46b56a26f4..f0ee7f118324 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequest.java index c57366ccf53d..cb5e18137b06 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequestOrBuilder.java index 96318e00d402..2e0091711439 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadata.java index 7e6bef38f9dc..b24243d6d79b 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadataOrBuilder.java index 63fff23811eb..f2d9db6d842d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequest.java index dd385dec3d9e..eceeebb4eaaf 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequestOrBuilder.java index c201ed5a77a4..e541beb01cd3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestination.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestination.java index 824f1c3c79e8..605f3e751598 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestination.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestinationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestinationOrBuilder.java index 2a0e0a21d222..d0a1e8f63f8c 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestinationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSource.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSource.java index cc4d5d671027..28d3833084aa 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSource.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSourceOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSourceOrBuilder.java index f4944ff84f41..17dcbc3937c1 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSourceOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Geometry.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Geometry.java index b13b0b3d4637..d3d5ac9dc31a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Geometry.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Geometry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequest.java index 337aaf4b0dbf..57195a2a1c32 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequestOrBuilder.java index 1d7463d4a42a..cf2c3ecf5616 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetAnnotationSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequest.java index 57e5872610a7..4bea7306f2af 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequestOrBuilder.java index c5b2f2304690..71e6d06c6532 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequest.java index 3884c41261b9..36ed94bb1aeb 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequestOrBuilder.java index 189a693559d7..0cdeb5c540ee 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelEvaluationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequest.java index 0609474c31c8..8a46359cd586 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequestOrBuilder.java index 2307d8728222..6452b20da8e3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/GetModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Image.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Image.java index c2ada58735db..227ed34a2ba4 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Image.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Image.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadata.java index daa71b30cc2c..d0b11fc397d5 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadataOrBuilder.java index f2e3a7779f5b..df9e8c4d69e3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadata.java index 2b0d3c460d20..67142ba09b76 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadataOrBuilder.java index 1bbc023b3cf7..afd7849b4df7 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelDeploymentMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadata.java index c69e8055037f..3782e7ee5498 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadataOrBuilder.java index f919931568a7..23eb7996f3c3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageClassificationModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotation.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotation.java index 8badcec8730a..58c7060f5f2f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotation.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotationOrBuilder.java index e8acafb50123..509d4241b87d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadata.java index cc0c0e8fae51..8cd6aa940de8 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadataOrBuilder.java index ced7ee8364b6..be0a43f27fe2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetrics.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetrics.java index bcdc0a2d92c0..ee0978014be3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetrics.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetricsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetricsOrBuilder.java index 3dd174751d89..910ab3c9a93f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetricsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionEvaluationMetricsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadata.java index 3e6d1a5d6afc..7414f4296c2b 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java index 58931e61fb65..dd4338d0504d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadata.java index 6e0a64a0d8ed..a312cf0caf35 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadataOrBuilder.java index c3cd8a421de2..82fd239c1759 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageObjectDetectionModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageOrBuilder.java index daebaca5c3be..01a81f3c24cd 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageProto.java index 29b3bd89eed9..bf2d6e3cc33f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadata.java index fb9085d6308c..865c3307f207 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadataOrBuilder.java index 0278010dd333..b1f56431484b 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequest.java index 9c28cd44053f..3d35a8dd618f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequestOrBuilder.java index 48eff01aedba..860635f050bb 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfig.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfig.java index 5b7e6102dc87..c7fe8b716d0a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfigOrBuilder.java index cb936f51e11c..b225e690b0f0 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/InputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Io.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Io.java index 828c0a1bb079..e8e78eb768fa 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Io.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Io.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequest.java index 05cc5ee556af..e37dd439022f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequestOrBuilder.java index 9a5cc87b180d..1e202197c9e0 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponse.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponse.java index bc3c20929661..b0b4044e8cfb 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponseOrBuilder.java index 49842a330693..fc232f2c25ad 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListDatasetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequest.java index 9fc2fc29d99b..9da9444f8bd8 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequestOrBuilder.java index 171b1e8c3e12..a2a293996319 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponse.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponse.java index c59ff065c92b..6968d0267851 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponseOrBuilder.java index 01a552e6d3eb..2dd2bd164277 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelEvaluationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequest.java index 75cf4a37a498..ac2456844529 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequestOrBuilder.java index 287ae017e33b..e8c87b04f4e7 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponse.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponse.java index e08b22fe7d56..677dfe8b90f2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponseOrBuilder.java index 6e8d517bec3e..568602229631 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ListModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/LocationName.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/LocationName.java index 6e89249e0752..b68a9ad1d013 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/LocationName.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Model.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Model.java index 58110759ae77..7aec3422db42 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Model.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Model.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluation.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluation.java index b6748e79bff3..be87dfd669a5 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluation.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationName.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationName.java index 6d35c53bfac5..74bb1d5d9c64 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationName.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOrBuilder.java index 730bbe901147..c1851624abf2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOuterClass.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOuterClass.java index 201279422726..8358e50beb07 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelEvaluationOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfig.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfig.java index b14a3f33105c..1f3c6480df26 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfigOrBuilder.java index 8ff738cef4cf..9c0f7bf33231 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelExportOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelName.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelName.java index 077ee3f4c47e..bbba34e25085 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelName.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOrBuilder.java index b4526fe939c8..d6241e194912 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOuterClass.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOuterClass.java index db42b768364c..d5de06cc7c25 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ModelOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertex.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertex.java index 7bca8b154b88..99d693517840 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertex.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertexOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertexOrBuilder.java index f26f1995ee1f..7270375f6ca5 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertexOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/NormalizedVertexOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadata.java index 7d8bb4d807d7..cbed97d52a04 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadataOrBuilder.java index 4f333c597ef8..a306a4abd2ed 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Operations.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Operations.java index 1225e2315a9f..70649ce74276 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Operations.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Operations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfig.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfig.java index d81290f5d175..8e655efbcc91 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfigOrBuilder.java index 32c09e6435fb..689b0623f64d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/OutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequest.java index 46f4dd7a341d..5fcac2426bbe 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequestOrBuilder.java index d8343a450718..9bd528b643bd 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponse.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponse.java index fb9e8fcd338f..b7dd36dc27dd 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponse.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponseOrBuilder.java index 8b503bd10146..5635e5b90154 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceProto.java index ee10148d2b3c..4b382c59eaaa 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/PredictionServiceProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadata.java index c722fca95a0f..3ede514fd27f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadataOrBuilder.java index 9f9627386768..075684fd8a7d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadata.java index cae6bad950cc..5892e0642bc5 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadataOrBuilder.java index 308966e16c52..a575548a8104 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextClassificationModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtraction.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtraction.java index a0a7505224c3..18a40a100630 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtraction.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtraction.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotation.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotation.java index a0b61b0c8915..134f8eb47e69 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotation.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotationOrBuilder.java index ee059e9d5ec1..549117a28cb0 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadata.java index 9232607f96d2..0436dc7c1216 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadataOrBuilder.java index 399d1f53fa65..7855b9dc106d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetrics.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetrics.java index 9328394755bd..e700e45a9554 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetrics.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetricsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetricsOrBuilder.java index 2767a5bbf491..0f63ab3ec5a7 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetricsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionEvaluationMetricsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadata.java index 167e84254365..9d2e459d8c1a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadataOrBuilder.java index e999cd229fe3..f4538fc3b9cd 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextExtractionModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextProto.java index 82d423df1034..2449cc5f9458 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegment.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegment.java index a176b33c44c1..83de5b8fa36a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegment.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegment.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentOrBuilder.java index a92833727ed1..5e64954a551e 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentProto.java index d83cb044bb1e..23ca46c7c28e 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSegmentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotation.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotation.java index e3b01256c2f4..92cb46d9d5b3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotation.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotationOrBuilder.java index c86094cb00c8..d5573bd16f2e 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadata.java index c35163ee1ea8..2bdb1144bab0 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadataOrBuilder.java index f12f4cbd5584..353b704ba84d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetrics.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetrics.java index 82829334ec7f..5500222d4246 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetrics.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetricsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetricsOrBuilder.java index 6837e9c1b5b2..91d79abd3a87 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetricsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentEvaluationMetricsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadata.java index 94aa239fe0fe..7851977ab88a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadataOrBuilder.java index 9c384420b0aa..1e8307070aa9 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentProto.java index 6c1ce916fadc..a2605486fb30 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSentimentProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippet.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippet.java index f83d320d922c..eac3304e63b2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippet.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippet.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippetOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippetOrBuilder.java index 71bd2624202e..a867fa1aca6a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippetOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TextSnippetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotation.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotation.java index 5fcafc0605d5..2f5e01b2b5cb 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotation.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotationOrBuilder.java index 5e5d33139991..c57442f146bf 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadata.java index ea4dff74d392..88c33810dbf2 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadataOrBuilder.java index 662346536903..4fab217b5f69 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetrics.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetrics.java index c6a17aa909b1..a727adf32bab 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetrics.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetricsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetricsOrBuilder.java index 9cbf6d0eb41c..86b6a828ece6 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetricsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationEvaluationMetricsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadata.java index 26fc56e63407..89f186c331e3 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadataOrBuilder.java index 3ec4050323ae..ff80432bf552 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationProto.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationProto.java index c39048cbf6d1..a014d4f70d5a 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationProto.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/TranslationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadata.java index f386f902a83e..cfaf7ac81676 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadataOrBuilder.java index b03e8bfaed19..1c2d7ccf4f6f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequest.java index c9cc12cb500c..e8068c9a5c4f 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequestOrBuilder.java index 4e6b7522c662..70e822a9fe8d 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UndeployModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequest.java index b587d7b6299b..e3f632769c04 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequestOrBuilder.java index 30d51cf8f0b7..567fb536bd63 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequest.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequest.java index 3e5a5f5129b1..2a0539d9e378 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequestOrBuilder.java index 10e1cb6414ca..a9e65622e7b9 100644 --- a/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/UpdateModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/pom.xml b/java-automl/proto-google-cloud-automl-v1beta1/pom.xml index a585ffe1fe11..476f3a9c5e2c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/pom.xml +++ b/java-automl/proto-google-cloud-automl-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-automl-v1beta1 - 0.168.0-SNAPSHOT + 0.169.0 proto-google-cloud-automl-v1beta1 PROTO library for proto-google-cloud-automl-v1beta1 com.google.cloud google-cloud-automl-parent - 2.81.0-SNAPSHOT + 2.82.0 diff --git a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayload.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayload.java index e4a16ba3dce9..d8f90a118b86 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayload.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOrBuilder.java index 4fafaef23e63..3d768d7651e3 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOuterClass.java index 8a45d9a8ac38..bb0089e95e00 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationPayloadOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpec.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpec.java index 7018c44d52ad..6a6f7f49e19b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpec.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecName.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecName.java index b248a201a500..508a98d087da 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecName.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOrBuilder.java index 3408df2a699a..1f9b2eec4700 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOuterClass.java index 86eba50601fd..8f9e7648cd56 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStats.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStats.java index 43cbb904dc40..3a1ffe62543d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStats.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStatsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStatsOrBuilder.java index b94e2474c5bd..f38d64f4797a 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStatsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ArrayStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlProto.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlProto.java index 2612cca3ffd2..3b7ca6b3c9ba 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlProto.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AutoMlProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfig.java index aeef18dd0b81..8af7ee0f500b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfigOrBuilder.java index b20e0d1b4cb6..51d78a87c2ec 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictInputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadata.java index 4684ccedf738..1cca12438b78 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadataOrBuilder.java index 3cf4ee5a8d72..91d41d2d0816 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfig.java index 70341de201c3..b006049d8883 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfigOrBuilder.java index 455954d165cc..d39b6113d15e 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequest.java index 7701b56d0661..c56b4341a7f1 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequestOrBuilder.java index d5796bcf44dc..427a405a71fd 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResult.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResult.java index 4a1e9420ec2c..bff387a3a6f9 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResult.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResultOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResultOrBuilder.java index 810d33011432..e1a5a78db3ea 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResultOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictResultOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestination.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestination.java index c4db5fc274ce..c98f65fecffe 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestination.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestinationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestinationOrBuilder.java index de4bd96a1ed2..253331524079 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestinationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQueryDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySource.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySource.java index c67bb0a0f552..ee0b0d09e84b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySource.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySourceOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySourceOrBuilder.java index 33aa08f111c6..b7f2b679a6ae 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySourceOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BigQuerySourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntry.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntry.java index 97dae4c394fe..252e32898c50 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntry.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntryOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntryOrBuilder.java index cd0ee5c8333a..ca696288a74c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntryOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingBoxMetricsEntryOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPoly.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPoly.java index 150ab3bc4a63..8ede53c94eb3 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPoly.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPoly.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPolyOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPolyOrBuilder.java index 80488be84ade..7596054601b5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPolyOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BoundingPolyOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStats.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStats.java index d7d9c71738d2..5bd2250a3b4b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStats.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStatsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStatsOrBuilder.java index 6fcd85946997..04e51b247ae5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStatsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CategoryStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ClassificationProto.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ClassificationProto.java index 51e99dd67eb0..90adc633bcd5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ClassificationProto.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ClassificationProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpec.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpec.java index aea95450cd9c..fa86cd79dc56 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpec.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpec.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecName.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecName.java index 3d90fab4f9c2..3cb55783c158 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecName.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOrBuilder.java index 3ade715a633f..b456ee086421 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOuterClass.java index 9a6293809dc2..a0bf69a2edac 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ColumnSpecOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStats.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStats.java index 75889e046cc2..d268d5ed4d59 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStats.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStatsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStatsOrBuilder.java index 6ba9c911420e..a7361b70b063 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStatsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CorrelationStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequest.java index c62808a9be17..bf1604a60bd5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequestOrBuilder.java index 9feed57e2260..0968ff220298 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadata.java index 745bfadba85f..9b0f74477735 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadataOrBuilder.java index 990f021fbded..85148c435085 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequest.java index 01bf60bceb95..8db137c0914d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequestOrBuilder.java index 99ba3e4d00b9..3777b3e607f7 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/CreateModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataItems.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataItems.java index a86f58376621..f48204c0eb1b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataItems.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataItems.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStats.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStats.java index 109aa8e8cb5c..5770388f07ed 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStats.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOrBuilder.java index 6d6269a8d901..b3125cd4af70 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOuterClass.java index e716bd4399a5..3ae57fbe6f76 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataStatsOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataType.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataType.java index 2928821f0c05..b2f48981713e 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataType.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataType.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypeOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypeOrBuilder.java index e5ecfe286945..7bfa948f8f1a 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypeOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypes.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypes.java index 5b2992d0779a..700b96d1da3c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypes.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DataTypes.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Dataset.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Dataset.java index e85f42a272d9..1f6f79a622ad 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Dataset.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Dataset.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetName.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetName.java index 72e9719d0157..6da35d0022e5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetName.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOrBuilder.java index 2a1d3e55c011..6963fa5468ef 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOuterClass.java index 7159654416a7..7f470f462fae 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DatasetOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequest.java index f5d467cc447f..57fe0b3c925d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequestOrBuilder.java index d7684a43183e..55420d5901b6 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequest.java index adb571a8834f..7604cc7e02bc 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequestOrBuilder.java index 4898e101b1f6..b65f74dc7c93 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadata.java index b995654c538b..e5efb6c4920f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadataOrBuilder.java index c205a1fdf1c2..f2f4b7a4a498 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeleteOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadata.java index 52652cb6bea9..79eecc1307ad 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadataOrBuilder.java index f34b145eda4e..a57f21fd2bf3 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequest.java index f20cf047de57..d31f85e39447 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequestOrBuilder.java index c22a61f983fd..969c82f14e9c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DeployModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Detection.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Detection.java index d36ce0e81482..38450f62e56c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Detection.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Detection.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Document.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Document.java index f865341f327f..05d64f3ffb53 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Document.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Document.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensions.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensions.java index f7f49c092d8f..1549e4a0d41f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensions.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensions.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensionsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensionsOrBuilder.java index 084391427ef1..358ad3a6f808 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensionsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentDimensionsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfig.java index 702b80c96655..dbaf9dfde7c8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfigOrBuilder.java index 1902a9a2b1a3..91e962fc4ccb 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentInputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentOrBuilder.java index 33e6b014b805..e870dca7e89b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DocumentOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRange.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRange.java index 632e07f4b4c0..b0219e780d14 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRange.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRange.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRangeOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRangeOrBuilder.java index 67976c79fa70..99b7e16ed750 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRangeOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/DoubleRangeOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayload.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayload.java index f0430ea3402b..a7d99ec0d808 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayload.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayload.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayloadOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayloadOrBuilder.java index 66314ce30a01..1699383852cd 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayloadOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExamplePayloadOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadata.java index dc2390525821..8e998c81ba10 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadataOrBuilder.java index 8d4bf3f8d8ed..e244f1cd1587 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequest.java index 8a002a22c09a..1dba4e114540 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequestOrBuilder.java index c097edec1985..377e7734ddc2 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadata.java index dfb77e93abf4..f0c480a045fe 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadataOrBuilder.java index cb9b13f9370b..50d9092e2ab0 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfig.java index 9daf606d309d..435236d81abc 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfigOrBuilder.java index 59ccefd84413..44ba825381b1 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequest.java index b1ca64461f26..5c69dd1479a3 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequestOrBuilder.java index 259e7a2cf805..09c4c90f4aae 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportEvaluatedExamplesRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadata.java index 70c34e4d9ae2..03d4cdf84b75 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadataOrBuilder.java index 266bfb4024e8..2c0d0c7bbbd2 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequest.java index 08ee241e4d6a..b6c18964836b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequestOrBuilder.java index 4ae81baeef82..fbc44f7460f1 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ExportModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64Stats.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64Stats.java index 775701f260b5..8e1657036a6c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64Stats.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64Stats.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64StatsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64StatsOrBuilder.java index 07c2e486090b..5b4b7c887b1c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64StatsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Float64StatsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestination.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestination.java index 93cc133fc836..3fe57542f861 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestination.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestinationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestinationOrBuilder.java index 0614a485ece4..300f084adcf8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestinationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcrDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestination.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestination.java index b7ffa627d5f1..7aec6a67a108 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestination.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestination.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestinationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestinationOrBuilder.java index 97b3578c73a7..b2be2055ae8a 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestinationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsDestinationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSource.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSource.java index ade28f5dc8a9..fc3d815f791b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSource.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSourceOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSourceOrBuilder.java index 52d65f0e278b..8fd0af0eeb41 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSourceOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GcsSourceOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Geometry.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Geometry.java index 016e2bdb6d21..aca11d2af862 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Geometry.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Geometry.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequest.java index 3e03b900dc5e..0039d792f66f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequestOrBuilder.java index 89add5719cd1..013e1e87db74 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetAnnotationSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequest.java index ec55da00706d..86bc816064bb 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequestOrBuilder.java index 765e48e29fa5..a405c0d85bd5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetColumnSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequest.java index 895cf7b2125e..d355a11d83db 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequestOrBuilder.java index a3506d3d7336..87d1dc366715 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetDatasetRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequest.java index cdedefe6844d..039e24a7f197 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequestOrBuilder.java index e66eeeaabc18..8d92bfb2e1f7 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelEvaluationRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequest.java index 854ad2b3a803..bc4da38b98f8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequestOrBuilder.java index b81073dbecc5..65e0e5cd3a48 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetModelRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequest.java index 593808528732..0c88677d52f0 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequestOrBuilder.java index 80057a124ded..04c44eaeae18 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/GetTableSpecRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Image.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Image.java index 4e13d1e28521..03a7ecacb496 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Image.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Image.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadata.java index a959b4586b67..f3b67d508774 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadataOrBuilder.java index 48838068e8ba..e0097fdef71d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadata.java index cbf1a28e4b82..47fc01627478 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadataOrBuilder.java index d20891ff10bc..acc71f8f75f1 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelDeploymentMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadata.java index a5178e1cbfbc..1f269d4a9516 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadataOrBuilder.java index 7c2379c459dd..61a3387f838f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageClassificationModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotation.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotation.java index eff70cbede36..cca68bf38e98 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotation.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotationOrBuilder.java index 44a224af7789..755c29a16cb4 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionAnnotationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadata.java index 7737451b7d8e..96debe8561f6 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadataOrBuilder.java index 782c565a21fd..07d03bed3db8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionDatasetMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetrics.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetrics.java index fbe3fbb26d4f..a464169fe549 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetrics.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetricsOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetricsOrBuilder.java index 6e70a8717efa..3f329cb97870 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetricsOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionEvaluationMetricsOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadata.java index 6283355318de..9249c20951c9 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java index 835a002ad5b5..600f4a3f05e2 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelDeploymentMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadata.java index 19ca649b82f5..52f400e30f2a 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadataOrBuilder.java index f824e81874ca..f8948990e559 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageObjectDetectionModelMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageOrBuilder.java index c66fea3d698e..53d4f6127ee8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageProto.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageProto.java index 87bf0343bc97..95622d90a264 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageProto.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImageProto.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadata.java index 793e6d55d412..cae4e621c53c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadataOrBuilder.java index 4a49d3816413..d186f28a78e8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataOperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequest.java index 52c5aa3d37a0..9db92307f9b4 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequestOrBuilder.java index e5d3ba82e0b2..a602b6b0069f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ImportDataRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfig.java index f89a727fb3f2..cb3901cf81d0 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfigOrBuilder.java index 129dbe0dc8c0..e6ec920ed778 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/InputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Io.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Io.java index 122f0f9aa74e..a79da3fe3c1f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Io.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Io.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequest.java index 013b5bfb9cd7..e421b868132b 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequestOrBuilder.java index 73c75b849c1a..527f2b78e5cd 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponse.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponse.java index 6be62503a057..1708f8a6a2bb 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponseOrBuilder.java index 363012b8e590..94f4c63c64b5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListColumnSpecsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequest.java index f75da454c90a..ab368b566881 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequestOrBuilder.java index 77674cc00eeb..1438c4dfc444 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponse.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponse.java index f0dd6a57898d..7c98dedf651c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponseOrBuilder.java index 9a37ebea3c62..9b4d4fc39368 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListDatasetsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequest.java index 3f2d0fd82add..b2ac7d44ba80 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequestOrBuilder.java index cf084ccc5dc8..dc47f6cf21eb 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponse.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponse.java index a43ed02da4f5..bb409f5de36c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponseOrBuilder.java index 5709bbbd9451..b5c813c6cd84 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelEvaluationsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequest.java index 10699f5a3c28..5bc8085b134d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequestOrBuilder.java index 3af59374738f..c4c53a6e56e5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponse.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponse.java index 356875cd8dc4..171ab1161ea9 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponseOrBuilder.java index 1fbbfdc28319..73bb7e00cd5d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListModelsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequest.java index 89eb31c6a2fb..c73bf1927826 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequestOrBuilder.java index 1eaf8685e4d7..f0116f87e9a9 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponse.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponse.java index ba1ed203d11c..925e0eb604eb 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponse.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponseOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponseOrBuilder.java index cafa6fc37bba..9e3926793346 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponseOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ListTableSpecsResponseOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/LocationName.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/LocationName.java index e652f1c73673..25445d2b6cdf 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/LocationName.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/LocationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Model.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Model.java index 313bf77b3428..3d7077719d4f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Model.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Model.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluation.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluation.java index 329cda893c79..f32e62f4962d 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluation.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluation.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationName.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationName.java index 87a3481b6393..d6d98a92faf7 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationName.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOrBuilder.java index a9436b6d76f0..68bedccad40c 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOuterClass.java index c58290d47d09..5a5196a6909f 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelEvaluationOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfig.java index 112455327e31..8be49ac83a97 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfigOrBuilder.java index b15b7143c08b..186530eff5b5 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelExportOutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelName.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelName.java index 3f92c3fcbc29..3aa4046eebf2 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelName.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOrBuilder.java index 9cb7f6cca0bb..f930826d2d47 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOuterClass.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOuterClass.java index 8f83856f254d..517970dae47a 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOuterClass.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ModelOuterClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertex.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertex.java index 33f92b56a26c..6d7f123b5ef7 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertex.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertex.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertexOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertexOrBuilder.java index 1d6efd0b8a42..78271f8a80f1 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertexOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/NormalizedVertexOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadata.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadata.java index f3004b3cdc04..783dc507d3a1 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadata.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadataOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadataOrBuilder.java index 73400fdf8066..0d8a985dedb4 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadataOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OperationMetadataOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Operations.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Operations.java index 40d4a04876f8..63c374ee2c2a 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Operations.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/Operations.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfig.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfig.java index 2185d21119e3..ce44a75ee484 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfig.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfigOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfigOrBuilder.java index b6d36880eb9e..f9cd01d1c109 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfigOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/OutputConfigOrBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequest.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequest.java index 3f44a3291bc6..a7704696407e 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequest.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * 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/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequestOrBuilder.java b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequestOrBuilder.java index d6bf533fda17..42399e256dd8 100644 --- a/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequestOrBuilder.java +++ b/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/PredictRequestOrBuilder.java @@ -1,5 +1,5 @@ /* - * Cop{"code":"deadline_exceeded","msg":"operation timed out"}